diff --git a/backend/Directory.Packages.props b/backend/Directory.Packages.props index 2666469df4..1c547f45f4 100644 --- a/backend/Directory.Packages.props +++ b/backend/Directory.Packages.props @@ -123,6 +123,7 @@ + diff --git a/backend/FwLite/FwLiteProjectSync.Tests/.gitignore b/backend/FwLite/FwLiteProjectSync.Tests/.gitignore new file mode 100644 index 0000000000..f97a4d5fe8 --- /dev/null +++ b/backend/FwLite/FwLiteProjectSync.Tests/.gitignore @@ -0,0 +1 @@ +!sena-3-live.verified.sqlite diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Fixtures/Sena3SyncFixture.cs b/backend/FwLite/FwLiteProjectSync.Tests/Fixtures/Sena3SyncFixture.cs index 14d10b15d5..2a93682d8c 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/Fixtures/Sena3SyncFixture.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/Fixtures/Sena3SyncFixture.cs @@ -34,7 +34,7 @@ public async Task InitializeAsync() await DownloadSena3(); } - public async Task<(CrdtMiniLcmApi CrdtApi, FwDataMiniLcmApi FwDataApi, IServiceProvider services, IDisposable cleanup)> SetupProjects() + public async Task SetupProjects() { var sena3MasterCopy = await DownloadSena3(); @@ -49,15 +49,14 @@ public async Task InitializeAsync() .Value .ProjectsFolder; var fwDataProject = new FwDataProject(projectName, projectsFolder); - var fwDataProjectPath = Path.Combine(fwDataProject.ProjectsPath, fwDataProject.Name); - DirectoryHelper.Copy(sena3MasterCopy, fwDataProjectPath); - File.Move(Path.Combine(fwDataProjectPath, "sena-3.fwdata"), fwDataProject.FilePath); + DirectoryHelper.Copy(sena3MasterCopy, fwDataProject.ProjectFolder); + File.Move(Path.Combine(fwDataProject.ProjectFolder, "sena-3.fwdata"), fwDataProject.FilePath); var fwDataMiniLcmApi = services.GetRequiredService().GetFwDataMiniLcmApi(fwDataProject, false); var crdtProject = await services.GetRequiredService() .CreateProject(new(projectName, projectName, FwProjectId: fwDataMiniLcmApi.ProjectId, SeedNewProjectData: false)); var crdtMiniLcmApi = (CrdtMiniLcmApi)await services.OpenCrdtProject(crdtProject); - return (crdtMiniLcmApi, fwDataMiniLcmApi, services, cleanup); + return new TestProject(crdtMiniLcmApi, fwDataMiniLcmApi, crdtProject, fwDataProject, services, cleanup); } public Task DisposeAsync() diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Fixtures/TestProject.cs b/backend/FwLite/FwLiteProjectSync.Tests/Fixtures/TestProject.cs new file mode 100644 index 0000000000..823dd949a2 --- /dev/null +++ b/backend/FwLite/FwLiteProjectSync.Tests/Fixtures/TestProject.cs @@ -0,0 +1,13 @@ +using FwDataMiniLcmBridge; +using FwDataMiniLcmBridge.Api; +using LcmCrdt; + +namespace FwLiteProjectSync.Tests.Fixtures; + +public record TestProject( + CrdtMiniLcmApi CrdtApi, FwDataMiniLcmApi FwDataApi, + CrdtProject CrdtProject, FwDataProject FwDataProject, + IServiceProvider Services, IDisposable _cleanup) : IDisposable +{ + public void Dispose() { _cleanup.Dispose(); } +} diff --git a/backend/FwLite/FwLiteProjectSync.Tests/FwLiteProjectSync.Tests.csproj b/backend/FwLite/FwLiteProjectSync.Tests/FwLiteProjectSync.Tests.csproj index efc9511b42..d234fd79a9 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/FwLiteProjectSync.Tests.csproj +++ b/backend/FwLite/FwLiteProjectSync.Tests/FwLiteProjectSync.Tests.csproj @@ -35,6 +35,7 @@ + @@ -43,4 +44,4 @@ - \ No newline at end of file + diff --git a/backend/FwLite/FwLiteProjectSync.Tests/ProjectSnapshotSerializationTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/ProjectSnapshotSerializationTests.cs new file mode 100644 index 0000000000..9c2964abef --- /dev/null +++ b/backend/FwLite/FwLiteProjectSync.Tests/ProjectSnapshotSerializationTests.cs @@ -0,0 +1,92 @@ +using LcmCrdt.Tests.Data; +using FwDataMiniLcmBridge; +using System.Runtime.CompilerServices; +using System.Text.Json; +using System.Text.Json.Nodes; + +namespace FwLiteProjectSync.Tests; + +public class ProjectSnapshotSerializationTests : BaseSerializationTest +{ + public static IEnumerable GetSena3SnapshotNames() + { + return GetSena3SnapshotPaths() + .Select(file => new object[] { Path.GetFileName(file) }); + } + + private static IEnumerable GetSena3SnapshotPaths() + { + var snapshotsDir = RelativePath("Snapshots"); + return Directory.GetFiles(snapshotsDir, "sena-3_snapshot.*.verified.txt"); + } + + [Theory] + [MemberData(nameof(GetSena3SnapshotNames))] + public async Task AssertSena3Snapshots(string sourceSnapshotName) + { + // arrange + var fwDataProject = new FwDataProject( + nameof(AssertSena3Snapshots), + Path.Combine(".", nameof(ProjectSnapshotSerializationTests))); + + var snapshotPath = CrdtFwdataProjectSyncService.SnapshotPath(fwDataProject); + File.Copy(RelativePath($"Snapshots\\{sourceSnapshotName}"), snapshotPath, overwrite: true); + + // act - read the current snapshot + var snapshot = await CrdtFwdataProjectSyncService.GetProjectSnapshot(fwDataProject) + ?? throw new InvalidOperationException("Failed to load verified snapshot"); + + // assert - whatever about the snapshot (i.e. ensure deserialization does what we think) + snapshot.Entries.Single(e => e.Id == Guid.Parse("cd045907-e8fc-46a3-8f8d-f71bd956275f")) + .Senses.Single().ExampleSentences.Single().Translation.Should().NotBeEmpty(); + } + + [Fact] + public async Task LatestSena3SnapshotRoundTrips() + { + // arrange + var latestSnapshotPath = GetSena3SnapshotPaths() + .OrderDescending() + .First(); + + // act + var roundTrippedJson = await GetRoundTrippedIndentedSnapshot(latestSnapshotPath); + + // assert + var verifyName = Path.GetFileName(latestSnapshotPath).Replace(".verified.txt", ""); + await Verify(roundTrippedJson) + .UseStrictJson() + .UseDirectory("Snapshots") + .UseFileName(verifyName); + } + + private static string RelativePath(string name, [CallerFilePath] string sourceFile = "") + { + return Path.Combine( + Path.GetDirectoryName(sourceFile) ?? + throw new InvalidOperationException("Could not get directory of source file"), + name); + } + + private async Task GetRoundTrippedIndentedSnapshot(string sourceSnapshotPath, [CallerMemberName] string fwDataProjectName = "") + { + var fwDataProject = new FwDataProject( + fwDataProjectName, + Path.Combine(".", nameof(ProjectSnapshotSerializationTests))); + + var snapshotPath = CrdtFwdataProjectSyncService.SnapshotPath(fwDataProject); + Directory.CreateDirectory(Path.GetDirectoryName(snapshotPath) ?? throw new InvalidOperationException("Could not get directory of snapshot path")); + File.Copy(sourceSnapshotPath, snapshotPath, overwrite: true); + + var snapshot = await CrdtFwdataProjectSyncService.GetProjectSnapshot(fwDataProject) + ?? throw new InvalidOperationException("Failed to load verified snapshot"); + await CrdtFwdataProjectSyncService.SaveProjectSnapshot(fwDataProject, snapshot); + + using var stream = File.OpenRead(snapshotPath); + var node = JsonNode.Parse(stream, null, new() + { + AllowTrailingCommas = true, + }) ?? throw new InvalidOperationException("Could not parse json node"); + return node.ToJsonString(new JsonSerializerOptions { WriteIndented = true }); + } +} diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Sena3SyncTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/Sena3SyncTests.cs index 18c4f4470a..99c9623282 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/Sena3SyncTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/Sena3SyncTests.cs @@ -1,13 +1,14 @@ -using FluentAssertions.Equivalency; +using System.Runtime.CompilerServices; +using System.Text.Json; using FluentAssertions.Execution; using FwDataMiniLcmBridge.Api; using FwLiteProjectSync.Tests.Fixtures; using LcmCrdt; +using Microsoft.Data.Sqlite; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using MiniLcm; using MiniLcm.Models; -using SystemTextJsonPatch; namespace FwLiteProjectSync.Tests; @@ -18,7 +19,7 @@ public class Sena3SyncTests : IClassFixture, IAsyncLifetime private CrdtFwdataProjectSyncService _syncService = null!; private CrdtMiniLcmApi _crdtApi = null!; private FwDataMiniLcmApi _fwDataApi = null!; - private IDisposable? _cleanup; + private TestProject _project = null!; private MiniLcmImport _miniLcmImport = null!; @@ -29,7 +30,10 @@ public Sena3SyncTests(Sena3Fixture fixture) public async Task InitializeAsync() { - (_crdtApi, _fwDataApi, var services, _cleanup) = await _fixture.SetupProjects(); + _project = await _fixture.SetupProjects(); + _crdtApi = _project.CrdtApi; + _fwDataApi = _project.FwDataApi; + var services = _project.Services; _syncService = services.GetRequiredService(); _miniLcmImport = services.GetRequiredService(); _fwDataApi.EntryCount.Should().BeGreaterThan(100, "project should be loaded and have entries"); @@ -37,7 +41,7 @@ public async Task InitializeAsync() public Task DisposeAsync() { - _cleanup?.Dispose(); + _project.Dispose(); return Task.CompletedTask; } @@ -73,7 +77,7 @@ private async Task BypassImport(bool wsImported = false) { if (ws.MaybeId is null) ws.Id = Guid.NewGuid(); } - await _syncService.SaveProjectSnapshot(_fwDataApi.Project, snapshot); + await CrdtFwdataProjectSyncService.SaveProjectSnapshot(_fwDataApi.Project, snapshot); } //this lets us query entries when there is no writing system @@ -183,4 +187,106 @@ public async Task SecondSena3SyncDoesNothing() secondSync.CrdtChanges.Should().Be(0); secondSync.FwdataChanges.Should().Be(0); } + + /// + /// This test maintains a "live" sena-3 crdt db and fw-headless snapshot + /// that walks through model changes and their sync result as they are made to the project. + /// By keeping both the db and snapshot in the repo we can observe and verify + /// the effects of any data changes over time (whether from serialization, new fields etc.) + /// + [Fact] + [Trait("Category", "Integration")] + public async Task LiveSena3Sync() + { + // arrange - put "live" crdt db and fw-headless snapshot in place + // we just ignore the crdt db that was created by the fixture and + // put in a copy of the "live" db in the same directory + var liveCrdtProject = new CrdtProject("sena-3-live", + Path.Join(Path.GetDirectoryName(_project.CrdtProject.DbPath), "sena-3-live.sqlite")); + File.Copy( + RelativePath("sena-3-live.verified.sqlite"), + liveCrdtProject.DbPath, + overwrite: true); + File.Copy( + RelativePath("sena-3-live_snapshot.verified.txt"), + CrdtFwdataProjectSyncService.SnapshotPath(_project.FwDataProject), + overwrite: true); + await using var liveScope = _project.Services.CreateAsyncScope(); + var liveCrdtApi = await liveScope.ServiceProvider.OpenCrdtProject(liveCrdtProject); + + // The default font used for the Analysis writing systems in our Sena 3 project differs when opened on + // Windows versus Linux. So, we standardize them to Charis SIL (which is the default on Linux). + // Otherwise, the snapshot verification isn't consistent. + await PatchAnalysisWsFontsWithCharisSIL(_fwDataApi); + + // act + var result = await _syncService.Sync(liveCrdtApi, _fwDataApi); + + // assert + var fwHeadlessSnapshot = await CrdtFwdataProjectSyncService.GetProjectSnapshot(_project.FwDataProject); + Exception? verifyException = null; + var throwAnyVerifyException = () => { if (verifyException is not null) throw verifyException; }; + try + { + await Verify(JsonSerializer.Serialize(fwHeadlessSnapshot, new JsonSerializerOptions + { + WriteIndented = true, + })) + .UseStrictJson() + .UseFileName("sena-3-live_snapshot"); + } + catch (Exception ex) + { + verifyException = ex; + } + + if (result.CrdtChanges > 0) + { + // copy the updated "live" crdt db to a file for inspection, + // so the developer doesn't need to go find it and can decide if the changes are acceptable. + var dbContext = await liveScope.ServiceProvider.GetRequiredService>().CreateDbContextAsync(); + BackupDatabase(dbContext, RelativePath("sena-3-live.received.sqlite")); + } + + // updating the db and snapshot should always be done atomically + using (new AssertionScope()) + { + result.CrdtChanges.Should().Be(0, "otherwise the live crdt db has changed and needs developer approval"); + throwAnyVerifyException.Should().NotThrow("otherwise the fw-headless snapshot has changed and needs developer approval"); + } + + result.FwdataChanges.Should().Be(0); + } + + private async Task PatchAnalysisWsFontsWithCharisSIL(FwDataMiniLcmApi fwDataApi) + { + var writingSystems = await fwDataApi.GetWritingSystems(); + var analysisWs = writingSystems.Analysis; + analysisWs.Length.Should().Be(2); + await fwDataApi.UpdateWritingSystem(analysisWs[0].WsId, WritingSystemType.Analysis, + new UpdateObjectInput().Set(ws => ws.Font, "Charis SIL")); + await fwDataApi.UpdateWritingSystem(analysisWs[1].WsId, WritingSystemType.Analysis, + new UpdateObjectInput().Set(ws => ws.Font, "Charis SIL")); + } + + private static string RelativePath(string name, [CallerFilePath] string sourceFile = "") + { + return Path.Combine( + Path.GetDirectoryName(sourceFile) ?? + throw new InvalidOperationException("Could not get directory of source file"), + name); + } + + private static void BackupDatabase(DbContext sourceContext, string destinationPath) + { + var source = (SqliteConnection)sourceContext.Database.GetDbConnection(); + if (source.State != System.Data.ConnectionState.Open) + source.Open(); + + using var destination = new SqliteConnection($"Data Source={destinationPath}"); + destination.Open(); + + source.BackupDatabase(destination); + source.Close(); + } } diff --git a/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2025-09-30.verified.txt b/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2025-09-30.verified.txt new file mode 100644 index 0000000000..63d558c649 --- /dev/null +++ b/backend/FwLite/FwLiteProjectSync.Tests/Snapshots/sena-3_snapshot.2025-09-30.verified.txt @@ -0,0 +1,124400 @@ +{ + "Entries": [ + { + "Id": "34779c06-5a73-4fe9-8325-b110b23f9293", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "f53f0f28-3ec1-4051-b9a3-fafdca6209ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": { + "en": { + "Spans": [ + { + "Text": "they", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "eles", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "3P\u002B2", + "pt": "3P\u002B2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e73d5de2-b5ec-4cc8-a679-7f7ca8f673f9", + "Order": 2, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "04f6ebb2-31c2-4089-a9e8-68cc32b6d5d1", + "Order": 3, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b2565e07-2e43-43cb-b533-247f100ac548", + "Order": 4, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3360f2c7-1026-4558-a0fb-e9574aae16ee", + "Order": 5, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "88d44583-89e9-46f9-a0b1-a627503e16fb", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "513cede9-4db7-43db-86e0-86a382f79087", + "Order": 1, + "DeletedAt": null, + "EntryId": "88d44583-89e9-46f9-a0b1-a627503e16fb", + "Definition": {}, + "Gloss": { + "en": "he\u002BPST", + "pt": "ele\u002BPST" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f34831ff-af51-4e62-b56f-4968e1f294fa", + "Order": 2, + "DeletedAt": null, + "EntryId": "88d44583-89e9-46f9-a0b1-a627503e16fb", + "Definition": {}, + "Gloss": { + "en": "they\u002BPST", + "pt": "eles\u002BPST" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "71d39408-9158-429d-9fb2-7f0967c9016c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": { + "en": { + "Spans": [ + { + "Text": "he", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ele", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "6e869577-8f59-4ebe-bbff-a45c07f4e4c2", + "Order": 2, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e8ef7f59-3646-459a-96c7-482d3c747e8f", + "Order": 3, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "8b2c9d67-ff37-429f-a3ca-678fe960e001", + "Order": 4, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af56599e-3eb6-4b61-984d-f69267a0b4a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "6b9b59b9-629f-4c8d-90c8-878a40a35ee8", + "Order": 1, + "DeletedAt": null, + "EntryId": "af56599e-3eb6-4b61-984d-f69267a0b4a2", + "Definition": {}, + "Gloss": { + "en": "-er", + "pt": "nominalizador" + }, + "PartOfSpeech": { + "Id": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "Name": { + "en": "Nominalizer", + "pt": "Nominalizador" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd045907-e8fc-46a3-8f8d-f71bd956275f", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd045907-e8fc-46a3-8f8d-f71bd956275f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "of", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "de", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "ASSOC", + "pt": "ASSOC" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6f7fe99a-de48-4761-b58f-688bfec15073", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mwana wa Fa\u0301tima", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "child of Fatima", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "crianc\u0327a de Fa\u0301tima", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d7029d27-45bc-4e53-968e-3c754805eb0a", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "82d967cc-94e1-47ee-ab71-303394ab0470", + "Order": 1, + "DeletedAt": null, + "EntryId": "d7029d27-45bc-4e53-968e-3c754805eb0a", + "Definition": {}, + "Gloss": { + "en": "3S\u002B1", + "pt": "3S\u002B1" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d7a3eba8-7cd3-43c2-8f77-2dd39d41643c", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "b2c77883-9555-4f6f-9b63-2d5e3e0921e7", + "Order": 1, + "DeletedAt": null, + "EntryId": "d7a3eba8-7cd3-43c2-8f77-2dd39d41643c", + "Definition": {}, + "Gloss": { + "en": "IND", + "pt": "IND" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7727ed9-55da-4c34-bdec-f34b7a07019e", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1af27ad8-7b07-462b-90fe-115b5bd63ecd", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7727ed9-55da-4c34-bdec-f34b7a07019e", + "Definition": {}, + "Gloss": { + "en": "PAST", + "pt": "PASSADO" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f91cf0e0-b3c2-4478-9f1f-becaecf307e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "9e9ad5c2-26f8-4ed1-9803-2af452088701", + "Order": 1, + "DeletedAt": null, + "EntryId": "f91cf0e0-b3c2-4478-9f1f-becaecf307e5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "associative prefix", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "prefixo associativo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "assocpx", + "pt": "assocpx" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc02be9f-32fb-470b-b305-1395b664a1fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9e9ad5c2-26f8-4ed1-9803-2af452088701", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a15b8ae6-207c-4999-b1e0-f95a348d1bdc", + "DeletedAt": null, + "LexemeForm": { + "seh": "adidi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "892fa71e-e2cb-4e2f-9ca9-d37d77c5acda", + "Order": 1, + "DeletedAt": null, + "EntryId": "a15b8ae6-207c-4999-b1e0-f95a348d1bdc", + "Definition": {}, + "Gloss": { + "en": "good", + "pt": "bom" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e488d546-1af3-4d79-8ec5-2063442fc8e9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akazi adidi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "boas mulheres", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "892fa71e-e2cb-4e2f-9ca9-d37d77c5acda", + "DeletedAt": null + } + ] + }, + { + "Id": "13e26eb7-5809-40d3-a08d-78c704ba8a30", + "Order": 2, + "DeletedAt": null, + "EntryId": "a15b8ae6-207c-4999-b1e0-f95a348d1bdc", + "Definition": {}, + "Gloss": { + "en": "right side", + "pt": "direita" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eef348ea-4321-400c-a29b-8a101b6dea79", + "DeletedAt": null, + "LexemeForm": { + "seh": "aji" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "8e037741-77d2-4149-abc1-1f40881a50c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "eef348ea-4321-400c-a29b-8a101b6dea79", + "Definition": {}, + "Gloss": { + "en": "agent", + "pt": "agent" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b05564f5-3b1e-4ac5-b7ed-b3cd1e77b57f", + "DeletedAt": null, + "LexemeForm": { + "seh": "aka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "65b0d7bb-29ee-4982-909a-9871001ba0cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "b05564f5-3b1e-4ac5-b7ed-b3cd1e77b57f", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5db6e79d-de66-4ec6-84c1-af3cd170f90d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ambuk" + }, + "CitationForm": { + "seh": "ambuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "67d78fa6-b914-4ac0-94c5-6acd1c2fe657", + "Order": 1, + "DeletedAt": null, + "EntryId": "5db6e79d-de66-4ec6-84c1-af3cd170f90d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to cross a body of water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cross", + "pt": "atravessar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b8846f7-7b55-436d-b47a-5f9a8a5897f2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ng\u0027ona yaambuka.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "The crocodile crossed (the river).", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "O crocodilo atravessou (rio).", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "67d78fa6-b914-4ac0-94c5-6acd1c2fe657", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd7231ed-843a-4ec3-b14d-934ecf90635d", + "DeletedAt": null, + "LexemeForm": { + "seh": "an" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "0f19a966-61e5-47ae-9388-cf8c4c6ef04c", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd7231ed-843a-4ec3-b14d-934ecf90635d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Reciprocal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Reci\u0301proca", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "REC", + "pt": "REC" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "023c3f6e-4868-4839-ae3b-4cb78878c735", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "For \u0022iyan\u0022, nikijibiya\u0301na, nikidairiya\u0301na; akakutana", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "0f19a966-61e5-47ae-9388-cf8c4c6ef04c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "425289f4-fbcd-4644-99d7-c9417e20fa66", + "DeletedAt": null, + "LexemeForm": { + "seh": "ande" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f71411f-5cd2-475c-b194-ea8f19a72a58", + "Order": 1, + "DeletedAt": null, + "EntryId": "425289f4-fbcd-4644-99d7-c9417e20fa66", + "Definition": {}, + "Gloss": { + "en": "yes", + "pt": "sim" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7121a57e-a4da-4c79-b310-3543c30f676a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ani" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b9d67f3d-1e16-4216-932d-b0c6cbb24bc7", + "Order": 1, + "DeletedAt": null, + "EntryId": "7121a57e-a4da-4c79-b310-3543c30f676a", + "Definition": {}, + "Gloss": { + "en": "who?", + "pt": "quem?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4db108bc-e229-4c8f-bd18-3b2b01e8d474", + "DeletedAt": null, + "LexemeForm": { + "seh": "anji" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a282c3c1-ed8d-4f68-8c21-767c95ac2822", + "Order": 1, + "DeletedAt": null, + "EntryId": "4db108bc-e229-4c8f-bd18-3b2b01e8d474", + "Definition": {}, + "Gloss": { + "en": "what?", + "pt": "que?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3af2c61b-b41b-43f4-9915-bb2957437f18", + "Order": 2, + "DeletedAt": null, + "EntryId": "4db108bc-e229-4c8f-bd18-3b2b01e8d474", + "Definition": {}, + "Gloss": { + "en": "which?", + "pt": "qual?" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8b58b2b6-99db-401c-b491-0b770483c52a", + "DeletedAt": null, + "LexemeForm": { + "seh": "apa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f7405ef5-b9d6-4ce5-85ec-9d31f699368f", + "Order": 1, + "DeletedAt": null, + "EntryId": "8b58b2b6-99db-401c-b491-0b770483c52a", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "240a69e1-0f0d-4086-99d3-67bb1b24769d", + "DeletedAt": null, + "LexemeForm": { + "seh": "api" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e66b59dd-3258-4135-91a1-f9c488aa8c92", + "Order": 1, + "DeletedAt": null, + "EntryId": "240a69e1-0f0d-4086-99d3-67bb1b24769d", + "Definition": {}, + "Gloss": { + "en": "what", + "pt": "o que" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8ee372e-24dd-4a72-99b5-ddb4691f0a04", + "DeletedAt": null, + "LexemeForm": { + "seh": "awa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a61ace74-399d-41fb-9ca4-51f82adbc934", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8ee372e-24dd-4a72-99b5-ddb4691f0a04", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c360ef88-a3e8-4d17-85f0-106e3713b17d", + "DeletedAt": null, + "LexemeForm": { + "seh": "b" + }, + "CitationForm": { + "seh": "ba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "74fb07c9-24d4-4b19-b496-c66dc02011e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "c360ef88-a3e8-4d17-85f0-106e3713b17d", + "Definition": {}, + "Gloss": { + "en": "steal", + "pt": "roubar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "75f95bb3-0ab4-46be-b846-f63061c0a82e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mbava aba.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "O ladra\u0303o roubou.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "74fb07c9-24d4-4b19-b496-c66dc02011e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "baba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "983254a5-8270-438b-8bbc-09cbca7a6611", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "Definition": {}, + "Gloss": { + "en": "father", + "pt": "pai" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0bf786a4-79ce-47fb-952c-9665228d7d62", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,33; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "983254a5-8270-438b-8bbc-09cbca7a6611", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "2e0cf09a-d18d-4bef-8bc2-ba68a6ed1ff1", + "MaybeId": "2e0cf09a-d18d-4bef-8bc2-ba68a6ed1ff1", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "ComponentSenseId": null, + "ComponentHeadword": "baba" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62aca34b-6826-40fd-b6bf-7c93aa8151c1", + "DeletedAt": null, + "LexemeForm": { + "seh": "bal" + }, + "CitationForm": { + "seh": "bala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "018a07df-4eac-4c21-becd-717530e1ff84", + "Order": 1, + "DeletedAt": null, + "EntryId": "62aca34b-6826-40fd-b6bf-7c93aa8151c1", + "Definition": {}, + "Gloss": { + "en": "give birth", + "pt": "dar a\u0300 luz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "855a0bfc-b305-41de-aa78-69632523b2be", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "018a07df-4eac-4c21-becd-717530e1ff84", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "701bbea4-6b2f-45c9-8a01-86d512091405", + "DeletedAt": null, + "LexemeForm": { + "seh": "balalik" + }, + "CitationForm": { + "seh": "balalika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", + "Order": 1, + "DeletedAt": null, + "EntryId": "701bbea4-6b2f-45c9-8a01-86d512091405", + "Definition": {}, + "Gloss": { + "en": "flee", + "pt": "fugir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2ec0a2fb-c15e-4d6e-a900-2843e8b77752", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", + "DeletedAt": null + }, + { + "Id": "a8ce8e9f-0d3c-42b3-8097-088e1d5aa328", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f577d57d-c388-44c5-893e-3ea9e86fef1f", + "DeletedAt": null, + "LexemeForm": { + "seh": "balangaz" + }, + "CitationForm": { + "seh": "balangaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d51d8ad2-5320-4551-a267-5d3379d91fb8", + "Order": 1, + "DeletedAt": null, + "EntryId": "f577d57d-c388-44c5-893e-3ea9e86fef1f", + "Definition": {}, + "Gloss": { + "en": "console", + "pt": "consolar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0420aef-0469-43e7-9f3a-c292efa3eeee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d51d8ad2-5320-4551-a267-5d3379d91fb8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bc811169-1d4c-4b34-b5db-c3e6bae77eaa", + "DeletedAt": null, + "LexemeForm": { + "seh": "balik" + }, + "CitationForm": { + "seh": "balika" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fdd35987-d88b-4fba-b815-b255c72f8329", + "Order": 1, + "DeletedAt": null, + "EntryId": "bc811169-1d4c-4b34-b5db-c3e6bae77eaa", + "Definition": {}, + "Gloss": { + "en": "be beautiful", + "pt": "ser bonito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57026efa-52e6-4c48-869a-f835431e0865", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iye abalika", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "ela e\u0301 bonito", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "fdd35987-d88b-4fba-b815-b255c72f8329", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "770499a2-61b0-4a78-bbd3-ce224000426a", + "DeletedAt": null, + "LexemeForm": { + "seh": "balis" + }, + "CitationForm": { + "seh": "balisa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7cc77c4a-6c21-4d00-8d27-b032bc94803d", + "Order": 1, + "DeletedAt": null, + "EntryId": "770499a2-61b0-4a78-bbd3-ce224000426a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "help give birth", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ajudar dar a luz; fazer trabalho de parteira", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "midwiving", + "pt": "partejar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3c6317f-d236-46bf-90de-c7f53f75e1fa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7cc77c4a-6c21-4d00-8d27-b032bc94803d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c436590-64d7-4e22-a23b-faa24483af9f", + "DeletedAt": null, + "LexemeForm": { + "seh": "baliw" + }, + "CitationForm": { + "seh": "baliwa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "496bf17c-c4c9-4aff-adf2-ed9aa9761409", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c436590-64d7-4e22-a23b-faa24483af9f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be born", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "nascer-se", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "be born", + "pt": "nascer-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2bebdc10-9dc9-40bb-8c93-42e67394332e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "496bf17c-c4c9-4aff-adf2-ed9aa9761409", + "DeletedAt": null + } + ] + }, + { + "Id": "61fe82af-1b62-47a8-9d3e-e0f7684b12fa", + "Order": 2, + "DeletedAt": null, + "EntryId": "6c436590-64d7-4e22-a23b-faa24483af9f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to strap on one\u0027s back", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "strap on back", + "pt": "por ao colo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03d6652b-0af8-40a3-b2ee-574c53dcfb2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bambaya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d59756d9-3fe2-4cd6-9e2e-372ae603152a", + "Order": 1, + "DeletedAt": null, + "EntryId": "03d6652b-0af8-40a3-b2ee-574c53dcfb2c", + "Definition": {}, + "Gloss": { + "en": "sweet potato", + "pt": "batata doce" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "707c1239-2753-4584-a698-58af283cb5f7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mabambaya mikulu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "batata doce grande", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d59756d9-3fe2-4cd6-9e2e-372ae603152a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "883129d8-a131-4cd0-97d1-2c9e7f64af65", + "DeletedAt": null, + "LexemeForm": { + "seh": "bandazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38b340b9-6fb4-4134-a7aa-e69a4000c9bf", + "Order": 1, + "DeletedAt": null, + "EntryId": "883129d8-a131-4cd0-97d1-2c9e7f64af65", + "Definition": { + "en": { + "Spans": [ + { + "Text": "servant", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "empregado de casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "servant", + "pt": "empregado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cffb14ac-72f1-46d2-9b56-5b9fdc5bf98f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,26 (mbandazi - sic)", + "Ws": "en" + } + ] + }, + "SenseId": "38b340b9-6fb4-4134-a7aa-e69a4000c9bf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c75d29f-519c-4dc8-9eb7-a249ded94116", + "DeletedAt": null, + "LexemeForm": { + "seh": "bande" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fc0fef0-c127-467b-8c09-f10fdd3ddb6a", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c75d29f-519c-4dc8-9eb7-a249ded94116", + "Definition": { + "en": { + "Spans": [ + { + "Text": "flower , type that floats in mass on water w/ red flower", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "flor aqua\u0301tica vermelha", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "flower", + "pt": "flor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c345f278-91ff-463d-b9a6-8abac8a267eb", + "Name": { + "en": "Grass, herb, vine" + }, + "Code": "1.5.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8da005e-99a9-4a5b-acb2-d9037e417e7d", + "DeletedAt": null, + "LexemeForm": { + "seh": "banja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14301224-b2b0-42d9-b443-6cdaf860db27", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8da005e-99a9-4a5b-acb2-d9037e417e7d", + "Definition": {}, + "Gloss": { + "en": "marriage", + "pt": "casamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adcc7584-28dc-4e3a-969c-7cfc8914126a", + "DeletedAt": null, + "LexemeForm": { + "seh": "banku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f5ba1c7-2628-4669-899e-7615d7862b3d", + "Order": 1, + "DeletedAt": null, + "EntryId": "adcc7584-28dc-4e3a-969c-7cfc8914126a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "stool", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "banco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stool", + "pt": "banco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4c138b44-773a-4423-8a63-00bcb36707a3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "6f5ba1c7-2628-4669-899e-7615d7862b3d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96cc590b-25cf-4334-8ac3-a066de706286", + "DeletedAt": null, + "LexemeForm": { + "seh": "bara" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fea4ede0-f970-4b38-97eb-5d7075f0288b", + "Order": 1, + "DeletedAt": null, + "EntryId": "96cc590b-25cf-4334-8ac3-a066de706286", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sea, a body of water in which one can not see the other side", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sea", + "pt": "mar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7c4b9531-23e3-4053-bbd0-1e918f894c44", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fea4ede0-f970-4b38-97eb-5d7075f0288b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c2d5080f-e67a-45ce-8a2a-cbddc75a3657", + "DeletedAt": null, + "LexemeForm": { + "seh": "ba\u0301rigi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef626122-aeda-4bd1-951b-63ba29d6e74a", + "Order": 1, + "DeletedAt": null, + "EntryId": "c2d5080f-e67a-45ce-8a2a-cbddc75a3657", + "Definition": {}, + "Gloss": { + "en": "barge", + "pt": "barco (tipo)" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3d586ba6-4f08-46d8-b02c-3bbb822f3092", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef626122-aeda-4bd1-951b-63ba29d6e74a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f562c819-73e1-4236-91e4-847fe06a8be8", + "DeletedAt": null, + "LexemeForm": { + "seh": "basa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "db7715d2-59de-4222-a5b7-18c72ba46beb", + "Order": 1, + "DeletedAt": null, + "EntryId": "f562c819-73e1-4236-91e4-847fe06a8be8", + "Definition": {}, + "Gloss": { + "en": "work", + "pt": "trabalho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d68911f6-6507-483a-b015-44726fdf868a", + "Name": { + "en": "Work" + }, + "Code": "6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f1f0113c-ecbc-4ece-bf02-9ef61cfa9afb", + "DeletedAt": null, + "LexemeForm": { + "seh": "basi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", + "Order": 1, + "DeletedAt": null, + "EntryId": "f1f0113c-ecbc-4ece-bf02-9ef61cfa9afb", + "Definition": {}, + "Gloss": { + "en": "only", + "pt": "so\u0301mente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "153977d2-d0d6-41e3-9e2e-4e11ec288295", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisalonga ciSena basi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Falo somente Sena.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", + "DeletedAt": null + }, + { + "Id": "ca86d398-f420-48e1-8f8e-5f816dfa35ac", + "Order": 2, + "Sentence": {}, + "Translation": { + "pt": { + "Spans": [ + { + "Text": ".", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", + "DeletedAt": null + } + ] + }, + { + "Id": "333e5026-83bf-4acd-a0b0-af2f04e1687e", + "Order": 2, + "DeletedAt": null, + "EntryId": "f1f0113c-ecbc-4ece-bf02-9ef61cfa9afb", + "Definition": {}, + "Gloss": { + "en": "it is enough", + "pt": "chega" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9899f188-30ef-41b5-9fc0-bb92576fd18a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Basi, lekani kulongabve.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Chega, na\u0303o fala mais", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "333e5026-83bf-4acd-a0b0-af2f04e1687e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "221797c8-b045-4baf-82fb-891c3efa1fcd", + "DeletedAt": null, + "LexemeForm": { + "seh": "batha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09ccd17c-8e0a-4208-95dc-e41cb6b78de9", + "Order": 1, + "DeletedAt": null, + "EntryId": "221797c8-b045-4baf-82fb-891c3efa1fcd", + "Definition": {}, + "Gloss": { + "en": "duck", + "pt": "pato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b2bb077a-92c8-4e54-8dfa-c89efd60b82d", + "Name": { + "en": "Poultry raising" + }, + "Code": "6.3.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "18f15fd1-f614-490d-9f56-65a805892b0a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "09ccd17c-8e0a-4208-95dc-e41cb6b78de9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8d55e377-05d0-425a-941b-60881e640fa5", + "DeletedAt": null, + "LexemeForm": { + "seh": "baulu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef8ce53f-c686-4c74-80c2-ada05ff8a85a", + "Order": 1, + "DeletedAt": null, + "EntryId": "8d55e377-05d0-425a-941b-60881e640fa5", + "Definition": {}, + "Gloss": { + "en": "coffin", + "pt": "caixa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5c4c434b-5a06-4172-ae1d-673f39d729ec", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ef8ce53f-c686-4c74-80c2-ada05ff8a85a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41989bc6-8c43-426f-8465-6e78018dc115", + "DeletedAt": null, + "LexemeForm": { + "seh": "bemberuwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58d47fd5-21e6-4a19-8ca9-768b77eb0c8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "41989bc6-8c43-426f-8465-6e78018dc115", + "Definition": {}, + "Gloss": { + "en": "butterfly", + "pt": "borboleta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "144f8d59-ea75-444d-8077-9890b72470f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogeiro", + "Ws": "en" + } + ] + }, + "SenseId": "58d47fd5-21e6-4a19-8ca9-768b77eb0c8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "164ebd28-78ff-424d-9fb0-038ef844b184", + "DeletedAt": null, + "LexemeForm": { + "seh": "benga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc7b9218-27a9-4ba7-9b69-79a469019855", + "Order": 1, + "DeletedAt": null, + "EntryId": "164ebd28-78ff-424d-9fb0-038ef844b184", + "Definition": {}, + "Gloss": { + "en": "hole", + "pt": "buraco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bb87e9c7-fe9d-4bd2-a3cd-36042fcb7709", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cc7b9218-27a9-4ba7-9b69-79a469019855", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35a5b430-b2cf-4268-8fc7-8552624e7332", + "DeletedAt": null, + "LexemeForm": { + "seh": "ber" + }, + "CitationForm": { + "seh": "bera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5ec694c-59ec-4765-af3b-314095d1bd7d", + "Order": 1, + "DeletedAt": null, + "EntryId": "35a5b430-b2cf-4268-8fc7-8552624e7332", + "Definition": {}, + "Gloss": { + "en": "rob someone", + "pt": "robar alguem" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efbcca31-d5c8-4b33-a152-d8acd16b1eb6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a5ec694c-59ec-4765-af3b-314095d1bd7d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f61ef333-e7aa-498d-862a-09f451bbf42f", + "DeletedAt": null, + "LexemeForm": { + "seh": "bere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6fa0e00f-3280-498a-b33b-cca6d76f3857", + "Order": 1, + "DeletedAt": null, + "EntryId": "f61ef333-e7aa-498d-862a-09f451bbf42f", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "mama, seio", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "breast", + "pt": "mama" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e24f4f31-b037-4649-a4d5-55e6075f41a4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "6fa0e00f-3280-498a-b33b-cca6d76f3857", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d22403db-fb8c-456b-8c97-452893cae4bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "beser" + }, + "CitationForm": { + "seh": "besera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a88193aa-85c7-471f-8f05-939690f832b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "d22403db-fb8c-456b-8c97-452893cae4bb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake up between midnight and sunrise", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Acordar depois de meianoite ate nascer de sol.", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake up early", + "pt": "amanhecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57a87af7-4487-4527-8236-cab4ace6559c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iye abesera kugombe", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "He woke up early to go to the river.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Ele amadrugou para rio", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a88193aa-85c7-471f-8f05-939690f832b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f394fcf-b537-4ac5-9c99-cc4c58faac9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bhande" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d028302e-d03b-4cc8-a588-5c3ef9e449e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f394fcf-b537-4ac5-9c99-cc4c58faac9e", + "Definition": {}, + "Gloss": { + "en": "belt", + "pt": "cinto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ee6e993c-5551-42ae-b35e-26bc6aeeb3a4", + "Name": { + "en": "Men\u0027s clothing" + }, + "Code": "5.3.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "0d058fef-c535-41ef-be83-0980ee1c650e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d028302e-d03b-4cc8-a588-5c3ef9e449e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "681f3444-dff2-4ce8-bba8-afa28818de7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "bhonzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d4bf84ed-04fd-41a4-a4ca-312a0a8f171e", + "Order": 1, + "DeletedAt": null, + "EntryId": "681f3444-dff2-4ce8-bba8-afa28818de7f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "leg bone of a certain animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "osso de perna dum certo animal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "leg bone", + "pt": "osso de perna " + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "381c1f98-3295-492f-afb2-41805596f99c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d4bf84ed-04fd-41a4-a4ca-312a0a8f171e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81e36df2-9f0a-4a06-90f8-188016d62937", + "DeletedAt": null, + "LexemeForm": { + "seh": "bibvu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bfe613da-5e41-4cce-ac69-4f4b4d1e29ff", + "Order": 1, + "DeletedAt": null, + "EntryId": "81e36df2-9f0a-4a06-90f8-188016d62937", + "Definition": {}, + "Gloss": { + "en": "jealousy", + "pt": "inveja" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2376f4c-8713-44f7-8058-1ded7b253968", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bfe613da-5e41-4cce-ac69-4f4b4d1e29ff", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "23ab3e8b-5244-4f83-8134-869dd17442e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "bichu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "82e9e4c7-3572-4246-8a6b-5dc29d16a278", + "Order": 1, + "DeletedAt": null, + "EntryId": "23ab3e8b-5244-4f83-8134-869dd17442e8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "slave, person under punishment, one who works against one\u0027s will", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "escravo, pessoa castigada, na\u0303o trabalho pelo vontade", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "slave", + "pt": "escravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "434d7ed9-9efb-47a2-bb84-d9ecf24625d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "82e9e4c7-3572-4246-8a6b-5dc29d16a278", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a73d442f-8314-4b6f-a396-206fde5f7804", + "DeletedAt": null, + "LexemeForm": { + "seh": "bidz" + }, + "CitationForm": { + "seh": "bidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "40cf2e97-7ba4-4deb-953a-491f165099e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a73d442f-8314-4b6f-a396-206fde5f7804", + "Definition": {}, + "Gloss": { + "en": "submerge", + "pt": "mergulhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86e857fa-f9c8-40b8-b617-1c0ef4ae71dd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "40cf2e97-7ba4-4deb-953a-491f165099e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e18419f9-a34a-4afe-ad7b-3c56b77b097d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bimbi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a92f97b-b8fd-47f4-9a0b-6bc48878475a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e18419f9-a34a-4afe-ad7b-3c56b77b097d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ocean wave", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "wave", + "pt": "onda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "741c417a-11e9-460c-9ab3-51b8220df016", + "Name": { + "en": "Wave" + }, + "Code": "1.3.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "d3653a1b-0521-46d9-91a2-7d17f5c4d744", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6a92f97b-b8fd-47f4-9a0b-6bc48878475a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6b0df727-94e7-47cd-96c6-a37662297947", + "DeletedAt": null, + "LexemeForm": { + "seh": "bira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "161e717b-55e7-45a5-800b-4dc9e1c4fa30", + "Order": 1, + "DeletedAt": null, + "EntryId": "6b0df727-94e7-47cd-96c6-a37662297947", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sheep, ewe or ram", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "orvelho ou orvelha", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "sheep", + "pt": "ovelho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "26b97047-edb1-44e9-8c7b-463de9cfbe78", + "Name": { + "en": "Sheep" + }, + "Code": "6.3.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "53bbf6a2-c41a-43ec-9a04-9aa5da9c119c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "161e717b-55e7-45a5-800b-4dc9e1c4fa30", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fdc4ebf8-8a7a-4584-9256-a10267b68669", + "DeletedAt": null, + "LexemeForm": { + "seh": "biri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b8639913-e8cf-4bbf-8598-0cb7c2421f01", + "Order": 1, + "DeletedAt": null, + "EntryId": "fdc4ebf8-8a7a-4584-9256-a10267b68669", + "Definition": {}, + "Gloss": { + "en": "glory", + "pt": "glo\u0301ria" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68b2b516-b793-4ff1-8abe-a0d6e3399b3a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b8639913-e8cf-4bbf-8598-0cb7c2421f01", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ca8ab7e5-b8e8-4263-bbbf-96caf53c6adc", + "DeletedAt": null, + "LexemeForm": { + "seh": "bisal" + }, + "CitationForm": { + "seh": "bisala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c2a64c53-bb9f-4485-adce-56aa1bca3acc", + "Order": 1, + "DeletedAt": null, + "EntryId": "ca8ab7e5-b8e8-4263-bbbf-96caf53c6adc", + "Definition": {}, + "Gloss": { + "en": "hide", + "pt": "esconder-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aa987582-1d47-4a14-b81c-869eae50f4f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c2a64c53-bb9f-4485-adce-56aa1bca3acc", + "DeletedAt": null + } + ] + }, + { + "Id": "d74a27ca-630a-4e62-9ad1-0dce9252870f", + "Order": 2, + "DeletedAt": null, + "EntryId": "ca8ab7e5-b8e8-4263-bbbf-96caf53c6adc", + "Definition": {}, + "Gloss": { + "en": "hidden", + "pt": "escondido" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3330d4cb-d668-4a8d-bad9-6d35e750d3b7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "pinthu pya kubisala", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "coisas escondidos", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "d74a27ca-630a-4e62-9ad1-0dce9252870f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4b4e98b0-7b69-44a0-8444-9b447c5764b9", + "Order": 1, + "DeletedAt": null, + "EntryId": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "Definition": {}, + "Gloss": { + "en": "one", + "pt": "um" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db0b3ff3-6d48-49e2-9b22-ae909d9690e0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nkazi m\u0027bodzi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "one wife", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "esposa uma", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "4b4e98b0-7b69-44a0-8444-9b447c5764b9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "736b1dad-e623-4715-955c-bb214ca94f5d", + "MaybeId": "736b1dad-e623-4715-955c-bb214ca94f5d", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "ComplexFormHeadword": "bodzi-bodzi", + "ComponentEntryId": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "ComponentSenseId": null, + "ComponentHeadword": "bodzi" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "DeletedAt": null, + "LexemeForm": { + "seh": "bodzi-bodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "79b8ab72-2b9c-4afa-ad44-47fefb074746", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "Definition": { + "en": { + "Spans": [ + { + "Text": "indicating ephatically", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "the very", + "pt": "o mesmo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac1e8487-62d0-4a0a-b1b2-8ea157d340b1", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Awene abodzi-bodzi ndio adalonga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eles mesmos foram falar. (Sa\u0303o eles mesmo que falaram.)", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "79b8ab72-2b9c-4afa-ad44-47fefb074746", + "DeletedAt": null + }, + { + "Id": "fd20594d-5831-462d-a460-ce4ca3687bc7", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cinthu cibodzi-bodzi; pinthu pibodzi-bodzi; cibodzi na cibodzi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "aquele coisa mesmo; aqueles mesmos coisas; um por um", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "79b8ab72-2b9c-4afa-ad44-47fefb074746", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "736b1dad-e623-4715-955c-bb214ca94f5d", + "MaybeId": "736b1dad-e623-4715-955c-bb214ca94f5d", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "ComplexFormHeadword": "bodzi-bodzi", + "ComponentEntryId": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "ComponentSenseId": null, + "ComponentHeadword": "bodzi" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05ef2b9c-f0a3-498e-b26b-47e860f20fe7", + "DeletedAt": null, + "LexemeForm": { + "seh": "bokho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "036e4c4f-31f1-4824-8ebe-51fa5a9fbe43", + "Order": 1, + "DeletedAt": null, + "EntryId": "05ef2b9c-f0a3-498e-b26b-47e860f20fe7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "goat male", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cabrito masculino", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "goat", + "pt": "cabrito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b3fcded-5440-4ca7-a870-4de86d693b27", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18,26", + "Ws": "en" + } + ] + }, + "SenseId": "036e4c4f-31f1-4824-8ebe-51fa5a9fbe43", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91f2b11a-1ee4-4725-aef4-0a03366ed0e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "bokosi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57bd9b42-76ed-4fa4-8a43-d8ca70973b03", + "Order": 1, + "DeletedAt": null, + "EntryId": "91f2b11a-1ee4-4725-aef4-0a03366ed0e4", + "Definition": {}, + "Gloss": { + "en": "box", + "pt": "caixa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21752c5c-ccd4-4cf0-8347-5580173da164", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "57bd9b42-76ed-4fa4-8a43-d8ca70973b03", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb7504eb-e687-454b-89e5-8f5b459e085d", + "DeletedAt": null, + "LexemeForm": { + "seh": "boliboli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e138d2ab-fea1-421d-bd27-1a901309ac1a", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb7504eb-e687-454b-89e5-8f5b459e085d", + "Definition": {}, + "Gloss": { + "en": "blind", + "pt": "cego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f16bfb0b-a465-492c-b2b2-4c70672fc7ba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e138d2ab-fea1-421d-bd27-1a901309ac1a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "97d765f4-286b-48e8-a76c-b66a61428cb2", + "DeletedAt": null, + "LexemeForm": { + "seh": "bondia" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "229fdf0b-c330-423a-8eb2-6a0fc8c76d2b", + "Order": 1, + "DeletedAt": null, + "EntryId": "97d765f4-286b-48e8-a76c-b66a61428cb2", + "Definition": {}, + "Gloss": { + "en": "good morning", + "pt": "bom dia" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0155b177-1fe0-4d45-8fe7-b25a438fa67f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "229fdf0b-c330-423a-8eb2-6a0fc8c76d2b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b5afaed-1da7-4062-8992-e2f6076d2886", + "DeletedAt": null, + "LexemeForm": { + "seh": "bongwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eea4e67f-9514-4bfb-9bfc-af148446d34f", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b5afaed-1da7-4062-8992-e2f6076d2886", + "Definition": { + "en": { + "Spans": [ + { + "Text": "baboon", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "baboon", + "pt": "babui\u0301no" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "03ae473b-9283-4e4f-a4fe-9f1733c22c66", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "eea4e67f-9514-4bfb-9bfc-af148446d34f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "afc73a10-6dd1-464d-9633-c05541c427d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "bonzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09c319ff-53fe-4453-b088-8327effb47b7", + "Order": 1, + "DeletedAt": null, + "EntryId": "afc73a10-6dd1-464d-9633-c05541c427d7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the clan name for the Nyazeze family", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "nome duma cla\u0303", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "name", + "pt": "nome" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f120be26-15b0-45c0-b215-d84417a7ed57", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "09c319ff-53fe-4453-b088-8327effb47b7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a3ddb7a7-7adc-4b30-b4de-578bcecd95f9", + "DeletedAt": null, + "LexemeForm": { + "seh": "boo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3301cd02-b803-4fdd-8e0b-1fd9802b699d", + "Order": 1, + "DeletedAt": null, + "EntryId": "a3ddb7a7-7adc-4b30-b4de-578bcecd95f9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the deepest part of a river or ocean", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "ocean bottom", + "pt": "fundu do mar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fd5cade4-bafb-47c2-8c60-389c43bfcca1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3301cd02-b803-4fdd-8e0b-1fd9802b699d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16f79c67-c08f-4c8f-8df1-9209bc4005b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "botari" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "93dd2162-dedc-42bf-9fc6-49e6a765bdf8", + "Order": 1, + "DeletedAt": null, + "EntryId": "16f79c67-c08f-4c8f-8df1-9209bc4005b2", + "Definition": {}, + "Gloss": { + "en": "good afternoon", + "pt": "boa tarde" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "79b53161-d4d7-4aec-8b0b-91ae794b596e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "93dd2162-dedc-42bf-9fc6-49e6a765bdf8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "97fc469d-9916-454d-8ff0-277f973f8674", + "DeletedAt": null, + "LexemeForm": { + "seh": "bote" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1dc5dfb2-e140-4fa2-85b4-ebf9c7cce900", + "Order": 1, + "DeletedAt": null, + "EntryId": "97fc469d-9916-454d-8ff0-277f973f8674", + "Definition": {}, + "Gloss": { + "en": "boat", + "pt": "barco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c167ffe-9941-4d5a-894a-225aa7be4b20", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1dc5dfb2-e140-4fa2-85b4-ebf9c7cce900", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a9f24a4-3148-448c-a6c0-097c8bc5dcb5", + "DeletedAt": null, + "LexemeForm": { + "seh": "bukhu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84fe5c47-2cac-4abd-b53f-7f75700cb745", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a9f24a4-3148-448c-a6c0-097c8bc5dcb5", + "Definition": {}, + "Gloss": { + "en": "book", + "pt": "livro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5def4ccd-951a-4cc6-b6e0-45a0918f77eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulangeti" + }, + "CitationForm": { + "seh": "bulangeti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ffe18b3-db9e-4cf9-9076-107940104d19", + "Order": 1, + "DeletedAt": null, + "EntryId": "5def4ccd-951a-4cc6-b6e0-45a0918f77eb", + "Definition": {}, + "Gloss": { + "en": "cover", + "pt": "manta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ed29ce4-ff90-4fed-92c8-c77769e4699b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "5ffe18b3-db9e-4cf9-9076-107940104d19", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d4060ee2-f42b-4ae0-a47e-1781a0b3310d", + "DeletedAt": null, + "LexemeForm": { + "seh": "buluk" + }, + "CitationForm": { + "seh": "buluka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4517e997-6cec-46b3-9596-1e51ac14702d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d4060ee2-f42b-4ae0-a47e-1781a0b3310d", + "Definition": {}, + "Gloss": { + "en": "leave", + "pt": "sair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f0208049-06e8-4d15-a0be-81c2844bf1e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "4517e997-6cec-46b3-9596-1e51ac14702d", + "DeletedAt": null + } + ] + }, + { + "Id": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", + "Order": 2, + "DeletedAt": null, + "EntryId": "d4060ee2-f42b-4ae0-a47e-1781a0b3310d", + "Definition": {}, + "Gloss": { + "en": "produce", + "pt": "produzir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d824a4dc-3b6d-466d-9d77-6b42c5750487", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mpunga wabuluka maningi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "O arroz produziu muito.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "The rice produced a lot.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulukir" + }, + "CitationForm": { + "seh": "bulukira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21bac99f-c587-4576-b08c-14ca69dadd83", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "Definition": {}, + "Gloss": { + "en": "appear", + "pt": "aparecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df765343-ce79-4d76-b9c5-76ab706fa840", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ya kumabulukira dzuwa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "east (lit the place of the sunrise) ma- = lugar", + "Ws": "en" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "21bac99f-c587-4576-b08c-14ca69dadd83", + "DeletedAt": null + } + ] + }, + { + "Id": "35a38de9-1800-47e0-b4ad-5db19ac79db2", + "Order": 2, + "DeletedAt": null, + "EntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "Definition": {}, + "Gloss": { + "en": "come out", + "pt": "sair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ef9ddb54-2d19-450d-9264-f872a8f94776", + "Order": 3, + "DeletedAt": null, + "EntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "Definition": {}, + "Gloss": { + "en": "from then on", + "pt": "partindo dali\u0301" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "e5460a70-3a92-47f7-8d4f-8d882728e0d7", + "MaybeId": "e5460a70-3a92-47f7-8d4f-8d882728e0d7", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "ComplexFormHeadword": "kubulukira", + "ComponentEntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "ComponentSenseId": null, + "ComponentHeadword": "bulukira" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c06eb11b-067a-44cd-aa2e-2e56a2ea8970", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulumund" + }, + "CitationForm": { + "seh": "bulumunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3fe67f6b-5514-47fc-be95-ac53ee7d8b56", + "Order": 1, + "DeletedAt": null, + "EntryId": "c06eb11b-067a-44cd-aa2e-2e56a2ea8970", + "Definition": {}, + "Gloss": { + "en": "roll in", + "pt": "rebolando" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "81c6e631-7e90-4b11-aac5-b859ad71f327", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3fe67f6b-5514-47fc-be95-ac53ee7d8b56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b77ab23f-1a6f-46f3-a01d-19948315b026", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulus" + }, + "CitationForm": { + "seh": "bulusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6edd952c-0bdc-4c73-bfb9-1051f163db9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b77ab23f-1a6f-46f3-a01d-19948315b026", + "Definition": {}, + "Gloss": { + "en": "throw out", + "pt": "tirar fora" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c104ff5-8b88-4abf-af74-edacf61cf379", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6edd952c-0bdc-4c73-bfb9-1051f163db9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9df0b4e0-33e8-4bf3-9dbf-6e3c5048a569", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulusir" + }, + "CitationForm": { + "seh": "bulusira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "574b5528-5784-42ff-b9d9-fcc156dcc49f", + "Order": 1, + "DeletedAt": null, + "EntryId": "9df0b4e0-33e8-4bf3-9dbf-6e3c5048a569", + "Definition": { + "en": { + "Spans": [ + { + "Text": "remove, release prisoner", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "remove", + "pt": "tirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d98551bd-e134-4bb1-967a-5a2fd25051da", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "574b5528-5784-42ff-b9d9-fcc156dcc49f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29f67617-7668-4535-943f-40c4d62c408c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bume" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0d40e283-a355-41fa-9919-a800096e3319", + "Order": 1, + "DeletedAt": null, + "EntryId": "29f67617-7668-4535-943f-40c4d62c408c", + "Definition": {}, + "Gloss": { + "en": "dew", + "pt": "orvalho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b8ede155-d17b-4a90-8846-e34ea3237320", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13,19; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0d40e283-a355-41fa-9919-a800096e3319", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dafecdb2-b969-43eb-8e9f-fa35aed5e5a1", + "DeletedAt": null, + "LexemeForm": { + "seh": "buru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b98fbde-93bd-4cca-a342-180aa7b92411", + "Order": 1, + "DeletedAt": null, + "EntryId": "dafecdb2-b969-43eb-8e9f-fa35aed5e5a1", + "Definition": {}, + "Gloss": { + "en": "donkey", + "pt": "juntameta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "edca7805-b861-4979-a18a-63ef1086eeff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b98fbde-93bd-4cca-a342-180aa7b92411", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bv" + }, + "CitationForm": { + "seh": "bva" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "528e7166-69ba-4991-b067-f411475442b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "Definition": {}, + "Gloss": { + "en": "hear", + "pt": "ouvir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f68490f8-f661-4b39-ac14-867caef887f7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisabva pisa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "I feel hot.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Sinto quente.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4 (bv a); Orth; sulo037; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "528e7166-69ba-4991-b067-f411475442b1", + "DeletedAt": null + }, + { + "Id": "e848d802-b842-44fb-b389-fcb84a113fe9", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musabvanji? Ndisabva kupha manungo onsene.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "como se sente? Sinto dores corpo inteiro.", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "528e7166-69ba-4991-b067-f411475442b1", + "DeletedAt": null + } + ] + }, + { + "Id": "fabcc53e-8dd3-4be5-9af5-4f81981ba5be", + "Order": 2, + "DeletedAt": null, + "EntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "Definition": {}, + "Gloss": { + "en": "feel", + "pt": "sentir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "bb65f916-e679-4e05-a575-aaa75e5f01ec", + "MaybeId": "bb65f916-e679-4e05-a575-aaa75e5f01ec", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "ComplexFormHeadword": "kubverana", + "ComponentEntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "ComponentSenseId": null, + "ComponentHeadword": "bva" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35385d36-a39a-4d8f-8d15-6f6207a555a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "bval" + }, + "CitationForm": { + "seh": "bvala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "23a00ada-22b0-402a-a714-8264414db39e", + "Order": 1, + "DeletedAt": null, + "EntryId": "35385d36-a39a-4d8f-8d15-6f6207a555a8", + "Definition": {}, + "Gloss": { + "en": "wear", + "pt": "vestir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ac6299b-ee72-4c3e-af84-3e3ae1c82f29", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndabvala capeu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Usei chapeu.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "23a00ada-22b0-402a-a714-8264414db39e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "def608e7-d69a-4460-b60b-ad5af7ea9e4c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvalir" + }, + "CitationForm": { + "seh": "bvalira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ea6aae0-5081-4ec7-b418-80d6294553d5", + "Order": 1, + "DeletedAt": null, + "EntryId": "def608e7-d69a-4460-b60b-ad5af7ea9e4c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be well dressed", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dapper", + "pt": "vestir bem" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ade98355-401b-4349-8d9c-1187277048be", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0ea6aae0-5081-4ec7-b418-80d6294553d5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ec4b20c-c13e-4e8f-bf8f-a6440d6fd302", + "DeletedAt": null, + "LexemeForm": { + "seh": "bve" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "c15ddf45-a80c-411b-9dbc-d844af283e5f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ec4b20c-c13e-4e8f-bf8f-a6440d6fd302", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Negative intensifier, \u0022never ever\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Intensificador negative \u0022nunca, jamais\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NEGINT", + "pt": "NEGINT" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f3d7730-31a4-46bb-8345-2bdfb13714d4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Hadaonabve munthu unango tayu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o viram mais o outra pessoa na\u0303o", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c15ddf45-a80c-411b-9dbc-d844af283e5f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba97a4b2-f81a-4831-987f-41bfaef251ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvek" + }, + "CitationForm": { + "seh": "bveka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba97a4b2-f81a-4831-987f-41bfaef251ed", + "Definition": {}, + "Gloss": { + "en": "understand", + "pt": "percerber-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe2f5c16-ea3b-43fd-b9c6-6d932bf22dd3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", + "DeletedAt": null + }, + { + "Id": "9142ca40-bc9d-4713-a120-bd2e68d4b188", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", + "DeletedAt": null + } + ] + }, + { + "Id": "6e0952c8-002d-4c3c-b00a-313f65628c58", + "Order": 2, + "DeletedAt": null, + "EntryId": "ba97a4b2-f81a-4831-987f-41bfaef251ed", + "Definition": {}, + "Gloss": { + "en": "comprehend", + "pt": "compreender-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f616266-624b-46cc-9fe6-37721bd7dad1", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvembe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df9f4687-672d-4c65-a178-49a1b007c18e", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f616266-624b-46cc-9fe6-37721bd7dad1", + "Definition": {}, + "Gloss": { + "en": "watermelon", + "pt": "melancia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dd6ef32-e6bc-4973-b8b3-b6fa340b7675", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "df9f4687-672d-4c65-a178-49a1b007c18e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c5b197a-70a3-49dc-a9be-776b5d0b4fc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "bver" + }, + "CitationForm": { + "seh": "bvera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "82f97729-0549-4583-876e-d3adf864f6c1", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c5b197a-70a3-49dc-a9be-776b5d0b4fc1", + "Definition": {}, + "Gloss": { + "en": "obey", + "pt": "obedecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2b5fab2-cfc5-4b08-b309-f2ef0950e2d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "82f97729-0549-4583-876e-d3adf864f6c1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "85672120-e3c4-4b47-9f5a-be0ace166f78", + "DeletedAt": null, + "LexemeForm": { + "seh": "bveran" + }, + "CitationForm": { + "seh": "bverana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d9a83e05-e52d-41e1-bbab-7733e09b0ca1", + "Order": 1, + "DeletedAt": null, + "EntryId": "85672120-e3c4-4b47-9f5a-be0ace166f78", + "Definition": {}, + "Gloss": { + "en": "make agreement", + "pt": "combinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "69455770-fca7-4f41-9e7d-236e8f094ce6", + "Name": { + "en": "Covenant" + }, + "Code": "4.7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ac6dec6-1b8f-463c-8239-e2acb93586b1", + "Name": { + "en": "Unity" + }, + "Code": "4.1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3c6ec08e-0069-4cd1-9024-95d07407159d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndisabverana na Antonyo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eu combina-se bem com Anto\u0301nio.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "sulo2:16", + "Ws": "en" + } + ] + }, + "SenseId": "d9a83e05-e52d-41e1-bbab-7733e09b0ca1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c68ec3c-1814-4ff5-8142-7c2bf40b2b3e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bves" + }, + "CitationForm": { + "seh": "bvesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14c24243-dc54-422a-880f-1d326cbad344", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c68ec3c-1814-4ff5-8142-7c2bf40b2b3e", + "Definition": {}, + "Gloss": { + "en": "listen", + "pt": "escutar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f0fa93ae-aa47-46bd-9022-e0f3a9b6e366", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sidapibvesa tayu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o percebi", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "14c24243-dc54-422a-880f-1d326cbad344", + "DeletedAt": null + } + ] + }, + { + "Id": "346cb2f1-ca16-47ec-bc29-5451f89fed1d", + "Order": 2, + "DeletedAt": null, + "EntryId": "6c68ec3c-1814-4ff5-8142-7c2bf40b2b3e", + "Definition": {}, + "Gloss": { + "en": "understand", + "pt": "perceber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7b88f2c2-647f-4f46-86d9-9f9207db465c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvin" + }, + "CitationForm": { + "seh": "bvina" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "71fc904e-ac67-4964-8db3-f5c8f2d8c477", + "Order": 1, + "DeletedAt": null, + "EntryId": "7b88f2c2-647f-4f46-86d9-9f9207db465c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "dance any dance", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dance", + "pt": "danc\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d88db3c5-62ed-4ac3-bd70-7f74230d069a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "71fc904e-ac67-4964-8db3-f5c8f2d8c477", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "19df53f9-3790-49a9-a8ab-c37003eed83c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvumb" + }, + "CitationForm": { + "seh": "bvumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "19034ed9-ec16-4284-92f7-905c3d5ef8f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "19df53f9-3790-49a9-a8ab-c37003eed83c", + "Definition": {}, + "Gloss": { + "en": "rain", + "pt": "chover" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d681a231-c74b-4969-afd9-13b9c5f2eae6", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu zulo abvumba", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ontem choveu", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "19034ed9-ec16-4284-92f7-905c3d5ef8f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13acc98c-1d92-4456-9516-180ec96c0ac3", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvumbe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6cc2b1b5-5dbe-45f6-8afb-66b2449798be", + "Order": 1, + "DeletedAt": null, + "EntryId": "13acc98c-1d92-4456-9516-180ec96c0ac3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Vlei rat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "water rat", + "pt": "rato de agua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "92cd4bc7-7c50-4a70-936a-3bc2cd4e5c1f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "6cc2b1b5-5dbe-45f6-8afb-66b2449798be", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a1c97fba-7489-4390-9da8-2fbcda2cb8dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvun" + }, + "CitationForm": { + "seh": "bvuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73e108cc-db6b-4233-b1ad-b72688055779", + "Order": 1, + "DeletedAt": null, + "EntryId": "a1c97fba-7489-4390-9da8-2fbcda2cb8dd", + "Definition": {}, + "Gloss": { + "en": "harvest", + "pt": "colher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4dab76ba-1ffb-4649-8cd9-34269159100c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Abvuna mphuga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "They harvested rice.", + "Ws": "seh" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Eles colheram arroz.", + "Ws": "seh" + } + ] + } + }, + "Reference": null, + "SenseId": "73e108cc-db6b-4233-b1ad-b72688055779", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b2fc8bd-b0bb-4905-a159-d55f5fa13eff", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvungaz" + }, + "CitationForm": { + "seh": "bvungaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3b192b76-c082-4f51-9c65-ce2dab292a7a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b2fc8bd-b0bb-4905-a159-d55f5fa13eff", + "Definition": {}, + "Gloss": { + "en": "mix together", + "pt": "misturar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14bc016d-b5bb-4114-bec9-789000329ecd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3b192b76-c082-4f51-9c65-ce2dab292a7a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "edfd6867-472d-4a25-a992-119920785529", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvunz" + }, + "CitationForm": { + "seh": "bvunza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7e2c9813-6bc2-42f9-906a-917aec1e20f5", + "Order": 1, + "DeletedAt": null, + "EntryId": "edfd6867-472d-4a25-a992-119920785529", + "Definition": {}, + "Gloss": { + "en": "ask to", + "pt": "perguntar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f6f307fc-36d1-4e28-98e6-1a7417fcf872", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndoko kabvunze Antonyo mangwana abwere kuno.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Vai pedir Anto\u0301nio para amanha vir ca\u0301.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "7e2c9813-6bc2-42f9-906a-917aec1e20f5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d6818699-a9e5-40b4-814e-ee6063ebb962", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvunzir" + }, + "CitationForm": { + "seh": "bvunzira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f8b3aaa2-b810-4804-b9c2-72376143235f", + "Order": 1, + "DeletedAt": null, + "EntryId": "d6818699-a9e5-40b4-814e-ee6063ebb962", + "Definition": {}, + "Gloss": { + "en": "love", + "pt": "namorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a0258c2-d7a3-40b0-a933-2dc71c759402", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc3a436b-07c6-4c05-8c78-9bbe82ce5549", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a0258c2-d7a3-40b0-a933-2dc71c759402", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cord for making nets", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "linha para fazer rede", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "cord", + "pt": "linha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "885a9d2b-9492-4f37-a05a-022adae98685", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira buazi \u0022tow\u0022 p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dc3a436b-07c6-4c05-8c78-9bbe82ce5549", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2c1bbb47-cd19-4710-acd5-a363834ac79a", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwek" + }, + "CitationForm": { + "seh": "bweka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "18815e26-697e-4b5d-9054-5abac267dcd1", + "Order": 1, + "DeletedAt": null, + "EntryId": "2c1bbb47-cd19-4710-acd5-a363834ac79a", + "Definition": {}, + "Gloss": { + "en": "confess", + "pt": "confessar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cb7dbee8-ba65-4c22-b359-7409b55eb8d3", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bweka kudawa kwako.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Confessa os teus pecados.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "18815e26-697e-4b5d-9054-5abac267dcd1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b8aa2bdb-139d-48c2-8ce1-5bfc53a01d58", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwek" + }, + "CitationForm": { + "seh": "bweka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e429f500-bf9a-4c3d-9783-1b70eaa744dd", + "Order": 1, + "DeletedAt": null, + "EntryId": "b8aa2bdb-139d-48c2-8ce1-5bfc53a01d58", + "Definition": { + "en": { + "Spans": [ + { + "Text": "talk without thinking", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "falar sem pensar, \u0022fala barato\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "careless talk", + "pt": "falar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwer" + }, + "CitationForm": { + "seh": "bwera" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "Definition": {}, + "Gloss": { + "en": "come", + "pt": "vir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "19130813-273c-4bfe-9b14-0785ec757722", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bwera pano.", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", + "DeletedAt": null + }, + { + "Id": "896591a4-d69e-43c4-8978-e229ceb30fe7", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Anda ca.", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "6ec14ead-90b4-4018-8641-d792e42235c4", + "MaybeId": "6ec14ead-90b4-4018-8641-d792e42235c4", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "ComplexFormHeadword": "mambwera-mbwera", + "ComponentEntryId": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "ComponentSenseId": null, + "ComponentHeadword": "bwera" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "792a935e-eec4-481a-a6b8-fa33ad2720c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwerer" + }, + "CitationForm": { + "seh": "bwerera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cfdbb3a-856b-42cc-a288-34fbb0109fb4", + "Order": 1, + "DeletedAt": null, + "EntryId": "792a935e-eec4-481a-a6b8-fa33ad2720c3", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "regressar, voltar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "return", + "pt": "regressar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9914843d-90b7-4a51-9e10-3c84895daaac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8cfdbb3a-856b-42cc-a288-34fbb0109fb4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75740a33-1e68-4c23-9086-8b6b3884a1b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "bweres" + }, + "CitationForm": { + "seh": "bweresa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ee1a56f-8c3a-4428-96bd-4789818e9c4b", + "Order": 1, + "DeletedAt": null, + "EntryId": "75740a33-1e68-4c23-9086-8b6b3884a1b3", + "Definition": {}, + "Gloss": { + "en": "bring", + "pt": "trazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1ccca91a-eaa6-4d9b-a7f0-c24810c1c818", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0ee1a56f-8c3a-4428-96bd-4789818e9c4b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5e222505-b346-48b6-97a1-5c471d853903", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwerezer" + }, + "CitationForm": { + "seh": "bwerezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c854bbb5-a15d-4fb3-a044-712160f19483", + "Order": 1, + "DeletedAt": null, + "EntryId": "5e222505-b346-48b6-97a1-5c471d853903", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to respond in kind", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "react", + "pt": "reagir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8d231a11-9085-4b62-994b-240f274bc530", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c854bbb5-a15d-4fb3-a044-712160f19483", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "579f89fd-3f9d-4bec-8bcb-b0c9334ea25e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwezer" + }, + "CitationForm": { + "seh": "bwezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7d4c55b8-b905-48ab-b1d5-063cb01ff3fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "579f89fd-3f9d-4bec-8bcb-b0c9334ea25e", + "Definition": {}, + "Gloss": { + "en": "give back", + "pt": "devolver" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ba8201a-742d-4bb6-9b36-240349fd4710", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7d4c55b8-b905-48ab-b1d5-063cb01ff3fb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c7c36ff-b229-4143-afe3-d5f721823651", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzal" + }, + "CitationForm": { + "seh": "bzala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b5b7814e-a85d-4825-9ef0-5f4426d64031", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c7c36ff-b229-4143-afe3-d5f721823651", + "Definition": {}, + "Gloss": { + "en": "sow seeds", + "pt": "semear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7fda3f12-bacb-4e81-9507-4989fbd01f2d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b5b7814e-a85d-4825-9ef0-5f4426d64031", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b51ce7b-2f84-4afc-81be-ca4ed5f94f57", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e163b20d-9a33-4870-bae4-eccbff6fb1ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b51ce7b-2f84-4afc-81be-ca4ed5f94f57", + "Definition": {}, + "Gloss": { + "en": "direita", + "pt": "esqueda" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8f9ec27-abd3-4bc2-a26f-0945b49de84f", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzimb" + }, + "CitationForm": { + "seh": "bzimba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb256afd-ba11-4319-817d-e4932fb704c3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8f9ec27-abd3-4bc2-a26f-0945b49de84f", + "Definition": {}, + "Gloss": { + "en": "swell", + "pt": "inchar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "11e8661c-a07e-4a3f-8f2d-2ea3d7494501", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "fb256afd-ba11-4319-817d-e4932fb704c3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f67e332a-b296-4967-ace3-5583ce66e95b", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzwal" + }, + "CitationForm": { + "seh": "bzwala" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b84dc935-feaf-4489-9434-1da83cfb5e7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "f67e332a-b296-4967-ace3-5583ce66e95b", + "Definition": {}, + "Gloss": { + "en": "plant", + "pt": "semear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db997605-c9e0-4876-bc61-9bd5ed62c9b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5bfee4a9-8bf1-4d74-a3e6-98163225cb42", + "Order": 1, + "DeletedAt": null, + "EntryId": "db997605-c9e0-4876-bc61-9bd5ed62c9b1", + "Definition": {}, + "Gloss": { + "en": "thing", + "pt": "coisa" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bd7068ce-9d4f-4696-9efc-e66983553492", + "DeletedAt": null, + "LexemeForm": { + "seh": "cabanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b84f1059-e013-43da-b6e8-6690c6220dee", + "Order": 1, + "DeletedAt": null, + "EntryId": "bd7068ce-9d4f-4696-9efc-e66983553492", + "Definition": { + "en": { + "Spans": [ + { + "Text": "corn beer", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cerveja de milho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "beer", + "pt": "cerveja" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e68bb1cb-a213-484e-8cb8-ff80a7bf0c62", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cabanga wadzipa wadidi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "cerveja forte boa", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "b84f1059-e013-43da-b6e8-6690c6220dee", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e339b423-2cd4-4394-b8be-bfc968e3d587", + "DeletedAt": null, + "LexemeForm": { + "seh": "adu" + }, + "CitationForm": { + "seh": "cadu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c0b81ea-659c-4336-8907-d943baa454af", + "Order": 1, + "DeletedAt": null, + "EntryId": "e339b423-2cd4-4394-b8be-bfc968e3d587", + "Definition": {}, + "Gloss": { + "en": "flea", + "pt": "pulga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ecc39bc2-6336-48ca-be46-cf5e49a3c267", + "Name": { + "en": "Insect" + }, + "Code": "1.6.1.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fde8315e-49f0-4950-8c3c-289f189bd261", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1c0b81ea-659c-4336-8907-d943baa454af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c981801-97f8-4d60-914d-540bf97baabf", + "DeletedAt": null, + "LexemeForm": { + "seh": "aka" + }, + "CitationForm": { + "seh": "caka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0e4f6dec-8624-4d51-93b4-f3b613a4872e", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c981801-97f8-4d60-914d-540bf97baabf", + "Definition": {}, + "Gloss": { + "en": "year", + "pt": "ano" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf2b3aa6-0ead-4450-8ddc-4b4bfefc14d2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; George; sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "0e4f6dec-8624-4d51-93b4-f3b613a4872e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "613e4d2d-9eaa-4b8e-932e-491e98366048", + "DeletedAt": null, + "LexemeForm": { + "seh": "akudya" + }, + "CitationForm": { + "seh": "cakudya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "46b94bc1-614c-4a32-9be0-3f8fc2a78fec", + "Order": 1, + "DeletedAt": null, + "EntryId": "613e4d2d-9eaa-4b8e-932e-491e98366048", + "Definition": {}, + "Gloss": { + "en": "food", + "pt": "comida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5", + "Name": { + "en": "Food" + }, + "Code": "5.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3b1a645c-87b0-4a38-85b3-232e51856cb5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "46b94bc1-614c-4a32-9be0-3f8fc2a78fec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57571972-5e4d-400a-b594-04ade6b11e81", + "DeletedAt": null, + "LexemeForm": { + "seh": "akugawika" + }, + "CitationForm": { + "seh": "cakugawika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "40de284d-f04e-40c3-8546-aa7b293e3b75", + "Order": 1, + "DeletedAt": null, + "EntryId": "57571972-5e4d-400a-b594-04ade6b11e81", + "Definition": {}, + "Gloss": { + "en": "dividable", + "pt": "dividivel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7cfbedf3-8864-45bc-9613-56de7bbacc4b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "40de284d-f04e-40c3-8546-aa7b293e3b75", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3ef6f432-c3bc-4615-87e0-dbcf57411452", + "DeletedAt": null, + "LexemeForm": { + "seh": "akutoma" + }, + "CitationForm": { + "seh": "cakutoma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7c838f3f-0518-4cc1-9468-43df99c9b9dc", + "Order": 1, + "DeletedAt": null, + "EntryId": "3ef6f432-c3bc-4615-87e0-dbcf57411452", + "Definition": {}, + "Gloss": { + "en": "first", + "pt": "premeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c9227e9d-61c2-41a2-99ae-78c1dcd19565", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7c838f3f-0518-4cc1-9468-43df99c9b9dc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd296946-5721-4e1b-8cd3-b69a5c3c7eec", + "DeletedAt": null, + "LexemeForm": { + "seh": "ala" + }, + "CitationForm": { + "seh": "cala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "876f34e6-2f52-4365-8539-e22ae469c701", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd296946-5721-4e1b-8cd3-b69a5c3c7eec", + "Definition": {}, + "Gloss": { + "en": "finger", + "pt": "dedo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e5ea0cf-0b0f-4d6c-b549-222ea0eec8fd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "876f34e6-2f52-4365-8539-e22ae469c701", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04fea218-fef5-4df3-b2d4-da1198dd16dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "cap" + }, + "CitationForm": { + "seh": "capa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bcf0c7ea-17ee-4699-b6bc-d6cbd59d775d", + "Order": 1, + "DeletedAt": null, + "EntryId": "04fea218-fef5-4df3-b2d4-da1198dd16dd", + "Definition": {}, + "Gloss": { + "en": "row", + "pt": "remar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5698015-209c-4ef4-9dbb-21b859fe0fd0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:, George Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bcf0c7ea-17ee-4699-b6bc-d6cbd59d775d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e24c479a-3d15-4cf4-97b6-139e766365ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "aso" + }, + "CitationForm": { + "seh": "caso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "103e9e1d-c8fa-40ad-9854-16961c1966cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "e24c479a-3d15-4cf4-97b6-139e766365ab", + "Definition": { + "en": { + "Spans": [ + { + "Text": "elephant trunk", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tronco de elefante", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trunk", + "pt": "tronco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1eeb1fcf-49da-4615-ab03-6a4900aae601", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "103e9e1d-c8fa-40ad-9854-16961c1966cb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b70f66e-e9e0-42c5-929f-2c046c74d1b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "ce" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "231e0ad6-ca31-4eaf-84b9-116b6791e7c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b70f66e-e9e0-42c5-929f-2c046c74d1b2", + "Definition": {}, + "Gloss": { + "en": "his", + "pt": "d\u0027ele" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b96816ec-5e30-4ac4-9f9c-5832cded8a28", + "DeletedAt": null, + "LexemeForm": { + "seh": "edza" + }, + "CitationForm": { + "seh": "cedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9599c2f-03c9-4b27-ade3-844499a60168", + "Order": 1, + "DeletedAt": null, + "EntryId": "b96816ec-5e30-4ac4-9f9c-5832cded8a28", + "Definition": {}, + "Gloss": { + "en": "in the light", + "pt": "na luz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "228dcdc4-be8d-4bf9-b141-394c77268648", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Cidima na cedza", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Darkness and light", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Escuridao e luz", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f9599c2f-03c9-4b27-ade3-844499a60168", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d26a9cc7-6cf2-4fa2-badf-bc98a771ba07", + "DeletedAt": null, + "LexemeForm": { + "seh": "ceker" + }, + "CitationForm": { + "seh": "cekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5e1535f3-c85a-493a-b58e-34e08ff7a3dc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d26a9cc7-6cf2-4fa2-badf-bc98a771ba07", + "Definition": {}, + "Gloss": { + "en": "cut", + "pt": "cortar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f2b16755-5b81-4403-82c3-b7924a56bfab", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5e1535f3-c85a-493a-b58e-34e08ff7a3dc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96750d61-22b6-4ff0-a0de-b483eb866109", + "DeletedAt": null, + "LexemeForm": { + "seh": "cemer" + }, + "CitationForm": { + "seh": "cemera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "262c9ce4-ce33-4332-8ad0-5d93180cf438", + "Order": 1, + "DeletedAt": null, + "EntryId": "96750d61-22b6-4ff0-a0de-b483eb866109", + "Definition": {}, + "Gloss": { + "en": "call", + "pt": "chamar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c554af2-a283-4220-8789-b5bbc99a1fbe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "262c9ce4-ce33-4332-8ad0-5d93180cf438", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72a67175-6d5f-4966-b5b2-f7163e776984", + "DeletedAt": null, + "LexemeForm": { + "seh": "cen" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7dc211fe-5eac-4381-97fa-e8d1a0a8d674", + "Order": 1, + "DeletedAt": null, + "EntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "Definition": { + "en": { + "Spans": [ + { + "Text": "white, pure, holy", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "blanco, puro, santo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "white", + "pt": "blanco" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "7adf468c-b93a-4b04-8af6-4c691122a4eb", + "Name": { + "en": "White" + }, + "Code": "8.3.3.3.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "7d9e442d-044c-4766-8dad-435c6610a449", + "Order": 2, + "DeletedAt": null, + "EntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "Definition": { + "en": { + "Spans": [ + { + "Text": "pure, holy, having the character of God", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "puro, santo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "pure", + "pt": "puro" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "83adeb9d-c0be-4073-894d-913014420280", + "Name": { + "en": "Good" + }, + "Code": "8.3.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "7e0308a3-d18a-4aa9-b19e-f89607514106", + "MaybeId": "7e0308a3-d18a-4aa9-b19e-f89607514106", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "ComplexFormHeadword": "uceni", + "ComponentEntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "ComponentSenseId": null, + "ComponentHeadword": "cen" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1943da94-0157-475f-9309-3311de1fcd6c", + "DeletedAt": null, + "LexemeForm": { + "seh": "cenjedz" + }, + "CitationForm": { + "seh": "cenjedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "daf3cc27-166e-4225-b673-0a7d9b691574", + "Order": 1, + "DeletedAt": null, + "EntryId": "1943da94-0157-475f-9309-3311de1fcd6c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "warn severely", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "informar anticipademente aquele que vai acontecer", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "notify", + "pt": "advirtir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2650825b-0c92-48cb-afdd-150dcf66a07d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "daf3cc27-166e-4225-b673-0a7d9b691574", + "DeletedAt": null + } + ] + }, + { + "Id": "6211b4a9-91ec-4828-9539-387ea6645bae", + "Order": 2, + "DeletedAt": null, + "EntryId": "1943da94-0157-475f-9309-3311de1fcd6c", + "Definition": {}, + "Gloss": { + "en": "alert", + "pt": "alertar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09687988-afc0-4df4-aa57-6ab1cd8678db", + "DeletedAt": null, + "LexemeForm": { + "seh": "cenjer" + }, + "CitationForm": { + "seh": "cenjera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "47c21100-95f6-4f45-ac84-3f1472109473", + "Order": 1, + "DeletedAt": null, + "EntryId": "09687988-afc0-4df4-aa57-6ab1cd8678db", + "Definition": {}, + "Gloss": { + "en": "sly", + "pt": "esperto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a7f7d4c2-761e-4777-b505-900fd2f7637c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "47c21100-95f6-4f45-ac84-3f1472109473", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ac05a156-d0e3-4acf-8b72-9248585699e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "cep" + }, + "CitationForm": { + "seh": "cepa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "182613e5-19d1-40b2-a15f-b69debd53e79", + "Order": 1, + "DeletedAt": null, + "EntryId": "ac05a156-d0e3-4acf-8b72-9248585699e3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "is a small amount", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "e\u0301 pouco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "is little", + "pt": "e\u0301 pouco" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b5238fd3-bf93-49f8-b31a-0510d77b4b2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "cepes" + }, + "CitationForm": { + "seh": "cepesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6bacbaec-0a03-4a7d-91da-13c635e8db28", + "Order": 1, + "DeletedAt": null, + "EntryId": "b5238fd3-bf93-49f8-b31a-0510d77b4b2c", + "Definition": {}, + "Gloss": { + "en": "make smaller", + "pt": "diminuir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f536fee5-6293-4af3-9e03-daaf9528cdb2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6bacbaec-0a03-4a7d-91da-13c635e8db28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "320782c0-3123-4d84-8c31-b1fde37ce4e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "cepesek" + }, + "CitationForm": { + "seh": "cepeseka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22e9311b-db4b-4067-b2a7-3dfbfc153559", + "Order": 1, + "DeletedAt": null, + "EntryId": "320782c0-3123-4d84-8c31-b1fde37ce4e0", + "Definition": {}, + "Gloss": { + "en": "humble-oneself", + "pt": "humilar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "364cf938-7db8-4ce7-83d8-6b8f4c5b0a31", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "22e9311b-db4b-4067-b2a7-3dfbfc153559", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "615658eb-1b32-40cc-b903-4cc1ca2c6f90", + "DeletedAt": null, + "LexemeForm": { + "seh": "cetum" + }, + "CitationForm": { + "seh": "cetuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdb94fca-9c10-4bd6-9980-74048048df01", + "Order": 1, + "DeletedAt": null, + "EntryId": "615658eb-1b32-40cc-b903-4cc1ca2c6f90", + "Definition": {}, + "Gloss": { + "en": "making lighning", + "pt": "relampejar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a34a8e16-1b48-4838-bf07-9a2fcc5b59ad", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "bdb94fca-9c10-4bd6-9980-74048048df01", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "20131126-9f1c-45fb-b2e6-39269cfffda7", + "DeletedAt": null, + "LexemeForm": { + "seh": "cez" + }, + "CitationForm": { + "seh": "ceza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f78f10bb-ac27-43cb-83f7-334e218b8fe1", + "Order": 1, + "DeletedAt": null, + "EntryId": "20131126-9f1c-45fb-b2e6-39269cfffda7", + "Definition": {}, + "Gloss": { + "en": "converse", + "pt": "conversar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e38e8e82-c346-4204-96e9-44b7e3d14bd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "checa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e3df798-e0fc-4e46-9c1d-8f2e0b09ff12", + "Order": 1, + "DeletedAt": null, + "EntryId": "e38e8e82-c346-4204-96e9-44b7e3d14bd8", + "Definition": {}, + "Gloss": { + "en": "sand", + "pt": "areia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bae858f6-1224-4d69-9685-1c14ac7f8500", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1e3df798-e0fc-4e46-9c1d-8f2e0b09ff12", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c38267b9-fc32-4c5b-a4ce-066cfbd08d77", + "DeletedAt": null, + "LexemeForm": { + "seh": "chek" + }, + "CitationForm": { + "seh": "cheka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "28d53a45-4107-441d-9931-5d878d16844a", + "Order": 1, + "DeletedAt": null, + "EntryId": "c38267b9-fc32-4c5b-a4ce-066cfbd08d77", + "Definition": {}, + "Gloss": { + "en": "plant", + "pt": "plantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "834a7732-a145-4de4-9a65-c5076fa974e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "28d53a45-4107-441d-9931-5d878d16844a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d70ccb3d-389c-4892-8fb3-f4b5337439a1", + "DeletedAt": null, + "LexemeForm": { + "seh": "cheker" + }, + "CitationForm": { + "seh": "chekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b66ba0ba-bf19-4f63-a1e1-aed0ad7f113a", + "Order": 1, + "DeletedAt": null, + "EntryId": "d70ccb3d-389c-4892-8fb3-f4b5337439a1", + "Definition": {}, + "Gloss": { + "en": "transplant", + "pt": "transplantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00b7d7bf-93ae-44ec-8ca2-327873541433", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b66ba0ba-bf19-4f63-a1e1-aed0ad7f113a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "268a7a80-1dd1-444b-9dd1-44829d9a0aa5", + "DeletedAt": null, + "LexemeForm": { + "seh": "chereng" + }, + "CitationForm": { + "seh": "cherenga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2be15d9d-3a82-4367-94b8-ccea9ba80bea", + "Order": 1, + "DeletedAt": null, + "EntryId": "268a7a80-1dd1-444b-9dd1-44829d9a0aa5", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ser pobre , ser sem possibilidades", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "be poor", + "pt": "ser pobre" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "07f3c5b0-f1ed-4f20-b85b-9bd5852d7ef2", + "DeletedAt": null, + "LexemeForm": { + "seh": "chikwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21facabb-a7f9-4f41-9fe3-8e6132dcbb66", + "Order": 1, + "DeletedAt": null, + "EntryId": "07f3c5b0-f1ed-4f20-b85b-9bd5852d7ef2", + "Definition": {}, + "Gloss": { + "en": "support", + "pt": "suporte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1eee3e09-e8b4-4212-baa2-56b142ec6780", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "21facabb-a7f9-4f41-9fe3-8e6132dcbb66", + "DeletedAt": null + } + ] + }, + { + "Id": "c4d03434-2267-4f9b-af23-85a1b3c4795d", + "Order": 2, + "DeletedAt": null, + "EntryId": "07f3c5b0-f1ed-4f20-b85b-9bd5852d7ef2", + "Definition": {}, + "Gloss": { + "en": "column", + "pt": "coluna" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7191a861-3eda-4796-aa6b-6f39d03faf27", + "DeletedAt": null, + "LexemeForm": { + "seh": "ching" + }, + "CitationForm": { + "seh": "chinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "37ba838d-656a-4819-a527-ffea32a2a288", + "Order": 1, + "DeletedAt": null, + "EntryId": "7191a861-3eda-4796-aa6b-6f39d03faf27", + "Definition": {}, + "Gloss": { + "en": "take revenge", + "pt": "vingar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "934bcebd-32f3-4a80-8e1b-f66070f557ad", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "37ba838d-656a-4819-a527-ffea32a2a288", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f020aa46-e8bd-4151-ab5b-1d404ec71c47", + "DeletedAt": null, + "LexemeForm": { + "seh": "chinyuk" + }, + "CitationForm": { + "seh": "chinyuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fa2dec63-26d6-4f6a-89f2-185b005d3b27", + "Order": 1, + "DeletedAt": null, + "EntryId": "f020aa46-e8bd-4151-ab5b-1d404ec71c47", + "Definition": {}, + "Gloss": { + "en": "repent", + "pt": "arrepender-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "50e69e7f-2f6f-430f-a5ff-613f389a0317", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "fa2dec63-26d6-4f6a-89f2-185b005d3b27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0a612a5-81a5-4807-9f49-ac924cb5718e", + "DeletedAt": null, + "LexemeForm": { + "seh": "chiru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e2906ba-2068-4582-b306-9609e69a003e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0a612a5-81a5-4807-9f49-ac924cb5718e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "house rat only", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "rato de casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rat", + "pt": "rato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "66d09465-56c7-4037-a52c-588a613c1656", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Orth; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "8e2906ba-2068-4582-b306-9609e69a003e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c70fedb1-bcba-4036-88c9-e11e8fbbfbd9", + "DeletedAt": null, + "LexemeForm": { + "seh": "chit" + }, + "CitationForm": { + "seh": "chita" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "108cb187-a924-40c4-b5ea-fb903dc52593", + "Order": 1, + "DeletedAt": null, + "EntryId": "c70fedb1-bcba-4036-88c9-e11e8fbbfbd9", + "Definition": {}, + "Gloss": { + "en": "descend", + "pt": "descer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f390a2d0-67a4-46f9-9e0e-09ff3190a27f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "108cb187-a924-40c4-b5ea-fb903dc52593", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e9fbb1fa-f8c6-456c-aaf8-d521d05c0d65", + "DeletedAt": null, + "LexemeForm": { + "seh": "chith" + }, + "CitationForm": { + "seh": "chitha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e6857eda-73f7-44a1-94a1-94582543cc79", + "Order": 1, + "DeletedAt": null, + "EntryId": "e9fbb1fa-f8c6-456c-aaf8-d521d05c0d65", + "Definition": {}, + "Gloss": { + "en": "come down", + "pt": "descer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d7a9c684-23d1-4aff-92e1-9371e389d920", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e6857eda-73f7-44a1-94a1-94582543cc79", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db5d0299-6574-4917-92a5-60febd57a16e", + "DeletedAt": null, + "LexemeForm": { + "seh": "chitichiti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8ba0704-0642-4800-9cd7-6b4aaf4c8878", + "Order": 1, + "DeletedAt": null, + "EntryId": "db5d0299-6574-4917-92a5-60febd57a16e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "from 22 hours to 2 hours", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "midnight", + "pt": "alto noite" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "98578e9c-cea7-4fd3-89f8-6299c93827f7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c8ba0704-0642-4800-9cd7-6b4aaf4c8878", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42f95c0d-3810-457e-bd51-3c3cad5577e1", + "DeletedAt": null, + "LexemeForm": { + "seh": "choco" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3bbc4b24-cab8-4bc2-9746-6781d12d2cd5", + "Order": 1, + "DeletedAt": null, + "EntryId": "42f95c0d-3810-457e-bd51-3c3cad5577e1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cardinal bird (red bird w/ form like a sparrow)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cardinal bird", + "pt": "passaro tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7f0851cc-5438-45a6-a45c-dc4b847288ee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "3bbc4b24-cab8-4bc2-9746-6781d12d2cd5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d277f2b0-d5be-4ba5-bc75-2337ddce0307", + "DeletedAt": null, + "LexemeForm": { + "seh": "chodol" + }, + "CitationForm": { + "seh": "chodola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7d6aba3e-e816-42e1-89dc-d60080422343", + "Order": 1, + "DeletedAt": null, + "EntryId": "d277f2b0-d5be-4ba5-bc75-2337ddce0307", + "Definition": {}, + "Gloss": { + "en": "pick", + "pt": "tirar fruta" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23e567c0-5d74-4379-a49f-7709107c6436", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7d6aba3e-e816-42e1-89dc-d60080422343", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d9974a61-1b77-429e-848f-57504d035ff5", + "DeletedAt": null, + "LexemeForm": { + "seh": "chunyuk" + }, + "CitationForm": { + "seh": "chunyuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01ee130a-b3dc-4f84-b7eb-669c3a06cf67", + "Order": 1, + "DeletedAt": null, + "EntryId": "d9974a61-1b77-429e-848f-57504d035ff5", + "Definition": {}, + "Gloss": { + "en": "repent", + "pt": "arrepender-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f184278f-8f44-4035-89dd-196fcd4eca30", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "01ee130a-b3dc-4f84-b7eb-669c3a06cf67", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1378eabe-b763-462c-b1bb-10b431325426", + "DeletedAt": null, + "LexemeForm": { + "seh": "ci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "f82e5d68-7c90-4a5b-974d-1fc2381964cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "1378eabe-b763-462c-b1bb-10b431325426", + "Definition": { + "en": { + "Spans": [ + { + "Text": "diminuative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "diminuativo or a new and unknown thing", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0d5f9eff-a863-426f-a1e6-06fd1918ddc4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cindzinda", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "small city", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cidade pequeno", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "f82e5d68-7c90-4a5b-974d-1fc2381964cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "fb19e30f-b594-491f-bf4b-bb6f244eb325", + "Order": 1, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3abf789a-e5cc-4214-a8ff-d74a3377be74", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fb19e30f-b594-491f-bf4b-bb6f244eb325", + "DeletedAt": null + } + ] + }, + { + "Id": "d7dc87e1-9a7d-4537-bb8d-bf93cb2bbcff", + "Order": 2, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "151e4c76-30e4-4eed-b474-2d438c278906", + "Order": 3, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ca12b919-bc83-4894-b6e3-3089415ff852", + "Order": 4, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bcddb80e-89a3-496a-ad39-633b76392dcb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "808aeefc-e04c-4512-b883-56c9955c4ea6", + "Order": 1, + "DeletedAt": null, + "EntryId": "bcddb80e-89a3-496a-ad39-633b76392dcb", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7214e40-f6dc-4a7f-a97e-c87d875dc12b", + "DeletedAt": null, + "LexemeForm": { + "seh": "bisobiso" + }, + "CitationForm": { + "seh": "cibisobiso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d0b16565-d636-4342-9e70-fd81bf5cd259", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7214e40-f6dc-4a7f-a97e-c87d875dc12b", + "Definition": {}, + "Gloss": { + "en": "secret", + "pt": "segredo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de00eeed-5f6c-458b-985a-1d2d1ed5bad8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d0b16565-d636-4342-9e70-fd81bf5cd259", + "DeletedAt": null + } + ] + }, + { + "Id": "51f20902-34e8-41f0-bab4-72173fecea6f", + "Order": 2, + "DeletedAt": null, + "EntryId": "f7214e40-f6dc-4a7f-a97e-c87d875dc12b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hide and seek", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "jogo de escondidas", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "game", + "pt": "jogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0006f482-a078-4cef-9c5a-8bd35b53cf72", + "DeletedAt": null, + "LexemeForm": { + "seh": "bubu bubu" + }, + "CitationForm": { + "seh": "cibubu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07086e7d-dfcc-4f4e-b0d6-0be7a7943f97", + "Order": 1, + "DeletedAt": null, + "EntryId": "0006f482-a078-4cef-9c5a-8bd35b53cf72", + "Definition": {}, + "Gloss": { + "en": "stammering", + "pt": "gaguez" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c2dbe83a-d638-45ac-a6d5-5f041b9dde71", + "Name": { + "en": "Disabled" + }, + "Code": "2.5.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "03dfb70c-98ae-49b1-810e-9e0482e4837b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "07086e7d-dfcc-4f4e-b0d6-0be7a7943f97", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c81e352-3f32-4ff2-b1e6-21f673e578d8", + "DeletedAt": null, + "LexemeForm": { + "seh": "bverano" + }, + "CitationForm": { + "seh": "cibverano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "455056b1-a9dc-441e-9fce-95ce0c058bce", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c81e352-3f32-4ff2-b1e6-21f673e578d8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "plan, contract, covenant", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "harmonia, alianc\u0327a, entendemento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "contract", + "pt": "harmonia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cfa20cd4-b550-4869-8205-e00d1a372bd7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "455056b1-a9dc-441e-9fce-95ce0c058bce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0439e9d1-7c48-4296-8ed1-9abb000b9268", + "DeletedAt": null, + "LexemeForm": { + "seh": "dade" + }, + "CitationForm": { + "seh": "cidade" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "938cda59-6ed4-482d-a5fb-23a3bc2d6f0c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0439e9d1-7c48-4296-8ed1-9abb000b9268", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a rack for trying fish", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "drying rack", + "pt": "secagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c300e47d-58d0-4c38-8999-4b20c3bf6d19", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "938cda59-6ed4-482d-a5fb-23a3bc2d6f0c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08de3c15-f03f-4d84-a2f0-f97fe7f3877d", + "DeletedAt": null, + "LexemeForm": { + "seh": "dima" + }, + "CitationForm": { + "seh": "cidima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b9bb5f59-f628-4b10-a849-f98804e37846", + "Order": 1, + "DeletedAt": null, + "EntryId": "08de3c15-f03f-4d84-a2f0-f97fe7f3877d", + "Definition": {}, + "Gloss": { + "en": "darkness", + "pt": "escurida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4b1977ca-dc85-49de-b583-88ca24fea7a5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b9bb5f59-f628-4b10-a849-f98804e37846", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fd4e75a-7f77-4ada-98e4-da4b8c32ca1b", + "DeletedAt": null, + "LexemeForm": { + "seh": "dumbiriro" + }, + "CitationForm": { + "seh": "cidumbiriro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ebe4d9f3-1e6d-40b8-be42-c47e67170f86", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fd4e75a-7f77-4ada-98e4-da4b8c32ca1b", + "Definition": {}, + "Gloss": { + "en": "promise", + "pt": "promessa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2bb655f6-4c24-4c23-9b8a-20a78675945e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ebe4d9f3-1e6d-40b8-be42-c47e67170f86", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fb2e03b-621f-44b3-b14a-784abbe06f4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzindikiro" + }, + "CitationForm": { + "seh": "cidzindikiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1dba9c3-0682-4507-a6b7-bc983f25197f", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fb2e03b-621f-44b3-b14a-784abbe06f4f", + "Definition": {}, + "Gloss": { + "en": "sign", + "pt": "sinal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a5230e85-2372-4869-ac18-3dbe6a77015e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c1dba9c3-0682-4507-a6b7-bc983f25197f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af290488-019e-459d-a94e-8c98e5510022", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzo" + }, + "CitationForm": { + "seh": "cidzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4135e832-8813-4ab3-a07a-2e4266735271", + "Order": 1, + "DeletedAt": null, + "EntryId": "af290488-019e-459d-a94e-8c98e5510022", + "Definition": {}, + "Gloss": { + "en": "power", + "pt": "poder" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f9e45b2e-c654-40e7-bc08-d4517d8cbb92", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4135e832-8813-4ab3-a07a-2e4266735271", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa44c7f6-f596-417f-8c95-13bd62e2dab4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu-dzulu" + }, + "CitationForm": { + "seh": "cidzulu-dzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc5334da-90ac-479b-a827-7e50b0dfed82", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa44c7f6-f596-417f-8c95-13bd62e2dab4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "floating above with space between", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "above", + "pt": "por cima" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ff466d3d-f890-4628-9adb-be795bed657c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cc5334da-90ac-479b-a827-7e50b0dfed82", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75271c68-093a-43ce-8a0a-d3929d2a7c7a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fu" + }, + "CitationForm": { + "seh": "cifu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d8d36c69-d082-4474-a85d-b3cd6a549364", + "Order": 1, + "DeletedAt": null, + "EntryId": "75271c68-093a-43ce-8a0a-d3929d2a7c7a", + "Definition": {}, + "Gloss": { + "en": "stomach", + "pt": "esto\u0302mago" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4630dd7a-2efb-448d-9063-e18ffadf19ba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d8d36c69-d082-4474-a85d-b3cd6a549364", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d014b34-6f5e-4861-b5e3-a9c09b2690f8", + "DeletedAt": null, + "LexemeForm": { + "seh": "cifupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bdb18775-6b18-48e5-9abc-dbb1739ef993", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d014b34-6f5e-4861-b5e3-a9c09b2690f8", + "Definition": {}, + "Gloss": { + "en": "close to", + "pt": "perto" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef129f0f-dc62-42b6-9e90-83bc0b216d06", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuwo" + }, + "CitationForm": { + "seh": "cifuwo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2446f241-0aea-43cb-8f94-df126030df9c", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef129f0f-dc62-42b6-9e90-83bc0b216d06", + "Definition": { + "en": { + "Spans": [ + { + "Text": "domestic animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "animal domesticos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "animal", + "pt": "animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ac55f9e-9c88-4fa9-8b36-4c0bd8227c2b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2446f241-0aea-43cb-8f94-df126030df9c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91fc9a4e-7558-4f87-aaae-d7a6a55c36de", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuyo" + }, + "CitationForm": { + "seh": "cifuyo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a0dd2817-6a0c-4123-8fd5-0e92d3e3f298", + "Order": 1, + "DeletedAt": null, + "EntryId": "91fc9a4e-7558-4f87-aaae-d7a6a55c36de", + "Definition": {}, + "Gloss": { + "en": "livestock", + "pt": "cria" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "957eefd2-3bfb-4872-b52a-73aaefc2f245", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a0dd2817-6a0c-4123-8fd5-0e92d3e3f298", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "54bcd96a-4b3c-46ef-aba4-9b92a095d749", + "DeletedAt": null, + "LexemeForm": { + "seh": "gumbwa" + }, + "CitationForm": { + "seh": "cigumbwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab896c4e-a906-4937-ac67-898b7f8cdff7", + "Order": 1, + "DeletedAt": null, + "EntryId": "54bcd96a-4b3c-46ef-aba4-9b92a095d749", + "Definition": { + "en": { + "Spans": [ + { + "Text": "trap for catching birds alive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "armadilha para apanhar passaros vivo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trap", + "pt": "armadilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "196f81d0-6a1a-4cc0-936a-367423ff485c", + "Name": { + "en": "Trap" + }, + "Code": "6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e0992cd-c04c-4b55-beab-6b0a3c98a994", + "Name": { + "en": "Hunting birds" + }, + "Code": "6.4.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "60300565-563d-4d17-b7d0-20d3105547fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ab896c4e-a906-4937-ac67-898b7f8cdff7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e64d3bfe-bbf8-4624-b213-bfb17e47316f", + "DeletedAt": null, + "LexemeForm": { + "seh": "cikairi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7f172dfe-8c32-4b4e-96a0-e53094aa3cae", + "Order": 1, + "DeletedAt": null, + "EntryId": "e64d3bfe-bbf8-4624-b213-bfb17e47316f", + "Definition": {}, + "Gloss": { + "en": "second", + "pt": "segunda" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7ab16ccc-f41e-4a3c-8d45-82dc2d71c1cb", + "DeletedAt": null, + "LexemeForm": { + "seh": "kalango" + }, + "CitationForm": { + "seh": "cikalango" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9b5a296-5d59-437e-a2ee-29c9a8b0680e", + "Order": 1, + "DeletedAt": null, + "EntryId": "7ab16ccc-f41e-4a3c-8d45-82dc2d71c1cb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "clay pot", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "panela de barro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "pot", + "pt": "barro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4824c2f8-3421-40ee-a5f2-a192f08da57e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "f9b5a296-5d59-437e-a2ee-29c9a8b0680e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "929d9057-b854-4c54-99c3-aca9d037a0a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazi" + }, + "CitationForm": { + "seh": "cikazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "33af2390-171d-4ea1-9aef-695eb3cb38f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "929d9057-b854-4c54-99c3-aca9d037a0a4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "manners proper to women", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "costumes do mulhers", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "women\u0027s ways", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ea621e0-ed73-4b9a-9448-bb7257a819f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "33af2390-171d-4ea1-9aef-695eb3cb38f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b2943039-1383-4604-8b58-3323a5f69270", + "DeletedAt": null, + "LexemeForm": { + "seh": "khulupiriro" + }, + "CitationForm": { + "seh": "cikhulupiriro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c947e1f9-14e9-4598-96de-2b3bb20331fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "b2943039-1383-4604-8b58-3323a5f69270", + "Definition": {}, + "Gloss": { + "en": "faith", + "pt": "fe\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ca5a8a21-6394-4948-a0e9-d2415d42deec", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c947e1f9-14e9-4598-96de-2b3bb20331fa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7e9f5b5-7c2c-4542-95cc-8965159dff84", + "DeletedAt": null, + "LexemeForm": { + "seh": "khumbi" + }, + "CitationForm": { + "seh": "cikhumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "862251ea-bcf4-4e60-a115-6aeace6a308e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7e9f5b5-7c2c-4542-95cc-8965159dff84", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a small temporary hut, lean-to", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hut", + "pt": "casota" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f10751c9-9cef-483b-b826-a1c5bf4514fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "862251ea-bcf4-4e60-a115-6aeace6a308e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "faab2875-df3f-445e-9634-7fe56767b2e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "cikwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c868028-605f-4f16-a916-4f6861f296cf", + "Order": 1, + "DeletedAt": null, + "EntryId": "faab2875-df3f-445e-9634-7fe56767b2e3", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "celeiro, grande cesta de palha que guarda um tipo de comida, colocado dentro da casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "food store", + "pt": "celeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5", + "Name": { + "en": "Food" + }, + "Code": "5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd436263-30a3-498c-93f6-3d5682f7f7c0", + "Name": { + "en": "Commerce" + }, + "Code": "6.9.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "9cf174c8-1d53-4736-9eb3-eb3a82a3d927", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0c868028-605f-4f16-a916-4f6861f296cf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0b20cfc-a93e-46f5-b9d5-5c68a48f7460", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwi" + }, + "CitationForm": { + "seh": "cikwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c482d897-19bc-4cf4-bb82-46621906e181", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0b20cfc-a93e-46f5-b9d5-5c68a48f7460", + "Definition": {}, + "Gloss": { + "en": "thousand", + "pt": "mil" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "475eefae-b5e5-4d15-8459-553744124fee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c482d897-19bc-4cf4-bb82-46621906e181", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "DeletedAt": null, + "LexemeForm": { + "seh": "maso-maso" + }, + "CitationForm": { + "seh": "cimaso-maso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "598cba57-6ea3-47b7-8545-7333e7080211", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "Definition": {}, + "Gloss": { + "en": "want all", + "pt": "quer tudo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b543095b-fe00-4b90-9bfc-d244f5ab05d3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "598cba57-6ea3-47b7-8545-7333e7080211", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "c222ef71-2a59-4360-a62b-61a036491166", + "MaybeId": "c222ef71-2a59-4360-a62b-61a036491166", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "ComplexFormHeadword": "cimaso-maso", + "ComponentEntryId": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "ComponentSenseId": null, + "ComponentHeadword": "diso" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aee9ca97-646b-439b-bba9-605b94e9919c", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbalame" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f2111a87-c2b3-4aba-85c5-6f988e989c56", + "Order": 1, + "DeletedAt": null, + "EntryId": "aee9ca97-646b-439b-bba9-605b94e9919c", + "Definition": {}, + "Gloss": { + "en": "small bird", + "pt": "passarinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a939fc75-bc5b-4915-b5b5-baf66791d9b4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f2111a87-c2b3-4aba-85c5-6f988e989c56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d23a7e2-3e64-4843-bc4e-260c8f272ccc", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbanjiri" + }, + "CitationForm": { + "seh": "cimbanjiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b608d3ff-420b-43b8-b839-a9ef23597f28", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d23a7e2-3e64-4843-bc4e-260c8f272ccc", + "Definition": {}, + "Gloss": { + "en": "grass", + "pt": "relva" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05256871-a155-46e0-b126-9dbfe58554c6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b608d3ff-420b-43b8-b839-a9ef23597f28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "083f3256-2345-4d2c-aea9-f6980dd66fee", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbiz" + }, + "CitationForm": { + "seh": "cimbiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35081858-7200-4c60-90b9-3ddc794dfef9", + "Order": 1, + "DeletedAt": null, + "EntryId": "083f3256-2345-4d2c-aea9-f6980dd66fee", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hurry, quick", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hurry", + "pt": "apressar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a793f71-1455-4be9-b63f-636a2a343815", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Wacimbiza na kulonga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Apressou na falar.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "35081858-7200-4c60-90b9-3ddc794dfef9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "466adc08-27b9-4fa7-bd77-94acda873468", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fbc75fe2-b0ef-44ee-8e33-fa7d177135d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "466adc08-27b9-4fa7-bd77-94acda873468", + "Definition": {}, + "Gloss": { + "en": "toilet", + "pt": "latrina" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bd53691a-560e-4acc-a9bc-dfdc1d8e9c57", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e98d8742-759c-40bd-a462-485372657540", + "Order": 1, + "DeletedAt": null, + "EntryId": "bd53691a-560e-4acc-a9bc-dfdc1d8e9c57", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "cabrito pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "kid goat", + "pt": "cabrito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6aee6b52-e2b9-49e7-82c5-cb83484a571f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya; Alicete", + "Ws": "en" + } + ] + }, + "SenseId": "e98d8742-759c-40bd-a462-485372657540", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fcf1714a-0916-4bdb-ae0f-85cb3a0553c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "medzo" + }, + "CitationForm": { + "seh": "cimedzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e0644624-a939-4c56-b130-eda7980c29e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "fcf1714a-0916-4bdb-ae0f-85cb3a0553c8", + "Definition": {}, + "Gloss": { + "en": "fishing hook ", + "pt": "anzol" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e363c8af-bc2c-40af-8949-52663a9aec4b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e0644624-a939-4c56-b130-eda7980c29e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18b3c7e0-b275-4078-ba68-192a2798e7e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "mera" + }, + "CitationForm": { + "seh": "cimera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4d4bafa5-6b53-4377-ad56-876de7ba1292", + "Order": 1, + "DeletedAt": null, + "EntryId": "18b3c7e0-b275-4078-ba68-192a2798e7e5", + "Definition": {}, + "Gloss": { + "en": "germination", + "pt": "germinac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ff1fa02-0733-46d1-b91d-ef98ff337979", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4d4bafa5-6b53-4377-ad56-876de7ba1292", + "DeletedAt": null + } + ] + }, + { + "Id": "0218bc31-f936-4d57-93e8-f87c15bf9f63", + "Order": 2, + "DeletedAt": null, + "EntryId": "18b3c7e0-b275-4078-ba68-192a2798e7e5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "yeast in powder form", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "yeast", + "pt": "fermento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a982178-6213-4db7-bb55-8833cd568551", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfunye" + }, + "CitationForm": { + "seh": "cimpfunye" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "667eb258-45b0-413e-b101-f9ccc7cbb64c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a982178-6213-4db7-bb55-8833cd568551", + "Definition": {}, + "Gloss": { + "en": "bugs", + "pt": "bichinhos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df9257de-f63e-4525-a9d7-4a924d7bf31c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "667eb258-45b0-413e-b101-f9ccc7cbb64c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a3313ea-9847-4d75-be41-d39205a6fa5c", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": { + "seh": "cimuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d16174f8-2b94-4c11-a10e-eb053d32ff07", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a3313ea-9847-4d75-be41-d39205a6fa5c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "manners proper to men", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "costumes de homens", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "men\u0027s ways", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "567efd7a-a5d0-4199-bc3a-2a7dda06c02d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "d16174f8-2b94-4c11-a10e-eb053d32ff07", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d892f47e-cac1-4e77-99fd-8a47e174f105", + "DeletedAt": null, + "LexemeForm": { + "seh": "muti" + }, + "CitationForm": { + "seh": "cimuti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0df2a01b-5501-4222-b5c4-3560033a535b", + "Order": 1, + "DeletedAt": null, + "EntryId": "d892f47e-cac1-4e77-99fd-8a47e174f105", + "Definition": {}, + "Gloss": { + "en": "shrub", + "pt": "arbusto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "13b8bf4c-d0c3-44c2-b0a3-f528efe4a918", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0df2a01b-5501-4222-b5c4-3560033a535b", + "DeletedAt": null + } + ] + }, + { + "Id": "b979cb5e-7abc-429e-acdf-27475037a08c", + "Order": 2, + "DeletedAt": null, + "EntryId": "d892f47e-cac1-4e77-99fd-8a47e174f105", + "Definition": {}, + "Gloss": { + "en": "small stick", + "pt": "pau pequeno" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "424ccd42-9505-489d-bd3a-78242055a519", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimwan" + }, + "CitationForm": { + "seh": "cimwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef506d5f-36a9-4afd-8986-958e74274b79", + "Order": 1, + "DeletedAt": null, + "EntryId": "424ccd42-9505-489d-bd3a-78242055a519", + "Definition": {}, + "Gloss": { + "en": "not able", + "pt": "na\u0303o conseguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "acffb21f-c1fe-4b67-8a1e-e6aee10d15a0", + "DeletedAt": null, + "LexemeForm": { + "seh": "nai" + }, + "CitationForm": { + "seh": "cinai" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8af77e66-bc0e-4b3d-8860-5a7b8628de13", + "Order": 1, + "DeletedAt": null, + "EntryId": "acffb21f-c1fe-4b67-8a1e-e6aee10d15a0", + "Definition": {}, + "Gloss": { + "en": "Thursday", + "pt": "quinta-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e220a0ba-f4a6-4326-a904-28eab8d10f0f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "8af77e66-bc0e-4b3d-8860-5a7b8628de13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3040010a-bca2-493a-a572-cd3ea591933c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nanazi" + }, + "CitationForm": { + "seh": "cinanazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b70c2d47-0841-4045-afac-e3779f3f7bdc", + "Order": 1, + "DeletedAt": null, + "EntryId": "3040010a-bca2-493a-a572-cd3ea591933c", + "Definition": {}, + "Gloss": { + "en": "pinapple", + "pt": "anana\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f3c9c0e-ff00-481a-812e-d3345e89c876", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "b70c2d47-0841-4045-afac-e3779f3f7bdc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f7a72ce-d248-4e61-96fc-7d3d74332b52", + "DeletedAt": null, + "LexemeForm": { + "seh": "cincino" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "feeafad4-6f4a-4514-ac5f-3a3e784346ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f7a72ce-d248-4e61-96fc-7d3d74332b52", + "Definition": {}, + "Gloss": { + "en": "now", + "pt": "agora" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "27d49110-3c24-4ac8-98ce-506e97cf95e8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "feeafad4-6f4a-4514-ac5f-3a3e784346ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eec577ad-c643-4a82-80ed-1586c94fa694", + "DeletedAt": null, + "LexemeForm": { + "seh": "cing" + }, + "CitationForm": { + "seh": "cinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a7cbae04-07cd-4468-8e0e-001bc7040c54", + "Order": 1, + "DeletedAt": null, + "EntryId": "eec577ad-c643-4a82-80ed-1586c94fa694", + "Definition": {}, + "Gloss": { + "en": "cut hair", + "pt": "cortar cabelho" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "55a1cb26-c65d-404a-9f68-4f1f9457aa6e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a7cbae04-07cd-4468-8e0e-001bc7040c54", + "DeletedAt": null + } + ] + }, + { + "Id": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", + "Order": 2, + "DeletedAt": null, + "EntryId": "eec577ad-c643-4a82-80ed-1586c94fa694", + "Definition": {}, + "Gloss": { + "en": "shave", + "pt": "barbear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "18d1988a-089a-406c-8077-f4a85f2d7389", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndacinga ndebvu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "I cut (my) beard", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cortei barba", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4088a137-2d8c-4cce-8623-7fd3005077e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "cingidz" + }, + "CitationForm": { + "seh": "cingidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6634b06f-e8af-46a2-832b-e65f7e87387e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4088a137-2d8c-4cce-8623-7fd3005077e0", + "Definition": {}, + "Gloss": { + "en": "quick", + "pt": "apressar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ef780fb-01df-49b2-b05a-b46fa344eb0d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6634b06f-e8af-46a2-832b-e65f7e87387e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "470b4f46-3904-4953-b32f-4107affa7d0c", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngungundu" + }, + "CitationForm": { + "seh": "cingungundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b41d2ad6-a040-4971-8dba-b1173e7dbdd0", + "Order": 1, + "DeletedAt": null, + "EntryId": "470b4f46-3904-4953-b32f-4107affa7d0c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tree civet, eat honey, Nandinia binotata", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "civet", + "pt": "almiscareiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3da2adfb-88fc-41b1-abbe-7dcd291001ac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b41d2ad6-a040-4971-8dba-b1173e7dbdd0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da4f0ce0-515f-4716-b7e6-ea49d63acd0f", + "DeletedAt": null, + "LexemeForm": { + "seh": "cinj" + }, + "CitationForm": { + "seh": "cinja" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7c0458ed-29b5-49fb-85ca-1be940e30804", + "Order": 1, + "DeletedAt": null, + "EntryId": "da4f0ce0-515f-4716-b7e6-ea49d63acd0f", + "Definition": {}, + "Gloss": { + "en": "change", + "pt": "trocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62614d4b-623c-4dd5-ab8b-d5aa72db9e58", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7c0458ed-29b5-49fb-85ca-1be940e30804", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57874349-3d18-4f8e-be27-673f546ba236", + "DeletedAt": null, + "LexemeForm": { + "seh": "njira" + }, + "CitationForm": { + "seh": "cinjira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cb2a8121-7277-419a-a9ba-e8ae7b74f41b", + "Order": 1, + "DeletedAt": null, + "EntryId": "57874349-3d18-4f8e-be27-673f546ba236", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "caminho pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trail", + "pt": "caminho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4f6ad2a7-a20f-4b54-b926-cc6570f52688", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cb2a8121-7277-419a-a9ba-e8ae7b74f41b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthu" + }, + "CitationForm": { + "seh": "cinthu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41c948f2-73e7-4a07-b802-1b5434ddcf0b", + "Order": 1, + "DeletedAt": null, + "EntryId": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "Definition": {}, + "Gloss": { + "en": "thing", + "pt": "coisa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88281618-b909-49e4-b0cb-721df2b0256c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "41c948f2-73e7-4a07-b802-1b5434ddcf0b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "bc019346-e8d9-49ad-839d-b7fa2b28f0e4", + "MaybeId": "bc019346-e8d9-49ad-839d-b7fa2b28f0e4", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "ComponentSenseId": null, + "ComponentHeadword": "cinthu" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f73c315f-36a4-4616-81e7-00946a3ae969", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyindiro" + }, + "CitationForm": { + "seh": "cinyindiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "40678389-a031-4bb9-8947-2ecda2aab5d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f73c315f-36a4-4616-81e7-00946a3ae969", + "Definition": {}, + "Gloss": { + "en": "confidence", + "pt": "confianca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14c3084d-05aa-409a-8486-f3cfe619ba87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "40678389-a031-4bb9-8947-2ecda2aab5d9", + "DeletedAt": null + } + ] + }, + { + "Id": "328fa8c2-8166-4a83-ba6a-35d3eb29acf4", + "Order": 2, + "DeletedAt": null, + "EntryId": "f73c315f-36a4-4616-81e7-00946a3ae969", + "Definition": {}, + "Gloss": { + "en": "faith", + "pt": "fe\u0302" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4717480a-42fe-417d-94ce-7fcb18763467", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyungwe" + }, + "CitationForm": { + "seh": "cinyungwe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "62a80d7e-5461-43a3-92f4-1873889f3511", + "Order": 1, + "DeletedAt": null, + "EntryId": "4717480a-42fe-417d-94ce-7fcb18763467", + "Definition": { + "en": { + "Spans": [ + { + "Text": "language of Nyungwe from Tete", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "li\u0301ngua nyungwe de Tete", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "Nyungwe", + "pt": "nyungwe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a3c26a9-5a27-4bfa-a9b3-88dbaf565a08", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "62a80d7e-5461-43a3-92f4-1873889f3511", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e9023bed-285d-48db-bcd1-abdca443568a", + "DeletedAt": null, + "LexemeForm": { + "seh": "pezipezi" + }, + "CitationForm": { + "seh": "cipezipezi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6812074c-a5f1-4d7a-bc3b-1c6f7a9d6d77", + "Order": 1, + "DeletedAt": null, + "EntryId": "e9023bed-285d-48db-bcd1-abdca443568a", + "Definition": {}, + "Gloss": { + "en": "nude", + "pt": "nu\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c6037c5f-60d4-4a86-8a0b-f7d831f13aca", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "6812074c-a5f1-4d7a-bc3b-1c6f7a9d6d77", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "20d45e0b-5493-41c1-9b26-41e78ee6ccb7", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunziso" + }, + "CitationForm": { + "seh": "cipfunziso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86614d59-54a3-4a59-9ddb-edb9d6645555", + "Order": 1, + "DeletedAt": null, + "EntryId": "20d45e0b-5493-41c1-9b26-41e78ee6ccb7", + "Definition": {}, + "Gloss": { + "en": "lesson", + "pt": "lic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "e4bacc52-dcaa-4e68-b736-f0b5d9aeca41", + "Name": { + "en": "Class, lesson" + }, + "Code": "3.6.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "04cc0316-9a18-47e4-882f-dcf50cd78b4a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "86614d59-54a3-4a59-9ddb-edb9d6645555", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62ad34af-6ba5-40de-a66a-c7e05e09c6db", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunzo" + }, + "CitationForm": { + "seh": "cipfunzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4fb83982-c268-4643-a079-ef6595b52ddf", + "Order": 1, + "DeletedAt": null, + "EntryId": "62ad34af-6ba5-40de-a66a-c7e05e09c6db", + "Definition": {}, + "Gloss": { + "en": "teaching", + "pt": "ensino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6137239a-b469-46be-b7cb-b9ac22fcc195", + "Name": { + "en": "Teach" + }, + "Code": "3.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "cca05c0b-d0d2-4d62-a519-c97e655539a4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4fb83982-c268-4643-a079-ef6595b52ddf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a673a88c-e0a6-4458-ae81-2c0412297804", + "DeletedAt": null, + "LexemeForm": { + "seh": "phaniphani" + }, + "CitationForm": { + "seh": "ciphaniphani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f4b27c24-e157-489c-8058-03974376986a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a673a88c-e0a6-4458-ae81-2c0412297804", + "Definition": {}, + "Gloss": { + "en": "firefly", + "pt": "pirilampo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61d7ce1c-0288-4448-a92d-321ba4e57fe7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f4b27c24-e157-489c-8058-03974376986a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0f14a0fb-e3cb-4d30-ab8a-e16280dc09c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "phano" + }, + "CitationForm": { + "seh": "ciphano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e2d50560-29f2-45f5-b7f9-75ee665abd0d", + "Order": 1, + "DeletedAt": null, + "EntryId": "0f14a0fb-e3cb-4d30-ab8a-e16280dc09c8", + "Definition": {}, + "Gloss": { + "en": "instrument", + "pt": "instrumento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6553082-fc7c-4e26-b95d-2f77b7cfb62a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e2d50560-29f2-45f5-b7f9-75ee665abd0d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6c02ee0-47e2-442b-9891-138344c6fc00", + "DeletedAt": null, + "LexemeForm": { + "seh": "phoko" + }, + "CitationForm": { + "seh": "ciphoko" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8ab4bf03-6757-4e6f-af7a-13262f5fc23c", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6c02ee0-47e2-442b-9891-138344c6fc00", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "espirito duma pessoa morto visi\u0301vel.", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "ghost", + "pt": "fantasma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb37cb1c-a872-48dd-8437-ffb06876465d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nzimu wace wadza ciphoko.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "O seu espirito transformou-se em fantasma.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "8ab4bf03-6757-4e6f-af7a-13262f5fc23c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "63f35417-415a-4cd2-8a44-1cf21520f3cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": { + "seh": "cipiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3b545c5d-5faa-4483-bbb4-810d89b8921a", + "Order": 1, + "DeletedAt": null, + "EntryId": "63f35417-415a-4cd2-8a44-1cf21520f3cc", + "Definition": {}, + "Gloss": { + "en": "Tuesday", + "pt": "terc\u0327a-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f7758190-59f8-4a46-9b02-58f13336dcfe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "3b545c5d-5faa-4483-bbb4-810d89b8921a", + "DeletedAt": null + } + ] + }, + { + "Id": "2ef6704b-a7cd-4c84-b9df-b6d7a07a6246", + "Order": 2, + "DeletedAt": null, + "EntryId": "63f35417-415a-4cd2-8a44-1cf21520f3cc", + "Definition": {}, + "Gloss": { + "en": "second", + "pt": "segundo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86741386-5453-42ee-8edc-35c72d3f9cfb", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": { + "seh": "cipiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4f0765ac-5b8c-4689-bf46-2d740e9834b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "86741386-5453-42ee-8edc-35c72d3f9cfb", + "Definition": {}, + "Gloss": { + "en": "snake type", + "pt": "cobra tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d96b2aa6-8ae3-4425-8db6-499d3cb5451b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4f0765ac-5b8c-4689-bf46-2d740e9834b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a50cf75d-caed-4e34-aa5a-1c8f40a8e14d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cipo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8f7d60b4-f32f-4879-8578-765623fd3331", + "Order": 1, + "DeletedAt": null, + "EntryId": "a50cf75d-caed-4e34-aa5a-1c8f40a8e14d", + "Definition": {}, + "Gloss": { + "en": "never", + "pt": "nunca" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67a83f5d-975f-4037-9571-42b18314914e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8f7d60b4-f32f-4879-8578-765623fd3331", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e608cdf7-aebe-474f-aabb-62d13de84f07", + "DeletedAt": null, + "LexemeForm": { + "seh": "posi" + }, + "CitationForm": { + "seh": "ciposi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b2981643-8242-45df-8155-4f9a1b89b784", + "Order": 1, + "DeletedAt": null, + "EntryId": "e608cdf7-aebe-474f-aabb-62d13de84f07", + "Definition": {}, + "Gloss": { + "en": "monday", + "pt": "segunda-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "280b5baa-5684-4863-96a1-3454fa6cfbf2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "b2981643-8242-45df-8155-4f9a1b89b784", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b801113-65fa-4158-afce-5b6d4503afa2", + "DeletedAt": null, + "LexemeForm": { + "seh": "pwazo" + }, + "CitationForm": { + "seh": "cipwazo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be850366-c73f-40d7-b98f-3ec83fea6241", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b801113-65fa-4158-afce-5b6d4503afa2", + "Definition": {}, + "Gloss": { + "en": "ridicule", + "pt": "desprezo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6964ab1d-db07-46f2-bdd3-a2a69462b4e2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2 007", + "Ws": "en" + } + ] + }, + "SenseId": "be850366-c73f-40d7-b98f-3ec83fea6241", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c14d99e8-2370-4016-bf8e-eeaf196d3a33", + "DeletedAt": null, + "LexemeForm": { + "seh": "lengo" + }, + "CitationForm": { + "seh": "cirengo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8cbe762-c449-49b1-8de3-b71ad4861779", + "Order": 1, + "DeletedAt": null, + "EntryId": "c14d99e8-2370-4016-bf8e-eeaf196d3a33", + "Definition": {}, + "Gloss": { + "en": "miracle", + "pt": "milagre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1aca94c3-83e7-4417-b2c1-64572fe7c9bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "riro" + }, + "CitationForm": { + "seh": "ciriro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87d914a0-8762-4a1d-939c-d73fe5ddd9db", + "Order": 1, + "DeletedAt": null, + "EntryId": "1aca94c3-83e7-4417-b2c1-64572fe7c9bd", + "Definition": {}, + "Gloss": { + "en": "crying", + "pt": "choro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b99d458-196c-4618-8996-5e953e27aa93", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "87d914a0-8762-4a1d-939c-d73fe5ddd9db", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3db33890-d94a-450f-ac8b-ad19965a8f9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "rombo" + }, + "CitationForm": { + "seh": "cirombo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "866745ed-de98-43ba-8f7b-a1dd2945cd1b", + "Order": 1, + "DeletedAt": null, + "EntryId": "3db33890-d94a-450f-ac8b-ad19965a8f9d", + "Definition": {}, + "Gloss": { + "en": "garbage", + "pt": "lixo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c8cc3b5e-05e4-4760-9ad7-20097c80ef99", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "866745ed-de98-43ba-8f7b-a1dd2945cd1b", + "DeletedAt": null + } + ] + }, + { + "Id": "6cf5b513-a228-45d4-aefe-8e3c25a10b5f", + "Order": 2, + "DeletedAt": null, + "EntryId": "3db33890-d94a-450f-ac8b-ad19965a8f9d", + "Definition": {}, + "Gloss": { + "en": "wild beasts", + "pt": "animal brava" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9003767-c299-407d-9e1d-0a9fddb2f8ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "ronda" + }, + "CitationForm": { + "seh": "cironda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "15ad161e-ecf7-43b6-9e80-09d7e1cb662e", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9003767-c299-407d-9e1d-0a9fddb2f8ff", + "Definition": {}, + "Gloss": { + "en": "wound", + "pt": "ferida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aec8d3ab-49e8-4d54-ba1a-f5476ad5c06d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "15ad161e-ecf7-43b6-9e80-09d7e1cb662e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d148e7fc-3a9a-4ba8-b0c0-dfe6fcae660f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ropa" + }, + "CitationForm": { + "seh": "ciropa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be0fe661-be7d-47b9-b126-b4fae8a28ffc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d148e7fc-3a9a-4ba8-b0c0-dfe6fcae660f", + "Definition": {}, + "Gloss": { + "en": "blood", + "pt": "sangue" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2ce46338-518c-4d9a-8b9f-ec1154a99c3e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "be0fe661-be7d-47b9-b126-b4fae8a28ffc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e6fc38f3-dbe6-4393-a153-0319d56dd5af", + "DeletedAt": null, + "LexemeForm": { + "seh": "ruzwi" + }, + "CitationForm": { + "seh": "ciruzwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4c9a4100-6f5d-4474-aef6-d12e732a498c", + "Order": 1, + "DeletedAt": null, + "EntryId": "e6fc38f3-dbe6-4393-a153-0319d56dd5af", + "Definition": {}, + "Gloss": { + "en": "whistle", + "pt": "assobio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5bd1dd95-1dc9-4a6b-bf7a-56d833ddf4c2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "4c9a4100-6f5d-4474-aef6-d12e732a498c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61bf9fd9-f4e5-433a-a981-99d12abc636e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sa" + }, + "CitationForm": { + "seh": "cisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "93d839b1-7318-4f4f-8279-90e8fda687a3", + "Order": 1, + "DeletedAt": null, + "EntryId": "61bf9fd9-f4e5-433a-a981-99d12abc636e", + "Definition": {}, + "Gloss": { + "en": "village", + "pt": "aldeia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b536622c-80a3-4b31-9d22-4ed2fb76324d", + "Name": { + "en": "City" + }, + "Code": "4.6.7.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ae8778b0-69c7-4db4-9e12-b36d635f3c4f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "93d839b1-7318-4f4f-8279-90e8fda687a3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b595a54-e45a-402b-8c9d-cac6f5a02374", + "DeletedAt": null, + "LexemeForm": { + "seh": "sayi" + }, + "CitationForm": { + "seh": "cisayi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bbbd1861-ae82-410e-abba-cf73b0e1cb50", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b595a54-e45a-402b-8c9d-cac6f5a02374", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sauce for rice", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sauce", + "pt": "caril" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71ec295f-640e-45a3-8de9-a361819ef2df", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bbbd1861-ae82-410e-abba-cf73b0e1cb50", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bdf95f18-e330-4b53-9db5-593c0a3ed483", + "DeletedAt": null, + "LexemeForm": { + "seh": "sena" + }, + "CitationForm": { + "seh": "cisena" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f5ad0c5-d4b8-4b7d-9954-a3e3467f74a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "bdf95f18-e330-4b53-9db5-593c0a3ed483", + "Definition": {}, + "Gloss": { + "en": "Sena language", + "pt": "li\u0301ngua sena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "459d6aa1-453e-416f-8ae2-aa3a3ae3b266", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "0f5ad0c5-d4b8-4b7d-9954-a3e3467f74a7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5899c54d-65b5-4697-8a30-0709a1d903e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sero" + }, + "CitationForm": { + "seh": "cisero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "849c97b4-d0c2-4fa2-81c7-c2d734332f5e", + "Order": 1, + "DeletedAt": null, + "EntryId": "5899c54d-65b5-4697-8a30-0709a1d903e2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "winnowing basket", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sieve", + "pt": "peneira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2b191e84-3688-4d6a-95eb-7720a8429897", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "849c97b4-d0c2-4fa2-81c7-c2d734332f5e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aef81764-2aa7-4da9-b18f-440d003c925e", + "DeletedAt": null, + "LexemeForm": { + "seh": "cit" + }, + "CitationForm": { + "seh": "cita" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9bb88e99-c84d-49f4-8993-63c19e4891df", + "Order": 1, + "DeletedAt": null, + "EntryId": "aef81764-2aa7-4da9-b18f-440d003c925e", + "Definition": {}, + "Gloss": { + "en": "do", + "pt": "fazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "0adab179-a7f0-45a9-a1c3-1966d68bf45f", + "Order": 2, + "DeletedAt": null, + "EntryId": "aef81764-2aa7-4da9-b18f-440d003c925e", + "Definition": {}, + "Gloss": { + "en": "made" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "011185bb-e8c8-4ab9-80fb-2e19b670e3d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "tatu" + }, + "CitationForm": { + "seh": "citatu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50485a90-b701-4c13-8986-3b6a94d1e82f", + "Order": 1, + "DeletedAt": null, + "EntryId": "011185bb-e8c8-4ab9-80fb-2e19b670e3d0", + "Definition": {}, + "Gloss": { + "en": "Wednesday", + "pt": "quarta-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1be0207-8517-4ec0-add6-5508fca673fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "50485a90-b701-4c13-8986-3b6a94d1e82f", + "DeletedAt": null + } + ] + }, + { + "Id": "f5e72635-c18f-4558-bff8-af539d7f41c7", + "Order": 2, + "DeletedAt": null, + "EntryId": "011185bb-e8c8-4ab9-80fb-2e19b670e3d0", + "Definition": {}, + "Gloss": { + "en": "third", + "pt": "terceira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd130033-c4dd-4d2b-a355-68280a4f39fb", + "DeletedAt": null, + "LexemeForm": { + "seh": "teketeke" + }, + "CitationForm": { + "seh": "citeketeke" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a506da0-ad78-4381-9286-07190c61fafd", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd130033-c4dd-4d2b-a355-68280a4f39fb", + "Definition": {}, + "Gloss": { + "en": "earthquake", + "pt": "terramoto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3230fe69-1c65-4642-8718-5e183866a2e3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "2a506da0-ad78-4381-9286-07190c61fafd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b02f082-4693-4dca-b7db-b18a22160523", + "DeletedAt": null, + "LexemeForm": { + "seh": "citik" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "caef5950-61dc-4fab-9c45-89bb28aeb063", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b02f082-4693-4dca-b7db-b18a22160523", + "Definition": {}, + "Gloss": { + "en": "happen", + "pt": "aconteceu" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "102c9c28-bf6c-4c14-b43a-7affd6360bb7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tulo" + }, + "CitationForm": { + "seh": "citulo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "babf56f3-4d0a-48fb-8f26-4007551a15c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "102c9c28-bf6c-4c14-b43a-7affd6360bb7", + "Definition": {}, + "Gloss": { + "en": "sleep", + "pt": "sono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6adaa067-1679-4d09-8dd6-b8667bc2cbc7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "babf56f3-4d0a-48fb-8f26-4007551a15c9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7c3cb51-5473-4179-9df3-46809ece89b9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tundu" + }, + "CitationForm": { + "seh": "citundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aad8f67f-05af-46a3-bc2f-39ef6c8ee715", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7c3cb51-5473-4179-9df3-46809ece89b9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "basket made of bamboo for storing grain", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "basket", + "pt": "cesto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "76cecf4d-a158-43f5-8249-9e7ed6fc4c9d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "aad8f67f-05af-46a3-bc2f-39ef6c8ee715", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f197161-9bef-4e94-8598-6b5f9ab9fee3", + "DeletedAt": null, + "LexemeForm": { + "seh": "xanu" + }, + "CitationForm": { + "seh": "cixanu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc95b51f-2e22-46fc-b264-95b7e1a465ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f197161-9bef-4e94-8598-6b5f9ab9fee3", + "Definition": {}, + "Gloss": { + "en": "Friday", + "pt": "sexta-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5f331cb6-7403-4574-8fcd-a9720a8aa9ea", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "dc95b51f-2e22-46fc-b264-95b7e1a465ea", + "DeletedAt": null + } + ] + }, + { + "Id": "260a0ff6-b53a-436c-a839-56f99b873cc5", + "Order": 2, + "DeletedAt": null, + "EntryId": "4f197161-9bef-4e94-8598-6b5f9ab9fee3", + "Definition": {}, + "Gloss": { + "en": "fifth", + "pt": "quinto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0c52ca1-7a0c-4296-9c8d-042269e30580", + "DeletedAt": null, + "LexemeForm": { + "seh": "zindikiro" + }, + "CitationForm": { + "seh": "cizindikiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0a2ec452-a7c2-4cac-b65d-19e501818220", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0c52ca1-7a0c-4296-9c8d-042269e30580", + "Definition": { + "en": { + "Spans": [ + { + "Text": "road sign", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sign", + "pt": "sinal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "767aa167-af3d-4e11-a68b-ec31f9d2ef1a", + "Name": { + "en": "Sign, symbol" + }, + "Code": "3.5.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "61ae4c5b-f3b3-4a8b-9931-b485defa7a59", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0a2ec452-a7c2-4cac-b65d-19e501818220", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c3038a8-8e19-4477-a826-2530b48c1199", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungu" + }, + "CitationForm": { + "seh": "cizungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2642c7aa-5686-452c-b7c6-aff3f21700da", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c3038a8-8e19-4477-a826-2530b48c1199", + "Definition": { + "en": { + "Spans": [ + { + "Text": "portuguese language", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "li\u0301ngua portuguesa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "portuguese", + "pt": "portugue\u0302s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9a8a53d4-5f01-4381-a0fd-975702f495e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "2642c7aa-5686-452c-b7c6-aff3f21700da", + "DeletedAt": null + } + ] + }, + { + "Id": "6f50eb34-609e-49e1-b906-684bd2a6edd2", + "Order": 2, + "DeletedAt": null, + "EntryId": "3c3038a8-8e19-4477-a826-2530b48c1199", + "Definition": { + "en": { + "Spans": [ + { + "Text": "manners appropriate to whites", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "a costumes de brancos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "white\u0027s ways", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3fd0e8b6-3b53-4b7b-9ec3-66b08365f32d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ombo" + }, + "CitationForm": { + "seh": "combo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "256dc263-e16c-4140-90eb-5e8bba3369d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "3fd0e8b6-3b53-4b7b-9ec3-66b08365f32d", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "utensi\u0301lio para po\u0302r qualquer coisa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "container", + "pt": "contentor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bd6c7ee0-416e-44df-ba54-b40c4d15a324", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "256dc263-e16c-4140-90eb-5e8bba3369d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8098fc3c-2926-4e6f-aace-c46eaef9d4ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "onzi" + }, + "CitationForm": { + "seh": "conzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "068d955d-9dc7-486c-be44-152a2da1942a", + "Order": 1, + "DeletedAt": null, + "EntryId": "8098fc3c-2926-4e6f-aace-c46eaef9d4ae", + "Definition": { + "en": { + "Spans": [ + { + "Text": "storm with wind and perhaps rain", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "storm", + "pt": "tempestade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "93be7617-d4c5-42c5-b879-d6e73a8bd8e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "068d955d-9dc7-486c-be44-152a2da1942a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0927a2b-2cb0-43aa-9572-04413b8b99bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "coto" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65f4757d-0125-4a84-9314-04c0e444634e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0927a2b-2cb0-43aa-9572-04413b8b99bc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area between the three fireplace stones", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "in the fire", + "pt": "no fogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47126a5f-8af3-40d7-a4a3-a28acd267fff", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunguz" + }, + "CitationForm": { + "seh": "cunguza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6be12455-6e00-4e76-8274-39af8a79bd8d", + "Order": 1, + "DeletedAt": null, + "EntryId": "47126a5f-8af3-40d7-a4a3-a28acd267fff", + "Definition": {}, + "Gloss": { + "en": "marry", + "pt": "casar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed9a2327-676f-4d06-b5b5-d1f1aa257959", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6be12455-6e00-4e76-8274-39af8a79bd8d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13afab39-8130-4e6e-8a3f-2ebd8416408d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunguzw" + }, + "CitationForm": { + "seh": "cunguzwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d6d7cf0-87fb-4eac-a2dd-5413f04a549c", + "Order": 1, + "DeletedAt": null, + "EntryId": "13afab39-8130-4e6e-8a3f-2ebd8416408d", + "Definition": {}, + "Gloss": { + "en": "be married", + "pt": "ser casado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ff50acc3-f7c4-410f-a4a8-018ace084863", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d6d7cf0-87fb-4eac-a2dd-5413f04a549c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "14a990a5-5603-4e39-84a4-42f43c2760f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "da" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "0915e6db-3ca0-4c60-b167-df78a7bf7b93", + "Order": 1, + "DeletedAt": null, + "EntryId": "14a990a5-5603-4e39-84a4-42f43c2760f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "noneventline past and past for negative and dependent verbs", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "era", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PST2", + "pt": "PST2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b5c7bf00-dfc3-4b9c-8d99-396afcbc75ba", + "DeletedAt": null, + "LexemeForm": { + "seh": "da" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1742599a-f75b-4128-ad40-c5b6b48f0622", + "Order": 1, + "DeletedAt": null, + "EntryId": "b5c7bf00-dfc3-4b9c-8d99-396afcbc75ba", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Pluperfect, completed past", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "PLPRF", + "pt": "PLPRF" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9390f831-1b3b-4fd7-9718-0b4e2a824d3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "dado" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d0e2735c-ac38-4a03-a923-d706d5127e1c", + "Order": 1, + "DeletedAt": null, + "EntryId": "9390f831-1b3b-4fd7-9718-0b4e2a824d3c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cooking tool", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "instrumento com que se po\u0303e farinha na panela", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "utensil", + "pt": "utensi\u0301lio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1edade2e-f047-4266-a14d-90d40613b2ff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Alicete", + "Ws": "en" + } + ] + }, + "SenseId": "d0e2735c-ac38-4a03-a923-d706d5127e1c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0925ddab-f82a-46a2-81c4-d2f4af3d25ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "dafuntu" + }, + "CitationForm": { + "seh": "dafuntu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b4d055cf-e4e2-4d8f-b493-eccdb120b143", + "Order": 1, + "DeletedAt": null, + "EntryId": "0925ddab-f82a-46a2-81c4-d2f4af3d25ef", + "Definition": {}, + "Gloss": { + "en": "the dead one", + "pt": "o morto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1ba993b6-d531-4a38-a362-51df1c75589e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b4d055cf-e4e2-4d8f-b493-eccdb120b143", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "354cf62b-de70-49d2-811a-4ad1befdae04", + "DeletedAt": null, + "LexemeForm": { + "seh": "daw" + }, + "CitationForm": { + "seh": "dawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9efdf055-1117-41a7-a720-b7cd082d13b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "354cf62b-de70-49d2-811a-4ad1befdae04", + "Definition": {}, + "Gloss": { + "en": "sin", + "pt": "pecar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8329b937-7389-47f4-a6cb-7150a066e5b6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9efdf055-1117-41a7-a720-b7cd082d13b2", + "DeletedAt": null + } + ] + }, + { + "Id": "b4c13621-6170-4f5d-a97e-02fd015450a1", + "Order": 2, + "DeletedAt": null, + "EntryId": "354cf62b-de70-49d2-811a-4ad1befdae04", + "Definition": {}, + "Gloss": { + "en": "guilt", + "pt": "culpa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfcba2c3-dedc-4bae-b744-22522da4e66c", + "DeletedAt": null, + "LexemeForm": { + "seh": "daya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "001b2172-8005-4328-8673-d9118decfa35", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfcba2c3-dedc-4bae-b744-22522da4e66c", + "Definition": {}, + "Gloss": { + "en": "midwife", + "pt": "parteira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5611336f-b69d-487e-9a2b-eb6efe97dbe6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "001b2172-8005-4328-8673-d9118decfa35", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56d65e8a-08b1-42e1-aa9e-401c7a4aacf6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dembuk" + }, + "CitationForm": { + "seh": "dembuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "51c5d694-274b-4ce5-8a5a-650ca5057ded", + "Order": 1, + "DeletedAt": null, + "EntryId": "56d65e8a-08b1-42e1-aa9e-401c7a4aacf6", + "Definition": {}, + "Gloss": { + "en": "late", + "pt": "atrazar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6217ba14-73a9-4f0e-869a-e5b69362f99c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "51c5d694-274b-4ce5-8a5a-650ca5057ded", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1180ea03-2d0d-48a5-a936-041be9ac4005", + "DeletedAt": null, + "LexemeForm": { + "seh": "dhadho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b775015-98c2-4032-b74a-6e42fa1ab3d0", + "Order": 1, + "DeletedAt": null, + "EntryId": "1180ea03-2d0d-48a5-a936-041be9ac4005", + "Definition": {}, + "Gloss": { + "en": "lung", + "pt": "pulma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7a9d7481-f32f-434f-8526-2881c052f0f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1,18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5b775015-98c2-4032-b74a-6e42fa1ab3d0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e23208b-a88b-4e40-8ba0-601599c23971", + "DeletedAt": null, + "LexemeForm": { + "seh": "dhuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0c2ac9ac-c39c-49c9-8fe0-8bba863230d5", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e23208b-a88b-4e40-8ba0-601599c23971", + "Definition": {}, + "Gloss": { + "en": "close to", + "pt": "perto de" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5b5b1924-dbd0-4345-bdaf-249ae0791537", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0c2ac9ac-c39c-49c9-8fe0-8bba863230d5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0bf398d9-acd4-4a86-bb21-0ac368cdcd78", + "DeletedAt": null, + "LexemeForm": { + "seh": "di" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Enclitic", + "Senses": [ + { + "Id": "0da360ba-60c7-4ed4-a2de-fa27c149bfd6", + "Order": 1, + "DeletedAt": null, + "EntryId": "0bf398d9-acd4-4a86-bb21-0ac368cdcd78", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Evidential, \u0022truly\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Evidential, \u0022mesmo\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "EVID", + "pt": "EVID" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "253695ca-1749-4dd5-948c-c62f9d1e1624", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "wawangadi mwanadi wadididi", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "0da360ba-60c7-4ed4-a2de-fa27c149bfd6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86ff8b04-b3ac-4eb1-b87e-5312290e0249", + "DeletedAt": null, + "LexemeForm": { + "seh": "dikhir" + }, + "CitationForm": { + "seh": "dikhira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c266ea9d-0c6f-40f9-ae67-122f730c76fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "86ff8b04-b3ac-4eb1-b87e-5312290e0249", + "Definition": {}, + "Gloss": { + "en": "wait", + "pt": "esperar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45b5b57b-dae0-4a2d-9105-ab2d10ad1f11", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c266ea9d-0c6f-40f9-ae67-122f730c76fe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "68233fd3-f0d8-4bf5-8e6d-2c8e5f46fd39", + "DeletedAt": null, + "LexemeForm": { + "seh": "dimba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1723b409-22e0-450d-b2f0-6bdd33b70700", + "Order": 1, + "DeletedAt": null, + "EntryId": "68233fd3-f0d8-4bf5-8e6d-2c8e5f46fd39", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small vegetable garden", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "machamba pequena", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "garden", + "pt": "machamba" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "436692f4-8d1c-4726-b7c1-252929f8e743", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyezeze", + "Ws": "en" + } + ] + }, + "SenseId": "1723b409-22e0-450d-b2f0-6bdd33b70700", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0ae6ab9a-3381-48db-b165-fcde928550ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "dimingu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c36e0db-92bc-47d4-8008-430138d950eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "0ae6ab9a-3381-48db-b165-fcde928550ff", + "Definition": {}, + "Gloss": { + "en": "Sunday", + "pt": "domingo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a4e3c3eb-61b9-40c7-aed9-312cd7413141", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0c36e0db-92bc-47d4-8008-430138d950eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93ea15e2-25b8-4de4-bccf-b0a8d1d864ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "dimonyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c015b4a-ea22-4b7b-8440-20c0bb423b90", + "Order": 1, + "DeletedAt": null, + "EntryId": "93ea15e2-25b8-4de4-bccf-b0a8d1d864ed", + "Definition": {}, + "Gloss": { + "en": "demon", + "pt": "demonio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c10ae59e-a413-461a-a772-a6f3cdd859f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2c015b4a-ea22-4b7b-8440-20c0bb423b90", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b45b6ce3-daf1-4ff5-a107-a8a1963e1c9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ding" + }, + "CitationForm": { + "seh": "dinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9888c643-d030-47a9-ae26-23048c50606c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b45b6ce3-daf1-4ff5-a107-a8a1963e1c9d", + "Definition": {}, + "Gloss": { + "en": "observe", + "pt": "observar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56c24b2d-4bd4-439b-9fcf-6f10a66de172", + "DeletedAt": null, + "LexemeForm": { + "seh": "dingis" + }, + "CitationForm": { + "seh": "dingisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd4e70e7-f467-413f-84cd-56b25117171e", + "Order": 1, + "DeletedAt": null, + "EntryId": "56c24b2d-4bd4-439b-9fcf-6f10a66de172", + "Definition": {}, + "Gloss": { + "en": "verify", + "pt": "verificar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2ddc2027-aff8-46ef-9c59-2a55ba561b14", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "dd4e70e7-f467-413f-84cd-56b25117171e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab7f23ee-c059-4e1d-bd6d-f742d4556499", + "DeletedAt": null, + "LexemeForm": { + "seh": "dipa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1d23b8f-a05f-4b3e-a205-00622c51d630", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab7f23ee-c059-4e1d-bd6d-f742d4556499", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spear w/ flat iron head", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spear", + "pt": "lanc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a1ce19c4-d12c-46da-a718-6d03949b3db1", + "Name": { + "en": "Hunt" + }, + "Code": "6.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "51080be0-e8f0-41e9-bd91-1190a3ad9599", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c1d23b8f-a05f-4b3e-a205-00622c51d630", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "DeletedAt": null, + "LexemeForm": { + "seh": "so" + }, + "CitationForm": { + "seh": "diso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "091a6d4f-7854-4fde-8ece-f8375261b979", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "Definition": {}, + "Gloss": { + "en": "eye", + "pt": "olho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ed1ee23-e7fb-4960-a927-97c4ff96e848", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Zuze akali munthu wadidi kakamwe pamaso pa Mulungu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira (pl:madiso):19; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "091a6d4f-7854-4fde-8ece-f8375261b979", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "c222ef71-2a59-4360-a62b-61a036491166", + "MaybeId": "c222ef71-2a59-4360-a62b-61a036491166", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "ComplexFormHeadword": "cimaso-maso", + "ComponentEntryId": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "ComponentSenseId": null, + "ComponentHeadword": "diso" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a0ed9637-9496-4dab-84f9-a669bc57867b", + "DeletedAt": null, + "LexemeForm": { + "seh": "djamuk" + }, + "CitationForm": { + "seh": "djamuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32b82aa0-753b-4ef7-a13a-45171eb0ad8a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a0ed9637-9496-4dab-84f9-a669bc57867b", + "Definition": {}, + "Gloss": { + "en": "sour", + "pt": "azedo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67c58150-0b69-4f2d-86b0-8402ac8fccc7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "32b82aa0-753b-4ef7-a13a-45171eb0ad8a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1b893f4e-b987-4d6b-bd35-bf232a84db71", + "DeletedAt": null, + "LexemeForm": { + "seh": "djanja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73f6e11c-62f5-48a3-bcc6-1a90c107b1a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "1b893f4e-b987-4d6b-bd35-bf232a84db71", + "Definition": {}, + "Gloss": { + "en": "hand full", + "pt": "medida de ma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "07c0968e-d5f5-46fd-93c1-5639d14821c0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndipase mazandja mawiri ampunga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Da-me duas maos de arroz.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "73f6e11c-62f5-48a3-bcc6-1a90c107b1a7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c9d9175-0f14-4082-8bf2-9c3a82e5cb7d", + "DeletedAt": null, + "LexemeForm": { + "seh": "djanja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b479bcc-15e8-4ee2-9ea4-f3e97ab9583f", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c9d9175-0f14-4082-8bf2-9c3a82e5cb7d", + "Definition": {}, + "Gloss": { + "en": "hand", + "pt": "ma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a2192488-8fdb-4bae-b59a-3f1b7b632ffb", + "DeletedAt": null, + "LexemeForm": { + "seh": "djenje" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0a1e1f25-1d28-46ff-b10f-61efeeff642a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a2192488-8fdb-4bae-b59a-3f1b7b632ffb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hole, pit", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cova, buraco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hole", + "pt": "cova" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ab33969-051f-4618-bb80-93c4071cca32", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0a1e1f25-1d28-46ff-b10f-61efeeff642a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33487c65-1a7d-4159-b194-f7b6a5f013a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "djiwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1dc81749-6059-4eef-a64c-abd0bc23375e", + "Order": 1, + "DeletedAt": null, + "EntryId": "33487c65-1a7d-4159-b194-f7b6a5f013a2", + "Definition": {}, + "Gloss": { + "en": "dove", + "pt": "rola" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2b4b7067-0731-4d35-8aa1-89e1c598b946", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18 (:28 spelled ndjiwa)", + "Ws": "en" + } + ] + }, + "SenseId": "1dc81749-6059-4eef-a64c-abd0bc23375e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5264f6d0-f6d2-4460-ae50-2f01f45d9832", + "DeletedAt": null, + "LexemeForm": { + "seh": "djodj" + }, + "CitationForm": { + "seh": "djodja" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "25b5e61d-26ec-40e9-83e6-ba02026295cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "5264f6d0-f6d2-4460-ae50-2f01f45d9832", + "Definition": { + "en": { + "Spans": [ + { + "Text": "drop through a hole", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "deixar cair num buraco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "drop", + "pt": "deixar cair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "35ecb431-6920-43c5-a3b1-bf3720759475", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "25b5e61d-26ec-40e9-83e6-ba02026295cb", + "DeletedAt": null + } + ] + }, + { + "Id": "e21ee24d-94d2-43ea-85fb-2661273563da", + "Order": 2, + "DeletedAt": null, + "EntryId": "5264f6d0-f6d2-4460-ae50-2f01f45d9832", + "Definition": {}, + "Gloss": { + "en": "drip", + "pt": "pingar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bbb3eba8-974f-47ff-b9ba-da317fa49ce8", + "DeletedAt": null, + "LexemeForm": { + "seh": "dobe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7cb4163f-0b09-4fa0-81d3-0c30d6e368d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "bbb3eba8-974f-47ff-b9ba-da317fa49ce8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "mix for making bricks", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "massa de tijola", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "clay mud", + "pt": "massa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cc391a56-7f3d-4f04-a7f1-d4f9522b98aa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18 (sun burned brick - sic); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7cb4163f-0b09-4fa0-81d3-0c30d6e368d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a22d7d98-c4d4-4df9-99e9-7bec175d983d", + "DeletedAt": null, + "LexemeForm": { + "seh": "dodom" + }, + "CitationForm": { + "seh": "dodoma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d7526a3-26d2-4ebf-b427-2213caf65140", + "Order": 1, + "DeletedAt": null, + "EntryId": "a22d7d98-c4d4-4df9-99e9-7bec175d983d", + "Definition": {}, + "Gloss": { + "en": "deceive", + "pt": "enganar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b3b48b1-1b8b-48e1-9444-44be578af893", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndadodoma kukucemerani", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "chamei-o por engano", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8d7526a3-26d2-4ebf-b427-2213caf65140", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f27d9d06-90ad-4f00-a8bb-e1e7d0000b30", + "DeletedAt": null, + "LexemeForm": { + "seh": "dodomek" + }, + "CitationForm": { + "seh": "dodomeka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "79e34609-699f-468b-9a02-c4dab39803de", + "Order": 1, + "DeletedAt": null, + "EntryId": "f27d9d06-90ad-4f00-a8bb-e1e7d0000b30", + "Definition": {}, + "Gloss": { + "en": "make error", + "pt": "enganar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2a121f9-1179-47fa-819b-22502d8ecd91", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndadodoma kukucemerani", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "chamei-o por engano", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "79e34609-699f-468b-9a02-c4dab39803de", + "DeletedAt": null + } + ] + }, + { + "Id": "64759618-9e6e-4d42-9839-5f582d66d270", + "Order": 2, + "DeletedAt": null, + "EntryId": "f27d9d06-90ad-4f00-a8bb-e1e7d0000b30", + "Definition": {}, + "Gloss": { + "en": "cause scandel", + "pt": "escandalizar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c5b75b77-2e95-460a-a12e-a0fa667d7ada", + "DeletedAt": null, + "LexemeForm": { + "seh": "dok" + }, + "CitationForm": { + "seh": "doka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58513bc2-508b-4185-8e3e-3c993e671006", + "Order": 1, + "DeletedAt": null, + "EntryId": "c5b75b77-2e95-460a-a12e-a0fa667d7ada", + "Definition": {}, + "Gloss": { + "en": "sun set", + "pt": "por do sol" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "06cb2024-5f7b-467c-b32c-ef4c56030ac0", + "Name": { + "en": "Telling time" + }, + "Code": "8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb", + "Name": { + "en": "Sun" + }, + "Code": "1.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "594238e1-2abc-467f-bb25-369f76b2f7f6", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kudoka kwa dzuwa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "por do sol", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "58513bc2-508b-4185-8e3e-3c993e671006", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "94c125e6-87cc-4eeb-b8b2-515b54907c08", + "DeletedAt": null, + "LexemeForm": { + "seh": "dona" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1553bb4c-f571-4084-98ea-ddcf0632c9ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "94c125e6-87cc-4eeb-b8b2-515b54907c08", + "Definition": {}, + "Gloss": { + "en": "lady", + "pt": "senhora branca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3878373b-4274-46f8-9158-92e2749017a6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:20", + "Ws": "en" + } + ] + }, + "SenseId": "1553bb4c-f571-4084-98ea-ddcf0632c9ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5f929b5-379d-4cf8-b67a-ee9f02d59951", + "DeletedAt": null, + "LexemeForm": { + "seh": "dondowe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fff0965a-ef07-4bfb-826c-ddffd0f6ecb3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5f929b5-379d-4cf8-b67a-ee9f02d59951", + "Definition": { + "en": { + "Spans": [ + { + "Text": "congradulations given when someone overcomes great suffering", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "congratulations", + "pt": "para bens" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6f4d6d9a-15ea-4f98-a52e-870856b33463", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fff0965a-ef07-4bfb-826c-ddffd0f6ecb3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d1d3f09-ce9c-4f48-984a-1ac9de0748fe", + "DeletedAt": null, + "LexemeForm": { + "seh": "dongo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "946efc4c-dce4-49b1-a7ff-09ea2de426ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d1d3f09-ce9c-4f48-984a-1ac9de0748fe", + "Definition": {}, + "Gloss": { + "en": "clay", + "pt": "barro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "222cf546-5677-4b13-8c8f-e761b9104615", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "946efc4c-dce4-49b1-a7ff-09ea2de426ce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "660717d8-50c3-47cd-a03a-2279fd49ecf7", + "DeletedAt": null, + "LexemeForm": { + "seh": "dotha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "140ed3cc-46e0-46ff-8380-36d88fbb018c", + "Order": 1, + "DeletedAt": null, + "EntryId": "660717d8-50c3-47cd-a03a-2279fd49ecf7", + "Definition": {}, + "Gloss": { + "en": "ash", + "pt": "cinza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1bb2b102-115e-49bd-8b23-bb92a5998a70", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "140ed3cc-46e0-46ff-8380-36d88fbb018c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04a5d219-b71c-4c34-9445-4f8a923c67c4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dul" + }, + "CitationForm": { + "seh": "dula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bcc30797-cc4c-4e2e-990f-28425d5c87ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "04a5d219-b71c-4c34-9445-4f8a923c67c4", + "Definition": {}, + "Gloss": { + "en": "pull out", + "pt": "arrancar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7d2d88eb-8517-4d9c-ac5c-926df0da8056", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "bcc30797-cc4c-4e2e-990f-28425d5c87ce", + "DeletedAt": null + } + ] + }, + { + "Id": "12e66c70-299d-41eb-8d6a-44aacc3288d1", + "Order": 2, + "DeletedAt": null, + "EntryId": "04a5d219-b71c-4c34-9445-4f8a923c67c4", + "Definition": {}, + "Gloss": { + "en": "undress", + "pt": "despir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "772ce48a-ac9f-43bd-a1b9-54059106d2b6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dumbir" + }, + "CitationForm": { + "seh": "dumbira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f16867d4-c4f5-4aff-afe8-77532ee2969e", + "Order": 1, + "DeletedAt": null, + "EntryId": "772ce48a-ac9f-43bd-a1b9-54059106d2b6", + "Definition": {}, + "Gloss": { + "en": "swear", + "pt": "jurar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db86d189-90a5-4dc4-a5e8-05fe9d30b477", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f16867d4-c4f5-4aff-afe8-77532ee2969e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91c54ffc-559d-4a63-9af0-890f92c99f93", + "DeletedAt": null, + "LexemeForm": { + "seh": "dunguny" + }, + "CitationForm": { + "seh": "dungunya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f6f134c4-459f-4207-bdd3-857b909318d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "91c54ffc-559d-4a63-9af0-890f92c99f93", + "Definition": {}, + "Gloss": { + "en": "murmur against", + "pt": "murmurar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fd960907-b2b5-462b-bd01-17f38ce45042", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f6f134c4-459f-4207-bdd3-857b909318d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e474a43-482d-427f-90bf-6bfef3befef8", + "DeletedAt": null, + "LexemeForm": { + "seh": "durumuk" + }, + "CitationForm": { + "seh": "durumuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c367950c-490b-4237-aabf-acde1d506b3c", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e474a43-482d-427f-90bf-6bfef3befef8", + "Definition": {}, + "Gloss": { + "en": "wilt", + "pt": "murchar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0c32e88d-ce04-44fd-8dfa-cf5abb31bbe1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c367950c-490b-4237-aabf-acde1d506b3c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d6d0ad6-998b-4421-8706-a9902d9dbd96", + "DeletedAt": null, + "LexemeForm": { + "seh": "duwal" + }, + "CitationForm": { + "seh": "duwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ee86a66-6781-4a36-b47b-fa6ee731ff3f", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d6d0ad6-998b-4421-8706-a9902d9dbd96", + "Definition": {}, + "Gloss": { + "en": "forget", + "pt": "esquecer-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "240070d1-05e4-4dcc-ac77-8544ddf96e80", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7ee86a66-6781-4a36-b47b-fa6ee731ff3f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a376b38-7550-4437-8920-8da5a37c7ced", + "DeletedAt": null, + "LexemeForm": { + "seh": "dwal" + }, + "CitationForm": { + "seh": "dwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2ecf3be4-12b5-4622-8d44-15f8e81f60e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a376b38-7550-4437-8920-8da5a37c7ced", + "Definition": {}, + "Gloss": { + "en": "be sick", + "pt": "ser doente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "7c6cad26-79c3-403a-a3aa-59babdfcd46f", + "Name": { + "en": "Sick" + }, + "Code": "2.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "aca0d94b-fd06-48a7-939c-45c820e05e4d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "asadwala manungo onsene", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "doente corpo todo", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2ecf3be4-12b5-4622-8d44-15f8e81f60e6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db86c135-bc96-4db8-a082-6c887ff8d000", + "DeletedAt": null, + "LexemeForm": { + "seh": "dy" + }, + "CitationForm": { + "seh": "dya" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "956aeb5d-0baf-4009-b523-0147285efbd0", + "Order": 1, + "DeletedAt": null, + "EntryId": "db86c135-bc96-4db8-a082-6c887ff8d000", + "Definition": {}, + "Gloss": { + "en": "eat", + "pt": "comer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e2d5e095-596c-4214-83f8-619dac29c965", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "956aeb5d-0baf-4009-b523-0147285efbd0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "624d70f5-7407-4540-84b1-c0820e85cb9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "dyeker" + }, + "CitationForm": { + "seh": "dyekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f888120f-95ec-43b9-a70a-2018c3f7966c", + "Order": 1, + "DeletedAt": null, + "EntryId": "624d70f5-7407-4540-84b1-c0820e85cb9e", + "Definition": {}, + "Gloss": { + "en": "bribe", + "pt": "subornar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88153e65-7463-4c3e-ab6b-752efea6f676", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f888120f-95ec-43b9-a70a-2018c3f7966c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eeab1234-1174-41b4-aad3-f87121f3664f", + "DeletedAt": null, + "LexemeForm": { + "seh": "dyiw" + }, + "CitationForm": { + "seh": "dyiwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8010f318-454b-404d-aa7e-92b76ab1e274", + "Order": 1, + "DeletedAt": null, + "EntryId": "eeab1234-1174-41b4-aad3-f87121f3664f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "choke (plant)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "choke", + "pt": "sofocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4702762-ab2e-4b79-bd43-cc0631f30664", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mbeu isadyiwa na tsanga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "The seed is choked by weeds", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Semente e\u0301 sofocado pelo campim.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "8010f318-454b-404d-aa7e-92b76ab1e274", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "241ca9b4-9077-4050-b8c9-6e1759a989d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "dza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "0156d415-bb52-4d42-8457-ddd27562d830", + "Order": 1, + "DeletedAt": null, + "EntryId": "241ca9b4-9077-4050-b8c9-6e1759a989d3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "culmination", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "CUL", + "pt": "CUL" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "DeletedAt": null, + "LexemeForm": { + "seh": "dza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "7aeea56a-5e2a-49b3-a7be-6841608f8364", + "Order": 1, + "DeletedAt": null, + "EntryId": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in order to, distal/purpose infinitive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "para", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c6af0fa0-431c-4b33-a1d9-39b590222ee2", + "Order": 2, + "DeletedAt": null, + "EntryId": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "Definition": {}, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "DeletedAt": null, + "LexemeForm": { + "seh": "dz" + }, + "CitationForm": { + "seh": "dza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "089f49ef-98ab-4903-8e66-1872c4fa94e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "Definition": {}, + "Gloss": { + "en": "come", + "pt": "vir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bfddcb41-e689-40d7-a66d-8b314a33c546", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "adza kationa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "veio visitar-nos", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "089f49ef-98ab-4903-8e66-1872c4fa94e6", + "DeletedAt": null + } + ] + }, + { + "Id": "3033d933-d549-4f5e-b519-644f16d2bd2b", + "Order": 2, + "DeletedAt": null, + "EntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "Definition": {}, + "Gloss": { + "en": "come and fetch", + "pt": "vir buscar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "b843cb46-41f1-4434-bd96-13a5eebaa2dc", + "MaybeId": "b843cb46-41f1-4434-bd96-13a5eebaa2dc", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a4833ca4-bcc3-44db-a525-c88993150c07", + "ComplexFormHeadword": "kudza", + "ComponentEntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "ComponentSenseId": null, + "ComponentHeadword": "dza" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2cb6087a-4ffb-4544-9381-b49733d3bd64", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzadzamir" + }, + "CitationForm": { + "seh": "dzadzamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "90f0534c-8f34-4d2d-b5e7-3212a3cd309e", + "Order": 1, + "DeletedAt": null, + "EntryId": "2cb6087a-4ffb-4544-9381-b49733d3bd64", + "Definition": {}, + "Gloss": { + "en": "shake", + "pt": "tremer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96133d0a-8e03-4208-849e-0cce8bb233ee", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Atoma kudzadzamira na kugopa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ele comenc\u0327ou tremer com medo", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "90f0534c-8f34-4d2d-b5e7-3212a3cd309e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "146dfb17-70dc-402b-ad29-2158d84f25b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a460530d-d2c1-49a7-bf74-7a217a0ce135", + "Order": 1, + "DeletedAt": null, + "EntryId": "146dfb17-70dc-402b-ad29-2158d84f25b2", + "Definition": {}, + "Gloss": { + "en": "egg", + "pt": "ovo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e278ef39-8dbe-494d-aca4-6f55198fa443", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "a460530d-d2c1-49a7-bf74-7a217a0ce135", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "26ec5c17-8c7d-4b94-a6e4-d99f382a690f", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzana" + }, + "CitationForm": { + "seh": "dzana" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "738f6d6e-7089-4821-a542-84ab425ace05", + "Order": 1, + "DeletedAt": null, + "EntryId": "26ec5c17-8c7d-4b94-a6e4-d99f382a690f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "day before yesterday", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "two days ago", + "pt": "anteontem" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88051f2d-5215-4d7e-92ee-e18dcf4468dd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "738f6d6e-7089-4821-a542-84ab425ace05", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec6e873e-4da0-4aaf-b53d-8d6348c7efd4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1244b021-418c-418b-aa39-b6e6e195b845", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec6e873e-4da0-4aaf-b53d-8d6348c7efd4", + "Definition": {}, + "Gloss": { + "en": "a hundred", + "pt": "cem" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b07833a1-f762-4176-aed0-b8c6f35eb319", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9997f6d6-3ed5-4c52-b575-0bb3bfb52a4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b07833a1-f762-4176-aed0-b8c6f35eb319", + "Definition": { + "en": { + "Spans": [ + { + "Text": "amulet used to protect against spirit-caused sickness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "amulet", + "pt": "amuleto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0fe6d726-5e5a-463d-af2a-021b5f073f77", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9997f6d6-3ed5-4c52-b575-0bb3bfb52a4c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91156194-6a09-48dd-96e9-7cd94f117779", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzati" + }, + "CitationForm": { + "seh": "dzati" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "979edecf-f56b-4062-8743-60c9c5c6b7df", + "Order": 1, + "DeletedAt": null, + "EntryId": "91156194-6a09-48dd-96e9-7cd94f117779", + "Definition": {}, + "Gloss": { + "en": "not yet", + "pt": "ainda na\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "56ef5acc-e20e-421e-a510-33ed5c2cf619", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mbidzati ndidzati", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo 026", + "Ws": "en" + } + ] + }, + "SenseId": "979edecf-f56b-4062-8743-60c9c5c6b7df", + "DeletedAt": null + }, + { + "Id": "c0b1f9d6-cfba-47b6-9428-d41c6ecab4d3", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "sidzati kudya", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ainda na\u0303o comi", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "979edecf-f56b-4062-8743-60c9c5c6b7df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a5b06f38-b2c8-4139-84dc-a598aca20ce0", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzaz" + }, + "CitationForm": { + "seh": "dzaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5e158006-75c7-40e0-8a9f-79ea9d6a1d24", + "Order": 1, + "DeletedAt": null, + "EntryId": "a5b06f38-b2c8-4139-84dc-a598aca20ce0", + "Definition": {}, + "Gloss": { + "en": "fill", + "pt": "encher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6a441a87-36e6-4148-9aa2-86f41eada408", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5e158006-75c7-40e0-8a9f-79ea9d6a1d24", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ac479435-9369-4d2c-a585-9a3181ffccc9", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzedze" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b07605b1-1c48-4476-bf7f-f6a7b8064666", + "Order": 1, + "DeletedAt": null, + "EntryId": "ac479435-9369-4d2c-a585-9a3181ffccc9", + "Definition": {}, + "Gloss": { + "en": "bad luck", + "pt": "azar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f71a64f2-7a48-4cb8-b181-94022c7adf00", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b07605b1-1c48-4476-bf7f-f6a7b8064666", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42355445-fa54-4429-abc3-cc83fbcb6849", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzemwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "327fb629-2035-4497-a693-46b3c42b983c", + "Order": 1, + "DeletedAt": null, + "EntryId": "42355445-fa54-4429-abc3-cc83fbcb6849", + "Definition": {}, + "Gloss": { + "en": "crazy", + "pt": "maluco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "901d4597-5f16-4a7f-b0d2-3f35eaa2d23b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "327fb629-2035-4497-a693-46b3c42b983c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72769399-e4e9-4de2-bb3b-d3489f61bf5e", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzeser" + }, + "CitationForm": { + "seh": "dzesera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ddf2fda7-6c8c-41fa-ac13-a9d1a0fecf8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "72769399-e4e9-4de2-bb3b-d3489f61bf5e", + "Definition": {}, + "Gloss": { + "en": "bring", + "pt": "trazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "24b0494f-c257-4763-a159-0d9ac42914b9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ddf2fda7-6c8c-41fa-ac13-a9d1a0fecf8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65380366-10ea-439d-aa6e-559e3725ff13", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "ff2f7a8a-d457-4a7d-addc-e995b937968c", + "Order": 1, + "DeletedAt": null, + "EntryId": "65380366-10ea-439d-aa6e-559e3725ff13", + "Definition": {}, + "Gloss": { + "en": "5", + "pt": "5" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e38753b4-0226-45a7-bfbe-2f0a04714c41", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "967c962b-d951-4995-a53d-dcaeacd7cb35", + "Order": 1, + "DeletedAt": null, + "EntryId": "e38753b4-0226-45a7-bfbe-2f0a04714c41", + "Definition": { + "en": { + "Spans": [ + { + "Text": "respect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "respeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "5", + "pt": "5" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23786766-4ad5-44a1-bcf1-ff3b1b7ddb67", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "madzimai", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "women (vocative, respectiful)", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "senhoras", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "967c962b-d951-4995-a53d-dcaeacd7cb35", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ce34e57-36f0-4c4d-9c09-e3ddc01d5718", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzidzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "69f12f41-0c1d-417d-bd0c-2c6b6781d988", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ce34e57-36f0-4c4d-9c09-e3ddc01d5718", + "Definition": {}, + "Gloss": { + "en": "owl", + "pt": "mocho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "60ffa686-00da-427c-b3b9-eca66aeab5b8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Alves; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "69f12f41-0c1d-417d-bd0c-2c6b6781d988", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "92176fe5-7601-4aca-8d96-e324363b6d0e", + "DeletedAt": null, + "LexemeForm": { + "seh": "dziko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d2e5fd4-e831-4be7-8486-e2189b72a192", + "Order": 1, + "DeletedAt": null, + "EntryId": "92176fe5-7601-4aca-8d96-e324363b6d0e", + "Definition": {}, + "Gloss": { + "en": "country", + "pt": "pai\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5f681c62-cbfa-4505-94d3-e9094663dd42", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d2e5fd4-e831-4be7-8486-e2189b72a192", + "DeletedAt": null + } + ] + }, + { + "Id": "56e8f620-7f27-4342-93eb-2352a0896146", + "Order": 2, + "DeletedAt": null, + "EntryId": "92176fe5-7601-4aca-8d96-e324363b6d0e", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "terra, mundo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "world", + "pt": "terra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b47d2604-8b23-41e9-9158-01526dd83894", + "Name": { + "en": "World" + }, + "Code": "1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cce98603-ff8f-4213-945a-bd6746716139", + "Name": { + "en": "Land" + }, + "Code": "1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea9a3428-6f35-4e85-bc2e-f5e98f0df80a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzimba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "097bc15b-ca93-49ab-bb54-7ddc742be942", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea9a3428-6f35-4e85-bc2e-f5e98f0df80a", + "Definition": {}, + "Gloss": { + "en": "den", + "pt": "covil" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "364ba056-38e3-4ce5-b01f-c41df6d2008f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "097bc15b-ca93-49ab-bb54-7ddc742be942", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e189bc2f-eaea-43fc-bcb5-5ca7b272eee4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzimola" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5f043f8f-1df7-4c70-9139-ff69c4333bfd", + "Order": 1, + "DeletedAt": null, + "EntryId": "e189bc2f-eaea-43fc-bcb5-5ca7b272eee4", + "Definition": {}, + "Gloss": { + "en": "blind person", + "pt": "cego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05a445f8-d1eb-435c-83f5-138cf7313725", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5f043f8f-1df7-4c70-9139-ff69c4333bfd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fdbfc9e5-c0c7-474c-8491-5a3e00c75cf6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzina" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72b9fc9f-db83-4f38-a154-91aa1f6457fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "fdbfc9e5-c0c7-474c-8491-5a3e00c75cf6", + "Definition": {}, + "Gloss": { + "en": "name", + "pt": "nome" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45dae496-6f7a-4fb7-a094-65bb07a618ce", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "72b9fc9f-db83-4f38-a154-91aa1f6457fb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbaddf9b-dac2-47d9-ae75-2832049c302a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzindikir" + }, + "CitationForm": { + "seh": "dzindikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9cc5b875-1529-4343-8422-15e88e1e9ff9", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbaddf9b-dac2-47d9-ae75-2832049c302a", + "Definition": {}, + "Gloss": { + "en": "recognize", + "pt": "reconhecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "428f3524-a660-4a75-b6a3-7ac64aa8fae1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9cc5b875-1529-4343-8422-15e88e1e9ff9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33147636-999f-4a2d-8e8c-b9b270a0fbf6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzingul" + }, + "CitationForm": { + "seh": "dzingula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "212df5f7-c4a1-4be9-8c7d-26730391610c", + "Order": 1, + "DeletedAt": null, + "EntryId": "33147636-999f-4a2d-8e8c-b9b270a0fbf6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cut meat to make jerky", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cut meat", + "pt": "cortar carne" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dfb285fe-e0fd-4463-b6d5-34f2469007d8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "212df5f7-c4a1-4be9-8c7d-26730391610c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a14afc02-3a14-4667-992d-bdb5f59fc410", + "DeletedAt": null, + "LexemeForm": { + "seh": "no" + }, + "CitationForm": { + "seh": "dzino" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9903681c-20e6-4e41-b0fa-99c86c518943", + "Order": 1, + "DeletedAt": null, + "EntryId": "a14afc02-3a14-4667-992d-bdb5f59fc410", + "Definition": {}, + "Gloss": { + "en": "tooth", + "pt": "dente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f65de4c1-e802-4782-b636-29cd6af6d2a0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "9903681c-20e6-4e41-b0fa-99c86c518943", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzinza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "120863e9-9271-4d90-9f47-f1df0101b949", + "Order": 1, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "ethnic group", + "pt": "tribo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6cbdaf94-8e2c-4b26-936a-d2f86d158250", + "Name": { + "en": "Race" + }, + "Code": "4.1.9.9", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3d7c9ec6-baa5-4eb4-afba-98064e8ac41a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Moreira:29; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "120863e9-9271-4d90-9f47-f1df0101b949", + "DeletedAt": null + } + ] + }, + { + "Id": "eb416cb0-0626-4fd7-81fe-299fd955e507", + "Order": 2, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "family", + "pt": "fami\u0301lia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a781d57d-174d-47a6-b6a1-ae635a13df84", + "Name": { + "en": "Family, clan" + }, + "Code": "4.1.9.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "35d20aad-653a-4dee-9af3-9bc37f3221b0", + "Order": 3, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "sub clan", + "pt": "sub cla\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a0477f9f-4622-4ed6-8a4d-8a9672856428", + "Order": 4, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "descendance", + "pt": "descendencia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "529140d1-6e8e-44fe-99f0-95289e933607", + "Name": { + "en": "Related by birth" + }, + "Code": "4.1.9.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7c769029-18c6-4d44-b8fb-d858b427551b", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzip" + }, + "CitationForm": { + "seh": "dzipa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd58d55c-4ca6-4726-a9c2-10f45bc21515", + "Order": 1, + "DeletedAt": null, + "EntryId": "7c769029-18c6-4d44-b8fb-d858b427551b", + "Definition": {}, + "Gloss": { + "en": "taste good", + "pt": "ter gosto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4ac950c-1363-4bca-a218-ede32a2d4a33", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sadzipa maningi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Tem muito bom sabor.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "dd58d55c-4ca6-4726-a9c2-10f45bc21515", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e833e9b-d413-46ce-9ad7-88bd66a309fc", + "DeletedAt": null, + "LexemeForm": { + "seh": "dziw" + }, + "CitationForm": { + "seh": "dziwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f820e3a7-256d-4bd4-bfb2-fb7fb4dd7dd6", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e833e9b-d413-46ce-9ad7-88bd66a309fc", + "Definition": {}, + "Gloss": { + "en": "know", + "pt": "saber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "19edf4c3-722d-44ee-8e98-a4630a261ec7", + "DeletedAt": null, + "LexemeForm": { + "seh": "dziwis" + }, + "CitationForm": { + "seh": "dziwisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbce6a29-7a85-4714-9c10-ef640500c220", + "Order": 1, + "DeletedAt": null, + "EntryId": "19edf4c3-722d-44ee-8e98-a4630a261ec7", + "Definition": {}, + "Gloss": { + "en": "inform", + "pt": "informar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d13395aa-e40d-4027-906c-94e5a4159da2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cbce6a29-7a85-4714-9c10-ef640500c220", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f242ee99-11cf-41bc-9bba-76d849911c06", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzizimuk" + }, + "CitationForm": { + "seh": "dzizimuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b8d3c6f-10ec-4b79-a267-e7fb490d27b3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f242ee99-11cf-41bc-9bba-76d849911c06", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake from a dream", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "acordar de sonho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2720cac0-de07-4cad-8057-4817af85c46a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6b8d3c6f-10ec-4b79-a267-e7fb490d27b3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9021fb3-cd41-49da-82f7-843521d46b26", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzololo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1476f06f-5d14-4d5e-b6e8-ab23e0ce6218", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9021fb3-cd41-49da-82f7-843521d46b26", + "Definition": {}, + "Gloss": { + "en": "standing firm", + "pt": "firme" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a5053715-81a4-415e-a1d4-456b795d8c4d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1476f06f-5d14-4d5e-b6e8-ab23e0ce6218", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d5776d9-c5ae-487e-863a-660767d12d77", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzongololo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "661ca6fd-1e8b-412c-977f-8ce7bda3c73a", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d5776d9-c5ae-487e-863a-660767d12d77", + "Definition": {}, + "Gloss": { + "en": "millipede", + "pt": "mil pe\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "24cb9193-8011-428f-a305-d7dc4423200d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "661ca6fd-1e8b-412c-977f-8ce7bda3c73a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc970e94-fc80-4f40-b91f-ebe000aa0623", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzongwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "264e5106-44f9-4d15-b5b2-f0a4acc2237e", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc970e94-fc80-4f40-b91f-ebe000aa0623", + "Definition": {}, + "Gloss": { + "en": "rooster", + "pt": "galo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4a221232-3c46-4b11-9d6d-859ffac13de6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Alves; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "264e5106-44f9-4d15-b5b2-f0a4acc2237e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "285344b4-370c-479f-b6ae-3298d502832a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzonkhon" + }, + "CitationForm": { + "seh": "dzonkhona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "961b8f0e-88f5-43a7-8ef6-0273413b6ade", + "Order": 1, + "DeletedAt": null, + "EntryId": "285344b4-370c-479f-b6ae-3298d502832a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "eat by bird", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "comer por passaro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "eat", + "pt": "comer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2933b787-db50-4b1b-bf0b-68d1c681ca82", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "961b8f0e-88f5-43a7-8ef6-0273413b6ade", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31dbf4c0-8958-4826-ada6-30913d18adf3", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzoya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d633d91a-a2d9-4d0b-bd63-76cfcab618df", + "Order": 1, + "DeletedAt": null, + "EntryId": "31dbf4c0-8958-4826-ada6-30913d18adf3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "body hair (human)", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pe\u0302lor, cabelo do corpo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hair", + "pt": "cabelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b20db01-fdb6-4fae-8741-af3e2de1c316", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d633d91a-a2d9-4d0b-bd63-76cfcab618df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9468fe42-4ed1-45da-8709-42e4f964da03", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzudzumik" + }, + "CitationForm": { + "seh": "dzudzumika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04fd1383-f9ff-4bfc-8056-272d49529a21", + "Order": 1, + "DeletedAt": null, + "EntryId": "9468fe42-4ed1-45da-8709-42e4f964da03", + "Definition": {}, + "Gloss": { + "en": "worried", + "pt": "preoccupado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e80d557-96e6-4be8-bb77-b012e9b57605", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff02a48b-3cdb-45a0-8c0a-b16bb506aa9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e80d557-96e6-4be8-bb77-b012e9b57605", + "Definition": {}, + "Gloss": { + "en": "yesterday", + "pt": "ontem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "081ed5fa-2a2f-4790-80d5-0cb68590fa5e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "ff02a48b-3cdb-45a0-8c0a-b16bb506aa9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6221b166-e164-42f5-841d-a1e34cd08f5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzumatirw" + }, + "CitationForm": { + "seh": "dzumatirwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8b829fb0-227b-4ef9-8451-b04e7b3de29e", + "Order": 1, + "DeletedAt": null, + "EntryId": "6221b166-e164-42f5-841d-a1e34cd08f5d", + "Definition": {}, + "Gloss": { + "en": "be surprized", + "pt": "admirar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "06809308-89c5-4224-aa60-16a054de198e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8b829fb0-227b-4ef9-8451-b04e7b3de29e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec612c4b-883b-441e-98c5-17e211707dc9", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzungu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5407cf61-e396-4fbe-bb1c-78bd5926d237", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec612c4b-883b-441e-98c5-17e211707dc9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "chaff of mapira", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "poeira de mapira", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "chaff", + "pt": "poeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e814a3aa-b93e-4269-81dd-5f66f1c00555", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5407cf61-e396-4fbe-bb1c-78bd5926d237", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ccb3a59f-d180-4371-b14a-3585e6ab672c", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzuwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f3ca3e78-5b47-46f0-8964-7c7308675fbb", + "Order": 1, + "DeletedAt": null, + "EntryId": "ccb3a59f-d180-4371-b14a-3585e6ab672c", + "Definition": {}, + "Gloss": { + "en": "sun", + "pt": "sol" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "420985b5-81d9-419d-be94-1c18fbfbb3fa", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khundu ya kumabulukira dzuwa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "lado de sair o sol (fig. este)", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,19 ;wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "f3ca3e78-5b47-46f0-8964-7c7308675fbb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4febd7ab-81f9-42a3-bcad-96809e046588", + "DeletedAt": null, + "LexemeForm": { + "seh": "e" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "0c26a49a-907c-4889-81c6-fc317afaca7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4febd7ab-81f9-42a3-bcad-96809e046588", + "Definition": { + "en": { + "Spans": [ + { + "Text": "subjunctive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "subjunctivo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "SBJV", + "pt": "SBJV" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c9049df2-fc01-4c22-a878-2c2d55fda732", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "aisakire, asake rabbit seek, ifikire meat arrive, ifunge lion close eye ikwanise lion should succeed, mundiwangise you could heal me", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "0c26a49a-907c-4889-81c6-fc317afaca7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "360dd981-7f18-405f-b5ab-c875aca9c5cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "edz" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "3c26e6d5-0706-43bb-a893-b02e8cab4977", + "Order": 1, + "DeletedAt": null, + "EntryId": "360dd981-7f18-405f-b5ab-c875aca9c5cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "agentive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "agentiva", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "AGN", + "pt": "AGN" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e142ae59-c23c-416b-bfa3-cb7304cd4725", + "DeletedAt": null, + "LexemeForm": { + "seh": "ek" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "4ab7f4b4-6ac8-4409-8ce4-ad1684644bc3", + "Order": 1, + "DeletedAt": null, + "EntryId": "e142ae59-c23c-416b-bfa3-cb7304cd4725", + "Definition": { + "en": { + "Spans": [ + { + "Text": "neuter-passive, like passive but without an agent", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "neutro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NEU", + "pt": "NEU" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2c8ca542-189b-4ae0-9de6-ee65c6efda13", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ikhalike \u0022he.9 should be staying\u0022", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "4ab7f4b4-6ac8-4409-8ce4-ad1684644bc3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "26b5d509-0add-4434-a012-e208612d1fc7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ekh" + }, + "CitationForm": { + "seh": "ekha" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "03e96b83-c7c5-49ce-85eb-9334869c954c", + "Order": 1, + "DeletedAt": null, + "EntryId": "26b5d509-0add-4434-a012-e208612d1fc7", + "Definition": {}, + "Gloss": { + "en": "alone", + "pt": "sozinho" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "42c2ab2e-c9f7-4bdf-8940-76744ec44a2f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iyo aenda okha.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "They went alone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Eles foram sozinhos", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "03e96b83-c7c5-49ce-85eb-9334869c954c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "DeletedAt": null, + "LexemeForm": { + "seh": "end" + }, + "CitationForm": { + "seh": "enda" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6f4a4cae-b335-4cf3-80e7-efad20ea0688", + "Order": 1, + "DeletedAt": null, + "EntryId": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "Definition": {}, + "Gloss": { + "en": "go", + "pt": "ir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "62b4b833-f5ae-4a6b-a19a-e4a00350908e", + "MaybeId": "62b4b833-f5ae-4a6b-a19a-e4a00350908e", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "ComponentSenseId": null, + "ComponentHeadword": "enda" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a1fa379-11d4-4ce6-a09e-fe4c16621ba7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c9759c21-69d4-49f2-abf1-1b5189a166c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a1fa379-11d4-4ce6-a09e-fe4c16621ba7", + "Definition": {}, + "Gloss": { + "en": "very", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "185ac884-3aaf-4db0-b436-46a2c6446595", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cinthu cene cadidi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "coisa mesmo boa", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:41", + "Ws": "en" + } + ] + }, + "SenseId": "c9759c21-69d4-49f2-abf1-1b5189a166c9", + "DeletedAt": null + }, + { + "Id": "36ccf87b-0cfd-42e2-bcd9-75b00aabbc9c", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "munthu ene", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "pessoa mesmo (boa)", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c9759c21-69d4-49f2-abf1-1b5189a166c9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1e60f3f-3606-4ac9-b05b-33a79d0d1478", + "DeletedAt": null, + "LexemeForm": { + "seh": "ene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Enclitic", + "Senses": [ + { + "Id": "14ff3655-598a-4ce5-8186-805c65398553", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1e60f3f-3606-4ac9-b05b-33a79d0d1478", + "Definition": {}, + "Gloss": { + "en": "very", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "Name": { + "en": "Nominalizer", + "pt": "Nominalizador" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "721bd91b-5f1d-4e9a-b65a-0211839b8c2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "eneyi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "26d8aa34-4d0f-40cf-af6a-2a01b1ddbcc8", + "Order": 1, + "DeletedAt": null, + "EntryId": "721bd91b-5f1d-4e9a-b65a-0211839b8c2d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "classes 4\u00265", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "this very one", + "pt": "este mesmo" + }, + "PartOfSpeech": { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d5fdb31-6c26-4f20-bab3-8d86a38eea78", + "DeletedAt": null, + "LexemeForm": { + "seh": "eoo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d1645b43-54ad-4ae3-86a8-2adc01b10b86", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d5fdb31-6c26-4f20-bab3-8d86a38eea78", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ai, o\u0301", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "oh", + "pt": "ai" + }, + "PartOfSpeech": { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3339c937-7f48-42b0-9cfa-e9619fa0c34e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d1645b43-54ad-4ae3-86a8-2adc01b10b86", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d78f80cf-0ebf-4591-9991-aca4b2e1f660", + "DeletedAt": null, + "LexemeForm": { + "seh": "er" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "8d6f187f-1d1e-47a7-ab99-d75b5c0fb7e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "d78f80cf-0ebf-4591-9991-aca4b2e1f660", + "Definition": { + "en": { + "Spans": [ + { + "Text": "applicative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "aplicativa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "APPLIC", + "pt": "APPLIC" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8d3435f5-a7c2-4628-86de-1b02fe3623f6", + "DeletedAt": null, + "LexemeForm": { + "seh": "es" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "e2c0d4bd-f0f9-43a8-8f4e-778deabb7a34", + "Order": 1, + "DeletedAt": null, + "EntryId": "8d3435f5-a7c2-4628-86de-1b02fe3623f6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "causative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causativa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "CAU", + "pt": "CAU" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", + "Order": 2, + "DeletedAt": null, + "EntryId": "8d3435f5-a7c2-4628-86de-1b02fe3623f6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "intensive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "intensiva", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "INTENSE", + "pt": "INTENSE" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9efa1098-b063-4cac-85ab-8ce2c3cb1be9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kutumisa", + "Ws": "en" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": " incomodar por mandar demais", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b3eded59-fb12-417f-b2c6-7794fd3781a9", + "DeletedAt": null, + "LexemeForm": { + "seh": "f" + }, + "CitationForm": { + "seh": "fa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3336e632-6459-4a1c-a23d-905ffe86dd5a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b3eded59-fb12-417f-b2c6-7794fd3781a9", + "Definition": {}, + "Gloss": { + "en": "die", + "pt": "morrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b2934ef0-eaa1-49de-8619-7e01e463ba55", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1 (f a); Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "3336e632-6459-4a1c-a23d-905ffe86dd5a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5c503424-64f9-4610-836f-14c4da5f0f4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "fala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e60e481f-7833-4449-aa05-486579405700", + "Order": 1, + "DeletedAt": null, + "EntryId": "5c503424-64f9-4610-836f-14c4da5f0f4f", + "Definition": {}, + "Gloss": { + "en": "voice", + "pt": "voz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ba8bb68-b29b-4f77-940d-e1f96e41abaa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e60e481f-7833-4449-aa05-486579405700", + "DeletedAt": null + } + ] + }, + { + "Id": "143dddd7-c67c-47a4-8520-d7c97bfea5fb", + "Order": 2, + "DeletedAt": null, + "EntryId": "5c503424-64f9-4610-836f-14c4da5f0f4f", + "Definition": {}, + "Gloss": { + "en": "word", + "pt": "palavra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0fcff43-04f0-447d-b434-d251fb31eeeb", + "DeletedAt": null, + "LexemeForm": { + "seh": "falinya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e4a2ddaf-3936-4686-b2c3-8a4207268d2f", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0fcff43-04f0-447d-b434-d251fb31eeeb", + "Definition": {}, + "Gloss": { + "en": "manioc", + "pt": "mandioca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b823539-b333-4e60-bf2d-1269f3791d5a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "e4a2ddaf-3936-4686-b2c3-8a4207268d2f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a74a73cf-2919-4b86-9774-bd8ab71ae3e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "famb" + }, + "CitationForm": { + "seh": "famba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bea34cfa-cfd1-4785-b126-cab5ac699c34", + "Order": 1, + "DeletedAt": null, + "EntryId": "a74a73cf-2919-4b86-9774-bd8ab71ae3e3", + "Definition": {}, + "Gloss": { + "en": "walk", + "pt": "andar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "643cc712-b3b3-42d0-971e-7a4c8a6cbf1e", + "Name": { + "en": "Walk" + }, + "Code": "7.2.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "973bbf78-246b-45e5-b865-43b0f5eb943a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bea34cfa-cfd1-4785-b126-cab5ac699c34", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1c931bb1-39aa-4fe0-aae4-bb8dbb48fb89", + "DeletedAt": null, + "LexemeForm": { + "seh": "fendezer" + }, + "CitationForm": { + "seh": "fendezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca6c691d-4d25-4930-9734-41c1fc6a80d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "1c931bb1-39aa-4fe0-aae4-bb8dbb48fb89", + "Definition": {}, + "Gloss": { + "en": "come close", + "pt": "aproximar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e7502a3-8524-4c50-be17-6fc4bdc9ccc7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine na iwe tafendezerana dhuzi.", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "ca6c691d-4d25-4930-9734-41c1fc6a80d3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "89ca306f-0355-4a40-a5bc-840995918a8a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ferus" + }, + "CitationForm": { + "seh": "ferusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8a628d12-fc65-4fca-a4cd-b72fcfb3f4e9", + "Order": 1, + "DeletedAt": null, + "EntryId": "89ca306f-0355-4a40-a5bc-840995918a8a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "put on the burner", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "po\u0302r a fervura", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "cook", + "pt": "po\u0302r a fervura" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "319561ec-df01-452a-9100-ac1412366c3f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8a628d12-fc65-4fca-a4cd-b72fcfb3f4e9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0cdffc4-1aa8-4531-9287-ad6a7ed16ad4", + "DeletedAt": null, + "LexemeForm": { + "seh": "fiari" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f472c27-cbde-4af6-882c-332e088042be", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0cdffc4-1aa8-4531-9287-ad6a7ed16ad4", + "Definition": {}, + "Gloss": { + "en": "owe", + "pt": "dever" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "917af0f0-0d4e-4f3e-a591-1782ca0df711", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2f472c27-cbde-4af6-882c-332e088042be", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04533333-ff71-4d1f-a0d4-352b7c3f553e", + "DeletedAt": null, + "LexemeForm": { + "seh": "fik" + }, + "CitationForm": { + "seh": "fika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "46adfeba-dc1c-4ab4-b459-17426311e7ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "04533333-ff71-4d1f-a0d4-352b7c3f553e", + "Definition": {}, + "Gloss": { + "en": "arrive", + "pt": "chegar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e96c24ef-938e-4309-bb19-37048212a25f", + "DeletedAt": null, + "LexemeForm": { + "seh": "fik" + }, + "CitationForm": { + "seh": "fika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ed25fd2d-3626-402b-a8b2-b87ff3fd006e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e96c24ef-938e-4309-bb19-37048212a25f", + "Definition": {}, + "Gloss": { + "en": "itch", + "pt": "sentir comicha\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1484d663-dc6c-4582-84ed-abecc9eb0ba8", + "DeletedAt": null, + "LexemeForm": { + "seh": "fikir" + }, + "CitationForm": { + "seh": "fikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aaa90268-96b6-4621-90c0-b15bdcae3797", + "Order": 1, + "DeletedAt": null, + "EntryId": "1484d663-dc6c-4582-84ed-abecc9eb0ba8", + "Definition": {}, + "Gloss": { + "en": "bury", + "pt": "enterrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de3b319b-4625-4f9e-aaa6-fe0313b1d9ee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "aaa90268-96b6-4621-90c0-b15bdcae3797", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a46a1d26-e47d-41c5-87b7-01477d540e9b", + "DeletedAt": null, + "LexemeForm": { + "seh": "fikir" + }, + "CitationForm": { + "seh": "fikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "05def64a-9f1f-4ad9-9361-09b3892ebdff", + "Order": 1, + "DeletedAt": null, + "EntryId": "a46a1d26-e47d-41c5-87b7-01477d540e9b", + "Definition": {}, + "Gloss": { + "en": "be host", + "pt": "hospedar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8887f572-8cde-4c98-85f5-464708e35a48", + "DeletedAt": null, + "LexemeForm": { + "seh": "finikiz" + }, + "CitationForm": { + "seh": "finikiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32ab3b26-bde6-4c4e-b893-7bdebbba97f3", + "Order": 1, + "DeletedAt": null, + "EntryId": "8887f572-8cde-4c98-85f5-464708e35a48", + "Definition": {}, + "Gloss": { + "en": "cover", + "pt": "cobrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "66934fb0-b84c-4bb6-b203-e044682d2e23", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "32ab3b26-bde6-4c4e-b893-7bdebbba97f3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7c51e49a-836d-4f84-aee7-4a540a2b9a0a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fokotoz" + }, + "CitationForm": { + "seh": "fokotoza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1dfc498d-6fd3-4ab7-bf19-e132a6a65490", + "Order": 1, + "DeletedAt": null, + "EntryId": "7c51e49a-836d-4f84-aee7-4a540a2b9a0a", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "explicar para esclarecer", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "clarify", + "pt": "esclarecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "e080687b-0900-4dd0-9677-e3aaa3eae641", + "Name": { + "en": "Explain" + }, + "Code": "3.5.1.2.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "e2d3d0aa-c1b0-4c76-ac36-d45394dbe9ed", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "alonga na kufokotoza", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "falou com insiste\u0301ncia", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "1dfc498d-6fd3-4ab7-bf19-e132a6a65490", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e423ade-f5ae-4881-831e-7ae1eba78ea2", + "DeletedAt": null, + "LexemeForm": { + "seh": "fond" + }, + "CitationForm": { + "seh": "fonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "93fbb734-6c88-49d4-9b17-9eeb0c71173a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e423ade-f5ae-4881-831e-7ae1eba78ea2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the action of dipping bread or corn meal into a sauce", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dip food", + "pt": "molhar comida" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "12b6934d-3a4a-4623-995f-865f401349ab", + "Name": { + "en": "Manner of eating" + }, + "Code": "5.2.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "79d06fc2-3d64-4f71-b9ee-aa3d0f54c23c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "93fbb734-6c88-49d4-9b17-9eeb0c71173a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "64dc38ed-1567-41c8-8d40-a5fc042637a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "fotokodzer" + }, + "CitationForm": { + "seh": "fotokodzera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bb62ac16-3829-45be-baa9-737a7dfb8921", + "Order": 1, + "DeletedAt": null, + "EntryId": "64dc38ed-1567-41c8-8d40-a5fc042637a7", + "Definition": {}, + "Gloss": { + "en": "confirm", + "pt": "confirmar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9874d49c-d3ad-42c6-aec2-d42f0fcd7943", + "DeletedAt": null, + "LexemeForm": { + "seh": "foxolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "08da4e99-a9f0-4f90-a25a-3f7d56bff893", + "Order": 1, + "DeletedAt": null, + "EntryId": "9874d49c-d3ad-42c6-aec2-d42f0fcd7943", + "Definition": {}, + "Gloss": { + "en": "shovel", + "pt": "pa\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "73c37803-5f1f-43b0-b290-99175be8547b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "08da4e99-a9f0-4f90-a25a-3f7d56bff893", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1765f9de-cbee-4381-9d6c-6f810d63749f", + "DeletedAt": null, + "LexemeForm": { + "seh": "foya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3dcf0108-efef-48f1-932c-0c1f2b25a959", + "Order": 1, + "DeletedAt": null, + "EntryId": "1765f9de-cbee-4381-9d6c-6f810d63749f", + "Definition": {}, + "Gloss": { + "en": "capalana", + "pt": "capalana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5b1798a4-288f-4469-b6d2-ad002aa33df6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "3dcf0108-efef-48f1-932c-0c1f2b25a959", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3494f2bf-279f-4245-9d55-8e51403e571a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fudz" + }, + "CitationForm": { + "seh": "fudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42ee67c5-c6a9-4c1a-984a-30c5df50572f", + "Order": 1, + "DeletedAt": null, + "EntryId": "3494f2bf-279f-4245-9d55-8e51403e571a", + "Definition": {}, + "Gloss": { + "en": "destroy", + "pt": "destruir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "37c4a4d9-2631-427d-99d1-2c6d2fcad89c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "42ee67c5-c6a9-4c1a-984a-30c5df50572f", + "DeletedAt": null + } + ] + }, + { + "Id": "a024c2c5-3356-4b6d-95c0-f6b04c3eb1fb", + "Order": 2, + "DeletedAt": null, + "EntryId": "3494f2bf-279f-4245-9d55-8e51403e571a", + "Definition": {}, + "Gloss": { + "en": "unmake", + "pt": "disfazer" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6aecfbe8-5fa1-415f-bb03-aedba0b3309a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ful" + }, + "CitationForm": { + "seh": "fula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7e4ab6ec-915b-40b4-b04f-e6fae33c1958", + "Order": 1, + "DeletedAt": null, + "EntryId": "6aecfbe8-5fa1-415f-bb03-aedba0b3309a", + "Definition": {}, + "Gloss": { + "en": "wash clothes", + "pt": "lavar roupa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9cb0a5d-0379-450b-a1fc-f5224a36907b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "7e4ab6ec-915b-40b4-b04f-e6fae33c1958", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff8a7e15-6e8b-4879-b659-7cd3dd60ec30", + "DeletedAt": null, + "LexemeForm": { + "seh": "fulamir" + }, + "CitationForm": { + "seh": "fulamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "93ce8887-85b4-4cfb-9d41-d3a78a59a674", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff8a7e15-6e8b-4879-b659-7cd3dd60ec30", + "Definition": { + "en": { + "Spans": [ + { + "Text": "stick your butt out to someone as an insult", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "enclinar com rabo extendido para insultar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "insult", + "pt": "insultar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "22a505f0-0272-49ff-b9f9-1ca68ae5befe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "93ce8887-85b4-4cfb-9d41-d3a78a59a674", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1cf298d6-1d76-4fa3-9cb8-9311eef020c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "fulatir" + }, + "CitationForm": { + "seh": "fulatira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c96968f6-3ba4-41dc-866f-46621635a4b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "1cf298d6-1d76-4fa3-9cb8-9311eef020c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bend over with buttocks extended in a curse", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "enclinar com rabo extendido para amaldicoar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "curse", + "pt": "amaldic\u0327oar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6814f2c6-622d-4bab-b6a0-d102e814be8e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth:fwatira", + "Ws": "en" + } + ] + }, + "SenseId": "c96968f6-3ba4-41dc-866f-46621635a4b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "DeletedAt": null, + "LexemeForm": { + "seh": "fun" + }, + "CitationForm": { + "seh": "funa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4f0592b-3caa-4494-8c29-da9d27fdbe74", + "Order": 1, + "DeletedAt": null, + "EntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "Definition": {}, + "Gloss": { + "en": "want", + "pt": "querer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "d030f0c7-31a3-47da-be35-46f1eba63ae9", + "Name": { + "en": "Like, love" + }, + "Code": "3.4.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "484817a2-3fd3-4c6f-87a1-d9aa6d6c7720", + "Order": 2, + "DeletedAt": null, + "EntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "love, like", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "amar, gostar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "love", + "pt": "amar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b68b4b80-2291-4ad4-8489-5908f4a3ce32", + "Order": 3, + "DeletedAt": null, + "EntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "Definition": {}, + "Gloss": { + "en": "be about to" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "a4ba24ee-ccac-46cf-bac9-8bf2e33c3cbf", + "MaybeId": "a4ba24ee-ccac-46cf-bac9-8bf2e33c3cbf", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "de894a93-add4-4b37-b79b-beed925550f9", + "ComplexFormHeadword": "funana", + "ComponentEntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "ComponentSenseId": null, + "ComponentHeadword": "funa" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "de894a93-add4-4b37-b79b-beed925550f9", + "DeletedAt": null, + "LexemeForm": { + "seh": "funan" + }, + "CitationForm": { + "seh": "funana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c7506d9e-5153-476e-a335-8809d256bb16", + "Order": 1, + "DeletedAt": null, + "EntryId": "de894a93-add4-4b37-b79b-beed925550f9", + "Definition": {}, + "Gloss": { + "en": "love", + "pt": "amar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "55b0b3aa-2b3c-4cc6-bb6b-fb02ac02ae05", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "c7506d9e-5153-476e-a335-8809d256bb16", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "a4ba24ee-ccac-46cf-bac9-8bf2e33c3cbf", + "MaybeId": "a4ba24ee-ccac-46cf-bac9-8bf2e33c3cbf", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "de894a93-add4-4b37-b79b-beed925550f9", + "ComplexFormHeadword": "funana", + "ComponentEntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "ComponentSenseId": null, + "ComponentHeadword": "funa" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a2b92f44-6f7b-4b8a-ba78-53be3ea38f70", + "DeletedAt": null, + "LexemeForm": { + "seh": "funguk" + }, + "CitationForm": { + "seh": "funguka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "30c7b3aa-10e4-4946-ac04-e6d7a6be141c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a2b92f44-6f7b-4b8a-ba78-53be3ea38f70", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "aberto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "243feb07-6b7c-4f98-aefe-afa7dae94662", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "30c7b3aa-10e4-4946-ac04-e6d7a6be141c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6bdf3cfd-4a4c-4a26-a127-9fefd16a510d", + "DeletedAt": null, + "LexemeForm": { + "seh": "fungul" + }, + "CitationForm": { + "seh": "fungula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4d763ac-cce7-4b81-85cf-55ef86f16cb2", + "Order": 1, + "DeletedAt": null, + "EntryId": "6bdf3cfd-4a4c-4a26-a127-9fefd16a510d", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "abrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4d12a829-a480-4217-90fb-b62ad06655ec", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a4d763ac-cce7-4b81-85cf-55ef86f16cb2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "474f2c0e-a09c-4c42-87c2-287b82a99ce3", + "DeletedAt": null, + "LexemeForm": { + "seh": "funik" + }, + "CitationForm": { + "seh": "funika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff9430bd-53e8-4142-9071-21a5cad5652a", + "Order": 1, + "DeletedAt": null, + "EntryId": "474f2c0e-a09c-4c42-87c2-287b82a99ce3", + "Definition": {}, + "Gloss": { + "en": "need", + "pt": "precisa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8408e00a-57eb-4a5f-81b0-7392f0679ce3", + "DeletedAt": null, + "LexemeForm": { + "seh": "futa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58c422e6-bf58-48f7-837b-0d694c46c178", + "Order": 1, + "DeletedAt": null, + "EntryId": "8408e00a-57eb-4a5f-81b0-7392f0679ce3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "any type of oil", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "oil", + "pt": "o\u0301leo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f99ff374-4851-4b27-bc38-334fec5d48cb", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mafuta a kudya", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "o\u0301leo de cosinha", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist, Quembo for plural", + "Ws": "en" + } + ] + }, + "SenseId": "58c422e6-bf58-48f7-837b-0d694c46c178", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33653114-062e-4c07-8a3f-835cf876c367", + "DeletedAt": null, + "LexemeForm": { + "seh": "futhuk" + }, + "CitationForm": { + "seh": "futhuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1740df40-5673-47aa-847e-65c437550442", + "Order": 1, + "DeletedAt": null, + "EntryId": "33653114-062e-4c07-8a3f-835cf876c367", + "Definition": {}, + "Gloss": { + "en": "extended", + "pt": "estendido" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1dc4e292-5802-4be5-9447-7d026d0ab825", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1740df40-5673-47aa-847e-65c437550442", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "791438d0-5c0e-4fe9-b1cf-01887a956807", + "DeletedAt": null, + "LexemeForm": { + "seh": "futhul" + }, + "CitationForm": { + "seh": "futhula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8637fd45-a2f1-4e08-95d3-8d79ca10a64f", + "Order": 1, + "DeletedAt": null, + "EntryId": "791438d0-5c0e-4fe9-b1cf-01887a956807", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "abrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e7eb6b6-4c78-4043-a007-2eba7bab5ec2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8637fd45-a2f1-4e08-95d3-8d79ca10a64f", + "DeletedAt": null + } + ] + }, + { + "Id": "47f507af-496d-4983-8c2f-74ddd6843b5f", + "Order": 2, + "DeletedAt": null, + "EntryId": "791438d0-5c0e-4fe9-b1cf-01887a956807", + "Definition": {}, + "Gloss": { + "en": "stretch", + "pt": "esticar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2a66c2d8-3c6c-44c6-9a0e-5be536c4ed9a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuy" + }, + "CitationForm": { + "seh": "fuya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "adf88e54-3b71-4d63-bcb0-ddce4ff78565", + "Order": 1, + "DeletedAt": null, + "EntryId": "2a66c2d8-3c6c-44c6-9a0e-5be536c4ed9a", + "Definition": {}, + "Gloss": { + "en": "raise child", + "pt": "criar crianc\u0327a" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "586a0cf0-3865-4065-aaab-f7195f0b049c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "adf88e54-3b71-4d63-bcb0-ddce4ff78565", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4975651a-b3dc-4ce7-bd8d-be3f5308de84", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuz" + }, + "CitationForm": { + "seh": "fuza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8077a104-cdc7-4366-8bf5-b73997d3abfa", + "Order": 1, + "DeletedAt": null, + "EntryId": "4975651a-b3dc-4ce7-bd8d-be3f5308de84", + "Definition": {}, + "Gloss": { + "en": "destroy", + "pt": "destruir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c1bd1b81-96b7-4efb-98c3-182a3dc31ce6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8077a104-cdc7-4366-8bf5-b73997d3abfa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1c504db-597f-4e62-bcf7-31f623c11bbd", + "DeletedAt": null, + "LexemeForm": { + "seh": "gak" + }, + "CitationForm": { + "seh": "gaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "728743a9-61b1-48e1-97ec-2d37d1dbed8f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1c504db-597f-4e62-bcf7-31f623c11bbd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the state of being lit", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "burning", + "pt": "esta\u0301 aceso" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f91ffea6-c39d-41e6-9c88-3bc826c78158", + "DeletedAt": null, + "LexemeForm": { + "seh": "gamph" + }, + "CitationForm": { + "seh": "gampha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14518a12-4f6b-457c-b059-31e8941432c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "f91ffea6-c39d-41e6-9c88-3bc826c78158", + "Definition": {}, + "Gloss": { + "en": "catch", + "pt": "encaixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3a8bb44-ce92-4e35-a713-d57c98366b66", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "iwe kudza kakugampha na manja", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "you will be caught in the hand", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "14518a12-4f6b-457c-b059-31e8941432c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "98ae0610-e818-4093-8762-6922d135be90", + "DeletedAt": null, + "LexemeForm": { + "seh": "gas" + }, + "CitationForm": { + "seh": "gasa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c67be91a-7537-47ac-b4ac-f16dddba5dea", + "Order": 1, + "DeletedAt": null, + "EntryId": "98ae0610-e818-4093-8762-6922d135be90", + "Definition": {}, + "Gloss": { + "en": "light flame", + "pt": "acender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ea161ff-d584-41f1-8242-31566d5f6042", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "c67be91a-7537-47ac-b4ac-f16dddba5dea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0f93031-e9fe-4b7d-b6eb-f1b4b944fee3", + "DeletedAt": null, + "LexemeForm": { + "seh": "gaw" + }, + "CitationForm": { + "seh": "gawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ecd2581-0ea3-4613-8ed5-2643085d6a61", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0f93031-e9fe-4b7d-b6eb-f1b4b944fee3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "organize distribution", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "dividir antes de distribuir", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "arrange", + "pt": "dividir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6233f99-8975-400c-a1cb-69ec5d7c9ab2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gawiz" + }, + "CitationForm": { + "seh": "gawiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1df766e6-a8e1-476b-9402-9f0aeadb5eb3", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6233f99-8975-400c-a1cb-69ec5d7c9ab2", + "Definition": {}, + "Gloss": { + "en": "distribute", + "pt": "distribuir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ea2ea2a2-daa4-4c5c-b880-bedc73e66594", + "Order": 2, + "DeletedAt": null, + "EntryId": "a6233f99-8975-400c-a1cb-69ec5d7c9ab2", + "Definition": {}, + "Gloss": { + "en": "divide", + "pt": "dividir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "34d9b8c5-9d97-489e-9cc2-dbce4193b503", + "DeletedAt": null, + "LexemeForm": { + "seh": "gay" + }, + "CitationForm": { + "seh": "gaya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5121e7bd-4eb3-4e74-9779-d833fcbd6c33", + "Order": 1, + "DeletedAt": null, + "EntryId": "34d9b8c5-9d97-489e-9cc2-dbce4193b503", + "Definition": {}, + "Gloss": { + "en": "vanity", + "pt": "vaidade" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "016ab5a9-4a88-4399-b185-a4b0797078ef", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze; George didn\u0027t know", + "Ws": "en" + } + ] + }, + "SenseId": "5121e7bd-4eb3-4e74-9779-d833fcbd6c33", + "DeletedAt": null + } + ] + }, + { + "Id": "209e52a4-dac0-4220-904d-bd2774dfb631", + "Order": 2, + "DeletedAt": null, + "EntryId": "34d9b8c5-9d97-489e-9cc2-dbce4193b503", + "Definition": {}, + "Gloss": { + "en": "be proud", + "pt": "ser vaidoso" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2bb1472-71b7-4fcb-8434-e68dd6d592c0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndisagaya na njinga yanga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eu orgulho-me com bicicleta minha.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Alves", + "Ws": "en" + } + ] + }, + "SenseId": "209e52a4-dac0-4220-904d-bd2774dfb631", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bc0b964c-3cc8-473c-b138-85659e0bbba3", + "DeletedAt": null, + "LexemeForm": { + "seh": "gerego" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0fd92c10-05b8-475a-8a64-7fd308bd6740", + "Order": 1, + "DeletedAt": null, + "EntryId": "bc0b964c-3cc8-473c-b138-85659e0bbba3", + "Definition": {}, + "Gloss": { + "en": "Greek", + "pt": "grego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0740c14-da52-47d4-8fae-0654717a89b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "goa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8b4ba5d6-8067-44f7-8484-35c96aa7d262", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0740c14-da52-47d4-8fae-0654717a89b1", + "Definition": {}, + "Gloss": { + "en": "valley", + "pt": "vale" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7222a8d-53f8-486d-93d5-a09fd3cfa514", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8b4ba5d6-8067-44f7-8484-35c96aa7d262", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8f29c302-5175-4ec7-9a8d-9a051f40f54c", + "DeletedAt": null, + "LexemeForm": { + "seh": "goce" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3b6bbb6-5c84-4ff0-a8e6-1e2899d12400", + "Order": 1, + "DeletedAt": null, + "EntryId": "8f29c302-5175-4ec7-9a8d-9a051f40f54c", + "Definition": {}, + "Gloss": { + "en": "chaff", + "pt": "farelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a051241d-37ff-454b-9cfe-b3a9c7f49556", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b3b6bbb6-5c84-4ff0-a8e6-1e2899d12400", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "68d57905-5566-4f7c-97ec-feb266154ccd", + "DeletedAt": null, + "LexemeForm": { + "seh": "godam" + }, + "CitationForm": { + "seh": "godama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8a8e149b-f056-4234-9810-4b90b3ffb19d", + "Order": 1, + "DeletedAt": null, + "EntryId": "68d57905-5566-4f7c-97ec-feb266154ccd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "kneel as an act of respect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "joelhar como acto de respeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "kneel", + "pt": "joelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c4b750a2-65a5-44da-b4df-035b59fc2179", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8a8e149b-f056-4234-9810-4b90b3ffb19d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a95d2f76-0b0d-4cfa-a009-c8757e792f8b", + "DeletedAt": null, + "LexemeForm": { + "seh": "godamir" + }, + "CitationForm": { + "seh": "godamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1743274c-54d5-4ff5-b444-3d4153c77cb5", + "Order": 1, + "DeletedAt": null, + "EntryId": "a95d2f76-0b0d-4cfa-a009-c8757e792f8b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "kneel for someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "joelhar a favor de alge\u0301m", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "kneel", + "pt": "joelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "360fdfb7-d3c8-4769-a159-0edb7555ee12", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1743274c-54d5-4ff5-b444-3d4153c77cb5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "060dcab9-201d-4c68-9991-414e43d520c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "gogodo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b35a109a-8344-44cc-bf8f-3c9c70d5a868", + "Order": 1, + "DeletedAt": null, + "EntryId": "060dcab9-201d-4c68-9991-414e43d520c7", + "Definition": {}, + "Gloss": { + "en": "bone", + "pt": "osso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7131c40-26b7-4ddc-99b6-11dffa7bc24b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b35a109a-8344-44cc-bf8f-3c9c70d5a868", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e30f9934-139d-4723-be5d-f02dc697ef97", + "DeletedAt": null, + "LexemeForm": { + "seh": "gogom" + }, + "CitationForm": { + "seh": "gogoma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3bd37e79-5717-47bb-8b27-c83819adec6e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e30f9934-139d-4723-be5d-f02dc697ef97", + "Definition": {}, + "Gloss": { + "en": "kneel", + "pt": "ajoelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "402fbb8e-7e4e-4c93-bb84-4b2808ba28a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cdc935e-49af-4457-a414-d38b10ec906b", + "Order": 1, + "DeletedAt": null, + "EntryId": "402fbb8e-7e4e-4c93-bb84-4b2808ba28a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the water next to the bank of a river or lake", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "river bank", + "pt": "margem de rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "928741b5-bff6-4dd1-be37-ec6e7a4eb6ca", + "Name": { + "en": "Island, shore" + }, + "Code": "1.3.1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c1cae661-4522-47c5-8c5e-d15babf756b7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8cdc935e-49af-4457-a414-d38b10ec906b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef7645bf-0e76-437f-a366-c7e615d32650", + "DeletedAt": null, + "LexemeForm": { + "seh": "gon" + }, + "CitationForm": { + "seh": "gona" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a97c0f4d-73e0-4b95-931f-31c8a515729e", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef7645bf-0e76-437f-a366-c7e615d32650", + "Definition": {}, + "Gloss": { + "en": "sleep", + "pt": "dormir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b111978d-560f-43a3-85e8-c60f1db7d61e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwagona piadidi?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "dormiu bem?", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a97c0f4d-73e0-4b95-931f-31c8a515729e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cb59cbcd-fa82-45cf-8e12-3da5001325c5", + "DeletedAt": null, + "LexemeForm": { + "seh": "gop" + }, + "CitationForm": { + "seh": "gopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04f6c79e-348b-43f0-9cd4-0725a74814d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "cb59cbcd-fa82-45cf-8e12-3da5001325c5", + "Definition": {}, + "Gloss": { + "en": "be afraid", + "pt": "ter medo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e2a12308-0c80-412f-ac80-983f7d821975", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "04f6c79e-348b-43f0-9cd4-0725a74814d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0f0d55f6-6fa6-4e17-a518-029033bc4969", + "DeletedAt": null, + "LexemeForm": { + "seh": "gubudz" + }, + "CitationForm": { + "seh": "gubudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b4c2c6a-3c8e-45d0-927d-385f7cbb75bd", + "Order": 1, + "DeletedAt": null, + "EntryId": "0f0d55f6-6fa6-4e17-a518-029033bc4969", + "Definition": {}, + "Gloss": { + "en": "shake dust off", + "pt": "sacudir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac3922af-dae0-4eda-9404-914c8a181e9d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b4c2c6a-3c8e-45d0-927d-385f7cbb75bd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65b7d786-31fc-470b-9bb2-e87ea2188436", + "DeletedAt": null, + "LexemeForm": { + "seh": "gul" + }, + "CitationForm": { + "seh": "gula" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "559be1cc-d82c-415d-b5b7-2043a9604511", + "Order": 1, + "DeletedAt": null, + "EntryId": "65b7d786-31fc-470b-9bb2-e87ea2188436", + "Definition": {}, + "Gloss": { + "en": "buy", + "pt": "comprar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0de692a3-fefa-46bb-8b9d-9ead9a0456b3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "559be1cc-d82c-415d-b5b7-2043a9604511", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ca4d7847-b8d1-49ef-b44a-ad227810b8b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gulis" + }, + "CitationForm": { + "seh": "gulisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07dc886f-0dba-4aa6-963a-3d891662d3bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "ca4d7847-b8d1-49ef-b44a-ad227810b8b2", + "Definition": {}, + "Gloss": { + "en": "sell", + "pt": "vender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "a758718d-6e90-471d-acde-a637ba9ff9eb", + "Name": { + "en": "Sell" + }, + "Code": "6.8.4.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "11412391-9ed0-4ab4-8cb7-9008950b38ac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "07dc886f-0dba-4aa6-963a-3d891662d3bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33f6b0d5-78e9-4301-ad05-f691b0801faf", + "DeletedAt": null, + "LexemeForm": { + "seh": "guman" + }, + "CitationForm": { + "seh": "gumana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "25b238b4-a5d7-4131-a98d-62f2238a4555", + "Order": 1, + "DeletedAt": null, + "EntryId": "33f6b0d5-78e9-4301-ad05-f691b0801faf", + "Definition": {}, + "Gloss": { + "en": "find", + "pt": "encontrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c74009b6-0cff-45dc-9f0b-143981f0281c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "25b238b4-a5d7-4131-a98d-62f2238a4555", + "DeletedAt": null + } + ] + }, + { + "Id": "0d63ae85-adf8-4fb0-a52a-58a5c41bfb86", + "Order": 2, + "DeletedAt": null, + "EntryId": "33f6b0d5-78e9-4301-ad05-f691b0801faf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to consult a traditional doctor to find the cause of some calamity", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "consult", + "pt": "consultar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77b0ac3f-3f08-4788-a65c-e0160206ef9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "gumanik" + }, + "CitationForm": { + "seh": "gumanika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4168c68a-7b17-4f1a-97f7-37f5575e39e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "77b0ac3f-3f08-4788-a65c-e0160206ef9d", + "Definition": {}, + "Gloss": { + "en": "exist", + "pt": "existir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ed2300d-319a-4df0-b0c9-ea6b504873f8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4168c68a-7b17-4f1a-97f7-37f5575e39e1", + "DeletedAt": null + } + ] + }, + { + "Id": "134179c7-370a-4bbb-8fe8-478cce52139d", + "Order": 2, + "DeletedAt": null, + "EntryId": "77b0ac3f-3f08-4788-a65c-e0160206ef9d", + "Definition": {}, + "Gloss": { + "en": "encounter", + "pt": "encontrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a212da8-c349-4436-970c-2495a7b9ecf0", + "DeletedAt": null, + "LexemeForm": { + "seh": "gumany" + }, + "CitationForm": { + "seh": "gumanya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c9f2594-1004-425c-866f-d88e69fe7472", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a212da8-c349-4436-970c-2495a7b9ecf0", + "Definition": {}, + "Gloss": { + "en": "gather", + "pt": "juntar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ef18e00-2ef8-4288-ac17-f3290fc31c43", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1c9f2594-1004-425c-866f-d88e69fe7472", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31364070-c0c9-455d-bd44-580607d2b0b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "guta" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7502b8d4-c1a1-46c6-a985-46966413ff32", + "Order": 1, + "DeletedAt": null, + "EntryId": "31364070-c0c9-455d-bd44-580607d2b0b3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wooden fortress", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "fortaleza de paus", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "fortress", + "pt": "fortaleza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "08d3c2ee-fa76-49cc-a55f-0e05db1b7ca2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7502b8d4-c1a1-46c6-a985-46966413ff32", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81465344-4602-40cb-b50c-540526f6335a", + "DeletedAt": null, + "LexemeForm": { + "seh": "guwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78a7affb-82be-4888-be1c-a5ece125682b", + "Order": 1, + "DeletedAt": null, + "EntryId": "81465344-4602-40cb-b50c-540526f6335a", + "Definition": {}, + "Gloss": { + "en": "threshing floor", + "pt": "eira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "da257faa-dbcb-4376-887b-e9242a548f8f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "78a7affb-82be-4888-be1c-a5ece125682b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b63fa2ec-5358-4813-ba55-933631219491", + "DeletedAt": null, + "LexemeForm": { + "seh": "guz" + }, + "CitationForm": { + "seh": "guza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2030a4db-c8e3-4492-8eee-ee03fa95cdae", + "Order": 1, + "DeletedAt": null, + "EntryId": "b63fa2ec-5358-4813-ba55-933631219491", + "Definition": {}, + "Gloss": { + "en": "expulse", + "pt": "expusar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1adb8cc4-7376-46db-a1c9-86ad606257e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2030a4db-c8e3-4492-8eee-ee03fa95cdae", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03830f0e-f6ea-4022-9293-9b1700f8b954", + "DeletedAt": null, + "LexemeForm": { + "seh": "gw" + }, + "CitationForm": { + "seh": "gwa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "aa2f490f-656d-4fac-85ba-f27ffd198fc7", + "Order": 1, + "DeletedAt": null, + "EntryId": "03830f0e-f6ea-4022-9293-9b1700f8b954", + "Definition": {}, + "Gloss": { + "en": "play", + "pt": "jogar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fef0afcb-272a-41ce-a4c8-2cba61d2edd4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kugwa bola; kugwa makarta", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "jogar bola; jogar cartas", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "aa2f490f-656d-4fac-85ba-f27ffd198fc7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "07a07401-2f83-4892-8cc7-1527999bbfc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "gw" + }, + "CitationForm": { + "seh": "gwa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d3c7810d-8e90-466e-befb-dfc3f9424bfd", + "Order": 1, + "DeletedAt": null, + "EntryId": "07a07401-2f83-4892-8cc7-1527999bbfc1", + "Definition": {}, + "Gloss": { + "en": "fall", + "pt": "cair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6fdd753f-4ba7-4e70-962d-2894f0816817", + "DeletedAt": null, + "LexemeForm": { + "seh": "gwand" + }, + "CitationForm": { + "seh": "gwanda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d3eb5101-3c90-4cec-9ba8-abcca2cc7fd4", + "Order": 1, + "DeletedAt": null, + "EntryId": "6fdd753f-4ba7-4e70-962d-2894f0816817", + "Definition": {}, + "Gloss": { + "en": "cut", + "pt": "cortar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d59caf5d-4b8f-4f1a-9195-2fe788742352", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d3eb5101-3c90-4cec-9ba8-abcca2cc7fd4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d6dfe4bd-5387-4ae1-b4b9-08ff97f81ad8", + "DeletedAt": null, + "LexemeForm": { + "seh": "gwedz" + }, + "CitationForm": { + "seh": "gwedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6ccc4bda-d84e-44bc-b401-7a831fe7e78e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d6dfe4bd-5387-4ae1-b4b9-08ff97f81ad8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "physical contact w/ one\u0027s body", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "touch", + "pt": "tocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d68a700a-232c-4b9c-a44f-1ab925baabc9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "andigwedza na manja ace", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "ele tocou-me com a sua mao", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "6ccc4bda-d84e-44bc-b401-7a831fe7e78e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "39ab1370-4e8d-4064-8de8-18dbd31eebe2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gwes" + }, + "CitationForm": { + "seh": "gwesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8a75f1f8-dea3-4c3f-9e35-63b674b1d525", + "Order": 1, + "DeletedAt": null, + "EntryId": "39ab1370-4e8d-4064-8de8-18dbd31eebe2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cause another to drop", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causar outra deixar cair", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "to drop one", + "pt": "deixar cair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05c3984a-e546-4d7e-91a5-c3b7e19dc7fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "8a75f1f8-dea3-4c3f-9e35-63b674b1d525", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "676eeb8e-02d6-44f1-8c4c-033dbfd95fa0", + "DeletedAt": null, + "LexemeForm": { + "seh": "ha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "371d8c7f-e0eb-41e2-a9b0-ae1e8cf6daa3", + "Order": 1, + "DeletedAt": null, + "EntryId": "676eeb8e-02d6-44f1-8c4c-033dbfd95fa0", + "Definition": {}, + "Gloss": { + "en": "what!", + "pt": "ae\u0301" + }, + "PartOfSpeech": { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cd530a5c-6ae1-4738-8c38-67d148f3c3be", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ha! Ndi tenepa?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "A final! E\u0301 assim?", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "371d8c7f-e0eb-41e2-a9b0-ae1e8cf6daa3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c916c100-f949-474f-b38b-0eb5ae696e6d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "226d186c-11e5-4971-b2e2-5cff94e1a649", + "Order": 1, + "DeletedAt": null, + "EntryId": "c916c100-f949-474f-b38b-0eb5ae696e6d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "non-first person negative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "negativo na\u0303o primeiro pessoa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NEG", + "pt": "NEG" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "15dddc00-6015-4412-aa3b-644db854c89e", + "DeletedAt": null, + "LexemeForm": { + "seh": "i" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "62af26f3-cd22-4b25-82dc-3dc7cb6ba886", + "Order": 1, + "DeletedAt": null, + "EntryId": "15dddc00-6015-4412-aa3b-644db854c89e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "nominalizer", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "NZR", + "pt": "NZR" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e0de300-01df-4985-aa81-83ad5e128f7c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kutonga, utongi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "to judge, justice", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "julgar, justic\u0327a", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "62af26f3-cd22-4b25-82dc-3dc7cb6ba886", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41eaf8e3-fad8-4957-b901-21870f508091", + "DeletedAt": null, + "LexemeForm": { + "seh": "i" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "9800597f-0dab-48f8-93cc-b1a2be904e29", + "Order": 1, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a9da180c-b617-4897-bbc3-9483e3ec9fae", + "Order": 2, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b7dd12e2-4eaa-40a1-a07e-8239b886f77f", + "Order": 3, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ad95bb10-5844-4233-9481-227dc410fc16", + "Order": 4, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86edf77a-16db-4ac5-9c24-a34bd334c712", + "DeletedAt": null, + "LexemeForm": { + "seh": "ici" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d57c0281-f302-402c-bf96-e6897451d953", + "Order": 1, + "DeletedAt": null, + "EntryId": "86edf77a-16db-4ac5-9c24-a34bd334c712", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71558ef9-9ec0-428b-9918-bd352f33e87b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ico" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c1d9fc69-c614-45bf-9812-fa8874b9de27", + "Order": 1, + "DeletedAt": null, + "EntryId": "71558ef9-9ec0-428b-9918-bd352f33e87b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "7", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18244a90-d9a5-406d-ac82-3680812dfa4e", + "DeletedAt": null, + "LexemeForm": { + "seh": "id" + }, + "CitationForm": { + "seh": "ida" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b179aa5a-18b1-43c4-8802-225af8d2473a", + "Order": 1, + "DeletedAt": null, + "EntryId": "18244a90-d9a5-406d-ac82-3680812dfa4e", + "Definition": {}, + "Gloss": { + "en": "hate", + "pt": "odiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "36d8da47-40ba-48d0-b841-e7869c2560a6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "b179aa5a-18b1-43c4-8802-225af8d2473a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba05abc0-9e22-48c4-860c-ae55ec35435d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ife" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0f47bdf1-121d-4e9c-b3ab-e1716b92b0bd", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba05abc0-9e22-48c4-860c-ae55ec35435d", + "Definition": {}, + "Gloss": { + "en": "we", + "pt": "nos" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d94e7e87-0b68-48e3-a7b4-e77691b69396", + "DeletedAt": null, + "LexemeForm": { + "seh": "ikh" + }, + "CitationForm": { + "seh": "ikha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f6c26a1b-587e-41d7-a688-8e9a4e679c31", + "Order": 1, + "DeletedAt": null, + "EntryId": "d94e7e87-0b68-48e3-a7b4-e77691b69396", + "Definition": {}, + "Gloss": { + "en": "put", + "pt": "po\u0302r" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f9386d77-735b-4fa6-adfd-61be4b09f4e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "iko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "073b3c7a-0c55-4573-9b95-c0b9162a564d", + "Order": 1, + "DeletedAt": null, + "EntryId": "f9386d77-735b-4fa6-adfd-61be4b09f4e8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "12, 15, 17", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "077ce6ae-c760-40ab-8ab2-577ffcfa7882", + "DeletedAt": null, + "LexemeForm": { + "seh": "N" + }, + "CitationForm": { + "seh": "im" + }, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "d7e20ee1-b678-4935-8929-483003583810", + "Order": 1, + "DeletedAt": null, + "EntryId": "077ce6ae-c760-40ab-8ab2-577ffcfa7882", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7de2bf36-4c0e-4b69-b523-60f182c15207", + "DeletedAt": null, + "LexemeForm": { + "seh": "N" + }, + "CitationForm": { + "seh": "im" + }, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "09d14f33-ec36-4b5e-aad4-59ab916ba38e", + "Order": 1, + "DeletedAt": null, + "EntryId": "7de2bf36-4c0e-4b69-b523-60f182c15207", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Class 9", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Classe 9", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "9", + "pt": "9" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62d6c043-cda5-45a1-8241-3195e520ac10", + "DeletedAt": null, + "LexemeForm": { + "seh": "imb" + }, + "CitationForm": { + "seh": "imba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbf8b07f-44e9-4847-beee-21ee79a0e073", + "Order": 1, + "DeletedAt": null, + "EntryId": "62d6c043-cda5-45a1-8241-3195e520ac10", + "Definition": {}, + "Gloss": { + "en": "sing", + "pt": "cantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86cd0533-e90b-4346-b4ec-92a60c97631a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cbf8b07f-44e9-4847-beee-21ee79a0e073", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b2e7094b-bb12-4b04-9af0-4b543a1914e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "imba ciruzwi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "e86f33e1-ff72-4335-a704-04954f4ebee1", + "Order": 1, + "DeletedAt": null, + "EntryId": "b2e7094b-bb12-4b04-9af0-4b543a1914e5", + "Definition": {}, + "Gloss": { + "en": "whistle", + "pt": "assobiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c982c11f-c2e8-4ca7-aff6-e76bed67e770", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "e86f33e1-ff72-4335-a704-04954f4ebee1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d9132390-95d3-4bf2-ac0f-81d6ff226c17", + "DeletedAt": null, + "LexemeForm": { + "seh": "bu" + }, + "CitationForm": { + "seh": "imbu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f24bb8e1-419f-4ff0-9020-ad57bec92129", + "Order": 1, + "DeletedAt": null, + "EntryId": "d9132390-95d3-4bf2-ac0f-81d6ff226c17", + "Definition": {}, + "Gloss": { + "en": "mosquito", + "pt": "mosquito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "985b0443-5a12-4944-ae93-f23d9714d64c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "imbu maningi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "muito mosquitos", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f24bb8e1-419f-4ff0-9020-ad57bec92129", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c53c832-8e62-4820-a846-2012e934105d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvi" + }, + "CitationForm": { + "seh": "imbvi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41dc96b0-ec32-4968-adf5-420c21fa5a8b", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c53c832-8e62-4820-a846-2012e934105d", + "Definition": {}, + "Gloss": { + "en": "white hair", + "pt": "cabelo branco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e5658ce5-fe7d-41c9-860f-fe4dd6baa06f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:28; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "41dc96b0-ec32-4968-adf5-420c21fa5a8b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d4e97e2b-026e-41da-bde2-a17fe3c03b03", + "DeletedAt": null, + "LexemeForm": { + "seh": "imo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "92f35c61-b91a-4ca8-ae27-a1ad1b8c1f3d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d4e97e2b-026e-41da-bde2-a17fe3c03b03", + "Definition": { + "en": { + "Spans": [ + { + "Text": "18", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adcd5ecd-6b7d-4a84-aca9-4ca382f68263", + "DeletedAt": null, + "LexemeForm": { + "seh": "psa" + }, + "CitationForm": { + "seh": "impsa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef2dfd9b-673b-4948-8fea-0e44aa5e12a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "adcd5ecd-6b7d-4a84-aca9-4ca382f68263", + "Definition": { + "en": { + "Spans": [ + { + "Text": "species of winged termine", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "termite", + "pt": "termino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dce71075-0648-424b-a3bb-4f41988ae0a2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef2dfd9b-673b-4948-8fea-0e44aa5e12a7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6563329b-c76e-4515-ae43-92220ccea006", + "DeletedAt": null, + "LexemeForm": { + "seh": "imwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "26ff2aae-b682-4dce-8038-492132a320c6", + "Order": 1, + "DeletedAt": null, + "EntryId": "6563329b-c76e-4515-ae43-92220ccea006", + "Definition": {}, + "Gloss": { + "en": "you all", + "pt": "vo\u0301s" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6485b811-120d-486b-bb97-425faa9008d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "inde" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "27c2f84c-3ac2-4d20-ba0b-9779ea7c5252", + "Order": 1, + "DeletedAt": null, + "EntryId": "6485b811-120d-486b-bb97-425faa9008d9", + "Definition": {}, + "Gloss": { + "en": "yes", + "pt": "sim" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e303313-7074-4272-85ca-35c49a6a4ecb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ine" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e7eb3cab-f56e-44d6-ac11-919d0466f26b", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e303313-7074-4272-85ca-35c49a6a4ecb", + "Definition": {}, + "Gloss": { + "en": "I", + "pt": "eu" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7ecbb299-bf35-4795-a5cc-8d38ce8b891c", + "DeletedAt": null, + "LexemeForm": { + "seh": "infa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6895e856-d373-4190-b7ac-8d185a18e4ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "7ecbb299-bf35-4795-a5cc-8d38ce8b891c", + "Definition": {}, + "Gloss": { + "en": "death", + "pt": "morte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6cba72d0-e8f7-493c-950e-c17e52101a14", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "6895e856-d373-4190-b7ac-8d185a18e4ce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77b2397d-19c9-4321-b581-7a4ccfa9fc0e", + "DeletedAt": null, + "LexemeForm": { + "seh": "ip" + }, + "CitationForm": { + "seh": "ipa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "990acf6f-9eb5-4b84-b3c5-ac736813481b", + "Order": 1, + "DeletedAt": null, + "EntryId": "77b2397d-19c9-4321-b581-7a4ccfa9fc0e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bad, doesn\u0027t serve, evil, ugly", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sin", + "pt": "pecar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c6953557-830b-4489-ae72-ee4ce39bf2bf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iye ayipa maningi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ele e\u0301 feio muito", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "990acf6f-9eb5-4b84-b3c5-ac736813481b", + "DeletedAt": null + } + ] + }, + { + "Id": "9e09f628-2cc0-47f1-a747-f199af978acf", + "Order": 2, + "DeletedAt": null, + "EntryId": "77b2397d-19c9-4321-b581-7a4ccfa9fc0e", + "Definition": {}, + "Gloss": { + "en": "bad thing", + "pt": "coisa mal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2ed4beb1-aaa6-4767-9abb-85003796e5b9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kuipa kwanga nkwanji?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "mal meu qual", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "9e09f628-2cc0-47f1-a747-f199af978acf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35391ad9-1902-4f0a-8519-43f397ec6b60", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "032fb2d2-9fce-49c4-bd94-5b4b95848319", + "Order": 1, + "DeletedAt": null, + "EntryId": "35391ad9-1902-4f0a-8519-43f397ec6b60", + "Definition": {}, + "Gloss": { + "en": "which?", + "pt": "qual?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec4687ed-d2f5-484f-ad45-6f7c5d922331", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ad740522-fc25-4412-8d7e-5a5daf64d357", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec4687ed-d2f5-484f-ad45-6f7c5d922331", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "83813b13-5827-4990-b692-4c52b7310624", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipir" + }, + "CitationForm": { + "seh": "ipira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c38c6c69-6d59-41a5-b9d4-cc259b30b56a", + "Order": 1, + "DeletedAt": null, + "EntryId": "83813b13-5827-4990-b692-4c52b7310624", + "Definition": {}, + "Gloss": { + "en": "irritate", + "pt": "chatear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f6bbacf-5617-4836-81ac-218e70ae365d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "c38c6c69-6d59-41a5-b9d4-cc259b30b56a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e1b1ed03-96b2-4c1e-bc35-1e325461d139", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipirw" + }, + "CitationForm": { + "seh": "ipirwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3e72de5a-4584-4551-b5e1-b6d8fe9be15e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e1b1ed03-96b2-4c1e-bc35-1e325461d139", + "Definition": {}, + "Gloss": { + "en": "unhappy", + "pt": "infeliz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06c94f13-56b4-4b81-92cd-c1ca369815cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "81672136-0410-4aee-bbfb-1f15dc153591", + "Order": 1, + "DeletedAt": null, + "EntryId": "06c94f13-56b4-4b81-92cd-c1ca369815cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "16", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "44115d4e-5765-4d16-bd26-bda00e9c3eed", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "82abf458-b54c-4b29-b1d9-4a0d86aa898a", + "Order": 1, + "DeletedAt": null, + "EntryId": "44115d4e-5765-4d16-bd26-bda00e9c3eed", + "Definition": {}, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "02fdaa00-2856-4abc-85f8-7ceae651d8d4", + "Order": 2, + "DeletedAt": null, + "EntryId": "44115d4e-5765-4d16-bd26-bda00e9c3eed", + "Definition": {}, + "Gloss": { + "en": "this one", + "pt": "aquele" + }, + "PartOfSpeech": { + "Id": "730528ca-6a9b-4424-9839-a58bf66db779", + "Name": { + "en": "Demonstrative2", + "pt": "Demonstrativo2" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "730528ca-6a9b-4424-9839-a58bf66db779", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ba446f7-f15d-45f7-a351-43fff2b00163", + "DeletedAt": null, + "LexemeForm": { + "seh": "ire" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9c034b2e-b7e3-4804-b76f-bb11375ce405", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ba446f7-f15d-45f7-a351-43fff2b00163", + "Definition": {}, + "Gloss": { + "en": "that one", + "pt": "aquele" + }, + "PartOfSpeech": { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbdd566d-b9e3-43fe-b6ed-f93ff5ff3abf", + "DeletedAt": null, + "LexemeForm": { + "seh": "iw" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "7fdf6163-c035-44ec-a325-8ea9542edf19", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbdd566d-b9e3-43fe-b6ed-f93ff5ff3abf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "passive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "passiva", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PAS", + "pt": "PAS" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a78bb1d7-a86c-40c5-8ad1-8d75b71c4962", + "DeletedAt": null, + "LexemeForm": { + "seh": "iwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "30a1be5f-a148-4a11-8d46-9a580d3e37fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "a78bb1d7-a86c-40c5-8ad1-8d75b71c4962", + "Definition": {}, + "Gloss": { + "en": "you", + "pt": "tu" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "df34b961-5c26-4c3a-b56c-29050997e285", + "DeletedAt": null, + "LexemeForm": { + "seh": "iwo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "211c4895-c3b6-402c-ad0f-b65ab8060c0a", + "Order": 1, + "DeletedAt": null, + "EntryId": "df34b961-5c26-4c3a-b56c-29050997e285", + "Definition": { + "en": { + "Spans": [ + { + "Text": "they, 3P, 2, 3, 6, 14", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "eles", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e4ae08a-2672-4df2-9e2d-980be367e893", + "DeletedAt": null, + "LexemeForm": { + "seh": "iye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5f185bf1-c60e-48b2-96ce-ed04187d814b", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e4ae08a-2672-4df2-9e2d-980be367e893", + "Definition": { + "en": { + "Spans": [ + { + "Text": "he, it, him", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ele", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "he", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "efef73f3-4da2-4446-a807-6e18819f2fe6", + "DeletedAt": null, + "LexemeForm": { + "seh": "iyi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cedea80b-ea9d-446e-aa04-d0385c642139", + "Order": 1, + "DeletedAt": null, + "EntryId": "efef73f3-4da2-4446-a807-6e18819f2fe6", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "12713d09-49d7-4250-8efb-63dab36af447", + "DeletedAt": null, + "LexemeForm": { + "seh": "iyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cf6952f4-708f-44e4-a2f5-097633417224", + "Order": 1, + "DeletedAt": null, + "EntryId": "12713d09-49d7-4250-8efb-63dab36af447", + "Definition": { + "en": { + "Spans": [ + { + "Text": "4, 5, 9", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29618029-4618-4cdb-b22d-7dcfb757bc59", + "DeletedAt": null, + "LexemeForm": { + "seh": "izi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "36c915b8-6034-4585-bedb-d4f97a86d10e", + "Order": 1, + "DeletedAt": null, + "EntryId": "29618029-4618-4cdb-b22d-7dcfb757bc59", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a164c211-9e6d-4824-b5f1-76f0d0abd62d", + "DeletedAt": null, + "LexemeForm": { + "seh": "izo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d5737080-4c72-405a-be28-33ba90e4d8ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "a164c211-9e6d-4824-b5f1-76f0d0abd62d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "10", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3324b556-5483-4f44-8c64-1a11c575cdce", + "DeletedAt": null, + "LexemeForm": { + "seh": "Jorge" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f4c4f4d2-f942-4bf2-a71a-a7842e62662e", + "Order": 1, + "DeletedAt": null, + "EntryId": "3324b556-5483-4f44-8c64-1a11c575cdce", + "Definition": {}, + "Gloss": { + "en": "George", + "pt": "Jorge" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "Proper name added so the parse can handle it", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f8f88b9-5410-45c6-9e2c-f7144ee34041", + "DeletedAt": null, + "LexemeForm": { + "seh": "ka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "f112791e-e80f-4ddb-9874-cc80d19fddb2", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f8f88b9-5410-45c6-9e2c-f7144ee34041", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "abd8f356-c815-431a-ba70-217d61cda17a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1fc65011-9f5b-4aef-a34b-acd5799ee501", + "Order": 1, + "DeletedAt": null, + "EntryId": "abd8f356-c815-431a-ba70-217d61cda17a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "purpose inifintive, in.order.to", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "para", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "65b1dd23-3788-4968-860b-b29c8439c601", + "Order": 2, + "DeletedAt": null, + "EntryId": "abd8f356-c815-431a-ba70-217d61cda17a", + "Definition": {}, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "439845c9-6baf-47fd-9103-4765365279bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "908d1ba5-dd47-4009-854e-4cc834f59559", + "Order": 2, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f83e6701-d207-4261-a0ce-5de4c94449ee", + "Order": 3, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b2521441-a2c1-41ba-af12-5b5ce51208b7", + "Order": 4, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "8f9dbfe6-b955-4a56-9319-7315c1c03b14", + "Order": 5, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bd6fc43-b491-4fcf-9f4e-dd748187e17c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kabudula" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b844486-8001-4dec-bc3f-1836662621ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bd6fc43-b491-4fcf-9f4e-dd748187e17c", + "Definition": {}, + "Gloss": { + "en": "pants", + "pt": "calc\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "49c60aa9-b119-41ab-a7f6-07a8f70e2ae1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth, Nyazeze George", + "Ws": "en" + } + ] + }, + "SenseId": "0b844486-8001-4dec-bc3f-1836662621ea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "329d1eae-07f8-44bd-bb9e-3b4d231235bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaciti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09f516ad-9d5a-442e-92a3-c4095e3e343c", + "Order": 1, + "DeletedAt": null, + "EntryId": "329d1eae-07f8-44bd-bb9e-3b4d231235bb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "round seat w/ 3 legs of the herbal doctor which the spirit sits on (or the herbal doctor or sick one in its stead)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "seat", + "pt": "asento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "bc5b4896-b65c-489f-90f1-1cd020eb4d92", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "09f516ad-9d5a-442e-92a3-c4095e3e343c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d59272b3-45dc-40d6-990b-224ec777ac1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kadera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "319aff20-994b-4b4d-b28c-15238443f956", + "Order": 1, + "DeletedAt": null, + "EntryId": "d59272b3-45dc-40d6-990b-224ec777ac1e", + "Definition": {}, + "Gloss": { + "en": "chair", + "pt": "cadeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8f97661-5ea1-4c18-803f-10e9f38a6f64", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "319aff20-994b-4b4d-b28c-15238443f956", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2c214461-c5d7-482b-a6c7-d18e4e899dea", + "DeletedAt": null, + "LexemeForm": { + "seh": "kadzako" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "edc77eed-15d6-45df-90ce-4d484442249f", + "Order": 1, + "DeletedAt": null, + "EntryId": "2c214461-c5d7-482b-a6c7-d18e4e899dea", + "Definition": {}, + "Gloss": { + "en": "coat", + "pt": "casaco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "650abe83-c5c8-441c-9ef1-3837ed46f6d7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "edc77eed-15d6-45df-90ce-4d484442249f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1d18bbd-8d45-4db5-b57f-cb7165afd721", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaidi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3ec38f1b-6eef-427f-8ff3-b8c2954de6a6", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1d18bbd-8d45-4db5-b57f-cb7165afd721", + "Definition": {}, + "Gloss": { + "en": "prison", + "pt": "prisa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "54ba6106-eee3-463f-880d-8b8953a545cf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3ec38f1b-6eef-427f-8ff3-b8c2954de6a6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f1016cd-1727-4dca-b053-c02d3720cf58", + "DeletedAt": null, + "LexemeForm": { + "seh": "kak" + }, + "CitationForm": { + "seh": "kaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4ffd0f96-ebcb-41b4-b896-e97d3dceb36a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f1016cd-1727-4dca-b053-c02d3720cf58", + "Definition": { + "en": { + "Spans": [ + { + "Text": "put skin on a drum", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ponhar pele no batuk", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "drum skinning", + "pt": "ponhar pele" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96cfb952-99b5-4602-8c16-3f8b620c4ecf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4ffd0f96-ebcb-41b4-b896-e97d3dceb36a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "940ae3b9-85bb-4be0-8632-987dc467eb9f", + "DeletedAt": null, + "LexemeForm": { + "seh": "kakamir" + }, + "CitationForm": { + "seh": "kakamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2826ed49-b83a-4b50-9c8a-05197cc50420", + "Order": 1, + "DeletedAt": null, + "EntryId": "940ae3b9-85bb-4be0-8632-987dc467eb9f", + "Definition": {}, + "Gloss": { + "en": "insist", + "pt": "insistir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e18cd0a-bfd7-47d6-8162-c290c60035aa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2826ed49-b83a-4b50-9c8a-05197cc50420", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7a918310-c086-441a-882f-04f9d8c77388", + "DeletedAt": null, + "LexemeForm": { + "seh": "kakamwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f9d28c7e-718b-4694-8d27-d1b8060ae4e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "7a918310-c086-441a-882f-04f9d8c77388", + "Definition": {}, + "Gloss": { + "en": "really", + "pt": "perfeitamente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6781f7d1-4438-4e66-8a78-66ba55713390", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f9d28c7e-718b-4694-8d27-d1b8060ae4e0", + "DeletedAt": null + } + ] + }, + { + "Id": "fb259a5a-3ee7-4a7c-b197-59c492d89384", + "Order": 2, + "DeletedAt": null, + "EntryId": "7a918310-c086-441a-882f-04f9d8c77388", + "Definition": {}, + "Gloss": { + "en": "perfect", + "pt": "mesmo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "429fb479-0fc8-4c03-a647-2116dd9b5d00", + "DeletedAt": null, + "LexemeForm": { + "seh": "kugawika" + }, + "CitationForm": { + "seh": "kakugawika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cd8ecd88-36e9-4e60-95ac-545ca3716063", + "Order": 1, + "DeletedAt": null, + "EntryId": "429fb479-0fc8-4c03-a647-2116dd9b5d00", + "Definition": { + "en": { + "Spans": [ + { + "Text": "very small part", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "particle", + "pt": "parti\u0301cula" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5058c6a7-5c99-4d60-824d-1598edc22bae", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cd8ecd88-36e9-4e60-95ac-545ca3716063", + "DeletedAt": null + } + ] + }, + { + "Id": "7fca8e82-3e78-4cb6-88fd-6f4e15177efb", + "Order": 2, + "DeletedAt": null, + "EntryId": "429fb479-0fc8-4c03-a647-2116dd9b5d00", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small divisions", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "coisa dividida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "division", + "pt": "divisa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c45f33ae-cd4e-4ea1-9aff-527f9e951d0e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kale" + }, + "CitationForm": { + "seh": "kale" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "90b31605-76db-4597-baa8-45ec4fda706d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c45f33ae-cd4e-4ea1-9aff-527f9e951d0e", + "Definition": {}, + "Gloss": { + "en": "long time", + "pt": "muito tempo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8aa65921-1cb6-4f21-bf10-66049c1e6a8e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndafika kale", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "I arrived long ago.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Chegei ha\u0301 muito tempo.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "90b31605-76db-4597-baa8-45ec4fda706d", + "DeletedAt": null + }, + { + "Id": "b33e242f-edc1-413f-b915-c89a3bd8f6de", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kale cino", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "long ago", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ha\u0301 muito tempo", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "90b31605-76db-4597-baa8-45ec4fda706d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c4c2dc23-9b9b-48da-b05a-ffaaa00c1206", + "DeletedAt": null, + "LexemeForm": { + "seh": "kale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d6e01571-4afc-4a63-93d6-d252408e2eeb", + "Order": 1, + "DeletedAt": null, + "EntryId": "c4c2dc23-9b9b-48da-b05a-ffaaa00c1206", + "Definition": {}, + "Gloss": { + "en": "old", + "pt": "antigo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62193672-2706-4fd0-b8d1-80be39541069", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d6e01571-4afc-4a63-93d6-d252408e2eeb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad493a2f-f091-41cf-8cfc-ef226e329d85", + "DeletedAt": null, + "LexemeForm": { + "seh": "kalene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4e52fc2c-f04f-4397-bf00-9145be555027", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad493a2f-f091-41cf-8cfc-ef226e329d85", + "Definition": {}, + "Gloss": { + "en": "long ago", + "pt": "muito tempo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1e00691b-0be1-454b-9c95-589bf6e5b1f6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4e52fc2c-f04f-4397-bf00-9145be555027", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30ffd501-7b51-40c4-96ca-2d3bb2c4465a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "18350c76-4bb9-4557-94e5-001eeca8c77a", + "Order": 1, + "DeletedAt": null, + "EntryId": "30ffd501-7b51-40c4-96ca-2d3bb2c4465a", + "Definition": {}, + "Gloss": { + "en": "long ago", + "pt": "antigo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f97b5011-30b3-467c-b883-dea37bd61631", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "anthu a kali", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "people of long ago, ancestors", + "Ws": "seh" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pessoas atigas, antepassados", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "18350c76-4bb9-4557-94e5-001eeca8c77a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a082d087-1955-4ecd-b823-c0639cbd1b2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4a8349d7-374b-4a3f-a008-2a8d036a6c72", + "Order": 1, + "DeletedAt": null, + "EntryId": "a082d087-1955-4ecd-b823-c0639cbd1b2e", + "Definition": {}, + "Gloss": { + "en": "tortoise", + "pt": "ca\u0301gado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b2e8958-a477-475a-beb7-59f0c154952b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4a8349d7-374b-4a3f-a008-2a8d036a6c72", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f2f5115-5cb0-4112-9c58-dd4b5861b3e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "kambalame" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab06a13e-8c8a-4c08-ace1-1dbe151d6a1f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f2f5115-5cb0-4112-9c58-dd4b5861b3e5", + "Definition": {}, + "Gloss": { + "en": "small bird", + "pt": "passarinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "561e883d-9e89-4b36-a2c0-b0837e5f54c3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ab06a13e-8c8a-4c08-ace1-1dbe151d6a1f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "708ff551-9116-458a-b6a9-ea8eab0beff0", + "DeletedAt": null, + "LexemeForm": { + "seh": "kambaz" + }, + "CitationForm": { + "seh": "kambaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d5eaedae-e470-4785-9b74-f67507701cd0", + "Order": 1, + "DeletedAt": null, + "EntryId": "708ff551-9116-458a-b6a9-ea8eab0beff0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "crawl, for a person", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "gatinhar, pessoa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "crawl", + "pt": "gatinhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "a2bbf179-8d38-4d2e-84cd-0e00bb6c74f3", + "Name": { + "en": "Crawl" + }, + "Code": "7.2.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2393616-7b1b-4b5b-a9b3-e581c0c0aab0", + "DeletedAt": null, + "LexemeForm": { + "seh": "kambuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c5a05a9b-8a7b-4b30-90b3-a22a0ede868c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2393616-7b1b-4b5b-a9b3-e581c0c0aab0", + "Definition": {}, + "Gloss": { + "en": "small kid", + "pt": "cabritinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f60915b-e5ac-498c-bc2c-d7b46f680bd7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c5a05a9b-8a7b-4b30-90b3-a22a0ede868c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "acbf736f-ea4c-40f4-b174-b5efa5b022d8", + "DeletedAt": null, + "LexemeForm": { + "seh": "kameru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "80130c84-3eb0-4670-b896-4cf854eb6103", + "Order": 1, + "DeletedAt": null, + "EntryId": "acbf736f-ea4c-40f4-b174-b5efa5b022d8", + "Definition": {}, + "Gloss": { + "en": "camel", + "pt": "camelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "e545baab-581d-4af8-81f2-5a884e272349", + "Name": { + "en": "Beast of burden" + }, + "Code": "6.3.1.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "56ce2232-4d60-4688-9048-d95e13898b50", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "80130c84-3eb0-4670-b896-4cf854eb6103", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa1e31cf-97aa-4fb0-b2ef-b55fb783de92", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamidza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "318d5b28-51b2-4924-88a0-044bbbf75cf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa1e31cf-97aa-4fb0-b2ef-b55fb783de92", + "Definition": {}, + "Gloss": { + "en": "shirt", + "pt": "camisa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5fd5fcf4-d9ac-456e-9bda-be311249ceb9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "318d5b28-51b2-4924-88a0-044bbbf75cf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a1d6328-c250-436b-9fa0-ff3d8a4f85fc", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamul" + }, + "CitationForm": { + "seh": "kamula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24907a9a-fa88-435d-bdd1-2a61fc122e4a", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a1d6328-c250-436b-9fa0-ff3d8a4f85fc", + "Definition": {}, + "Gloss": { + "en": "squeeze", + "pt": "espremer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b0d33b6d-0a9e-4106-9259-d28014e5e098", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "24907a9a-fa88-435d-bdd1-2a61fc122e4a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "052cdbd0-ee5c-4750-8bda-ba86be19659b", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamunthu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b80af28-d70b-41fa-b3e4-5a0e1431a220", + "Order": 1, + "DeletedAt": null, + "EntryId": "052cdbd0-ee5c-4750-8bda-ba86be19659b", + "Definition": {}, + "Gloss": { + "en": "small man", + "pt": "homenzinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "91848310-c982-4e1b-9e4b-1cf03edc9c1d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5b80af28-d70b-41fa-b3e4-5a0e1431a220", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f17a39c-63af-4142-a668-b2b7f7b04be7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamuti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "604ebd63-fd39-460e-a0ca-93d6d9443e41", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f17a39c-63af-4142-a668-b2b7f7b04be7", + "Definition": {}, + "Gloss": { + "en": "small tree", + "pt": "a\u0301rvore pequena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f748289-34c9-4cfe-a2f8-87c853de6f4c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George", + "Ws": "en" + } + ] + }, + "SenseId": "604ebd63-fd39-460e-a0ca-93d6d9443e41", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7a4585b7-b6f9-4be1-9c25-c3ba8fd04f85", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamwana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "511eb02f-a823-4d38-aeb7-5a35da034431", + "Order": 1, + "DeletedAt": null, + "EntryId": "7a4585b7-b6f9-4be1-9c25-c3ba8fd04f85", + "Definition": {}, + "Gloss": { + "en": "small child", + "pt": "criancinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "53e99ecb-d4bd-493f-9250-4c935030bfa1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George", + "Ws": "en" + } + ] + }, + "SenseId": "511eb02f-a823-4d38-aeb7-5a35da034431", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08c1e501-49e8-4f00-9b2c-15dccf56d807", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamwanambwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7edf14c7-8c33-4222-8eea-e99b6e727de2", + "Order": 1, + "DeletedAt": null, + "EntryId": "08c1e501-49e8-4f00-9b2c-15dccf56d807", + "Definition": {}, + "Gloss": { + "en": "little dog", + "pt": "ca\u0303ozinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5fd7077-b10c-4ebe-8b75-2f31def21782", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "7edf14c7-8c33-4222-8eea-e99b6e727de2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "416cf9e4-98d6-4296-8c42-2e943ea01de7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kang\u0027ombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9134f0c8-c69f-49d4-af7d-86d170ffff68", + "Order": 1, + "DeletedAt": null, + "EntryId": "416cf9e4-98d6-4296-8c42-2e943ea01de7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small cow or bull", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "small cow", + "pt": "boizinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ea3cb7b6-d61e-4850-b96d-cb9f1222c250", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George", + "Ws": "en" + } + ] + }, + "SenseId": "9134f0c8-c69f-49d4-af7d-86d170ffff68", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "066cbf82-7cd9-4cf8-a4c7-c62a84da72ea", + "DeletedAt": null, + "LexemeForm": { + "seh": "kanwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", + "Order": 1, + "DeletedAt": null, + "EntryId": "066cbf82-7cd9-4cf8-a4c7-c62a84da72ea", + "Definition": {}, + "Gloss": { + "en": "mouth inside", + "pt": "boca interior" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a6aa1b86-bdda-408c-b658-632a40a283c8", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mpaka nyama ifikire pa n\u0027kanwa mwace (Sulo 023)", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "until meat arrives in mouth his", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ate\u0301 a carne chega na boca d\u0027ele", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", + "DeletedAt": null + }, + { + "Id": "fad40892-bf12-4a19-ac0e-d7414e306dfd", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khanwa mbee na kubira", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "always crying", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "lit.\u0022boca aberta por chorar\u0022 id.\u0022sempre chora\u0022", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "10863cb5-f113-4a37-beaa-a6bf5430f27b", + "DeletedAt": null, + "LexemeForm": { + "seh": "kanyumba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01efa877-a8ff-43d5-9912-51eb18a83af9", + "Order": 1, + "DeletedAt": null, + "EntryId": "10863cb5-f113-4a37-beaa-a6bf5430f27b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small house or room", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "casa ou quarto pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "small house", + "pt": "casa pequena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61ea84eb-3664-4921-822b-2da8cbf1905e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "01efa877-a8ff-43d5-9912-51eb18a83af9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "24d12f3f-4f16-40c4-b331-c2b59c68e9dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "karu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bd3e2a9-e928-42b1-843f-6cde97a3ffa8", + "Order": 1, + "DeletedAt": null, + "EntryId": "24d12f3f-4f16-40c4-b331-c2b59c68e9dd", + "Definition": {}, + "Gloss": { + "en": "car", + "pt": "carro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac0435bc-825b-48da-bdc6-a61f1bc27008", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4bd3e2a9-e928-42b1-843f-6cde97a3ffa8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1412748b-d8af-435a-a081-32089eb6d5d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "kati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6b4af1f4-5c2f-400e-bb9f-1c0ab4e75492", + "Order": 1, + "DeletedAt": null, + "EntryId": "1412748b-d8af-435a-a081-32089eb6d5d1", + "Definition": {}, + "Gloss": { + "en": "middle", + "pt": "meio" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cea7d804-408e-4089-b79b-67b342367076", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6b4af1f4-5c2f-400e-bb9f-1c0ab4e75492", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "5a2876f4-1da0-416d-87f7-b056005b7f9b", + "MaybeId": "5a2876f4-1da0-416d-87f7-b056005b7f9b", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "1412748b-d8af-435a-a081-32089eb6d5d1", + "ComponentSenseId": null, + "ComponentHeadword": "kati" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kati-na-kati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d958b91d-fdcf-40a9-960e-8d4374fbaabc", + "Order": 1, + "DeletedAt": null, + "EntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "Definition": {}, + "Gloss": { + "en": "very middle", + "pt": "mesmo meio" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "5a2876f4-1da0-416d-87f7-b056005b7f9b", + "MaybeId": "5a2876f4-1da0-416d-87f7-b056005b7f9b", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "1412748b-d8af-435a-a081-32089eb6d5d1", + "ComponentSenseId": null, + "ComponentHeadword": "kati" + }, + { + "Id": "74b0cee0-db54-4703-8a36-19fe3c041154", + "MaybeId": "74b0cee0-db54-4703-8a36-19fe3c041154", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c33a461f-8090-4473-a3cb-08bf012d9cd7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kauta" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b44df76-bd2d-44b9-b086-0f1426f1a38f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c33a461f-8090-4473-a3cb-08bf012d9cd7", + "Definition": {}, + "Gloss": { + "en": "little bow", + "pt": "arco pequeno" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a572e9fd-37be-4aad-b67e-bf944aaaa175", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "6b44df76-bd2d-44b9-b086-0f1426f1a38f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ada19ec5-676a-4af9-baab-a0db08efa479", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaxa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "80680b95-8ea8-4951-937e-0d3f5ef81de4", + "Order": 1, + "DeletedAt": null, + "EntryId": "ada19ec5-676a-4af9-baab-a0db08efa479", + "Definition": {}, + "Gloss": { + "en": "box", + "pt": "caixa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b16dcb42-d93b-413d-b595-59caafb220a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazari" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72a474a7-7a03-42a1-9a9c-9add30627592", + "Order": 1, + "DeletedAt": null, + "EntryId": "b16dcb42-d93b-413d-b595-59caafb220a5", + "Definition": {}, + "Gloss": { + "en": "marry", + "pt": "casar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1767583-d892-47c9-b3bf-6ca79d12296a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "72a474a7-7a03-42a1-9a9c-9add30627592", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21d201da-c91b-4b10-a004-85e69e6864ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "94f4937a-3404-4d37-8cd8-027547d1b381", + "Order": 1, + "DeletedAt": null, + "EntryId": "21d201da-c91b-4b10-a004-85e69e6864ab", + "Definition": {}, + "Gloss": { + "en": "feminine", + "pt": "feminina" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2ba16f4-50bd-4594-8c74-73ab0f07141a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "paka ikazi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "gato female", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "gato feminia", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "94f4937a-3404-4d37-8cd8-027547d1b381", + "DeletedAt": null + }, + { + "Id": "346dfe93-3433-43f5-af8e-db149eae8833", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mwana nkazi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "daughter", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "filha", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "94f4937a-3404-4d37-8cd8-027547d1b381", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7b5df550-a3ac-4719-bf89-c358a67a0bdf", + "DeletedAt": null, + "LexemeForm": { + "seh": "kha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "322825e9-dac9-46f5-afb5-f8b766b23c16", + "Order": 1, + "DeletedAt": null, + "EntryId": "7b5df550-a3ac-4719-bf89-c358a67a0bdf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "imperfect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "imperfeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "IMP", + "pt": "IMP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "70ee8eb4-fc68-4a09-8074-9b51c70d3c3c", + "Order": 2, + "DeletedAt": null, + "EntryId": "7b5df550-a3ac-4719-bf89-c358a67a0bdf", + "Definition": {}, + "Gloss": { + "en": "IMP", + "pt": "IMP" + }, + "PartOfSpeech": { + "Id": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "Name": { + "en": "Irregular Verb - li" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c2ecd396-b01a-4627-bf6a-fccddce51b20", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaindi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "31ffccc7-f41d-4d9c-b82c-dedb94113c20", + "Order": 1, + "DeletedAt": null, + "EntryId": "c2ecd396-b01a-4627-bf6a-fccddce51b20", + "Definition": {}, + "Gloss": { + "en": "type", + "pt": "tipo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ecbd775-4ccc-46a9-937a-5b83be150b93", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "31ffccc7-f41d-4d9c-b82c-dedb94113c20", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c078a8ef-ebe9-4ef8-8086-17daeb33539a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9ba6dc47-1937-4a0c-bbf4-43464a8ce714", + "Order": 1, + "DeletedAt": null, + "EntryId": "c078a8ef-ebe9-4ef8-8086-17daeb33539a", + "Definition": {}, + "Gloss": { + "en": "cucumber", + "pt": "pepino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e3d610d-628a-4912-a386-1401c7e67c85", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Orth; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "9ba6dc47-1937-4a0c-bbf4-43464a8ce714", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "DeletedAt": null, + "LexemeForm": { + "seh": "khal" + }, + "CitationForm": { + "seh": "khala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4d37c94f-4809-4c0f-8082-1af196273387", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ser, estar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "be", + "pt": "ser" + }, + "PartOfSpeech": { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc904ff9-38c5-4388-ab09-e8e872ae9637", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "4d37c94f-4809-4c0f-8082-1af196273387", + "DeletedAt": null + } + ] + }, + { + "Id": "43505c77-2177-4fd9-b646-01366fc6d214", + "Order": 2, + "DeletedAt": null, + "EntryId": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "Definition": {}, + "Gloss": { + "en": "to sit", + "pt": "sentar" + }, + "PartOfSpeech": { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "373e19da-a2fe-4b25-ac07-22dae481675a", + "Order": 3, + "DeletedAt": null, + "EntryId": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "Definition": {}, + "Gloss": { + "en": "to live", + "pt": "morar" + }, + "PartOfSpeech": { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fabd39a6-0394-4907-9aff-d0e070169dc3", + "DeletedAt": null, + "LexemeForm": { + "seh": "khalir" + }, + "CitationForm": { + "seh": "khalira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce47cec8-8bfd-45ae-9f97-20dcf5d03892", + "Order": 1, + "DeletedAt": null, + "EntryId": "fabd39a6-0394-4907-9aff-d0e070169dc3", + "Definition": {}, + "Gloss": { + "en": "wait for", + "pt": "esperar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "78e2d320-7761-4dfa-8d5d-2d86c313ac65", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "ce47cec8-8bfd-45ae-9f97-20dcf5d03892", + "DeletedAt": null + } + ] + }, + { + "Id": "eee643f8-98a4-499d-9d23-4cc23bab31ef", + "Order": 2, + "DeletedAt": null, + "EntryId": "fabd39a6-0394-4907-9aff-d0e070169dc3", + "Definition": {}, + "Gloss": { + "en": "sit on", + "pt": "sentar em cima" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32e3d336-606a-4c86-a365-7c80027416ca", + "DeletedAt": null, + "LexemeForm": { + "seh": "khanda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0d2f5079-6737-4fde-97cb-006da839a693", + "Order": 1, + "DeletedAt": null, + "EntryId": "32e3d336-606a-4c86-a365-7c80027416ca", + "Definition": { + "en": { + "Spans": [ + { + "Text": "skin (general)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "skin", + "pt": "pele" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "df2b9d7a-9b90-4704-8bc3-11dcffe985f4", + "Name": { + "en": "Skin" + }, + "Code": "2.1.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a7f8fd55-10bd-400b-afcc-ed0c6c12788e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Orth; Wordlist; George", + "Ws": "en" + } + ] + }, + "SenseId": "0d2f5079-6737-4fde-97cb-006da839a693", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03d441d7-e915-46d5-87f6-87f5567d41c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "khangala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c1ff827-abd7-4cb3-803d-3c11dba1ff5c", + "Order": 1, + "DeletedAt": null, + "EntryId": "03d441d7-e915-46d5-87f6-87f5567d41c2", + "Definition": {}, + "Gloss": { + "en": "stretcher", + "pt": "maca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e842bd31-e26e-4da3-bf31-0e337740c94f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0c1ff827-abd7-4cb3-803d-3c11dba1ff5c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "82958554-f665-4e0d-b47b-b977b41f9400", + "DeletedAt": null, + "LexemeForm": { + "seh": "kharakaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f7c942cb-bbf4-444c-a244-ce6ac9bd36fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "82958554-f665-4e0d-b47b-b977b41f9400", + "Definition": { + "en": { + "Spans": [ + { + "Text": "all of the Family Mustelidae except otter, genete and civet", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "polecat", + "pt": "doninha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "56ef3f06-7fb9-462e-a7d0-517f3ce1623f", + "Name": { + "en": "Carnivore" + }, + "Code": "1.6.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3e3cdd72-5fe3-40f6-ae85-3bb20529fe24", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f7c942cb-bbf4-444c-a244-ce6ac9bd36fa", + "DeletedAt": null + } + ] + }, + { + "Id": "827e2351-ff14-4430-89e4-8a02747e0f94", + "Order": 2, + "DeletedAt": null, + "EntryId": "82958554-f665-4e0d-b47b-b977b41f9400", + "Definition": {}, + "Gloss": { + "en": "mongoose", + "pt": "mangusto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "7b4ed3bb-aea1-4906-8bab-37c602f04a6a", + "Order": 3, + "DeletedAt": null, + "EntryId": "82958554-f665-4e0d-b47b-b977b41f9400", + "Definition": {}, + "Gloss": { + "en": "badger", + "pt": "texugo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "67bad6ec-3326-4bea-9f8e-1d27ae548949", + "DeletedAt": null, + "LexemeForm": { + "seh": "khazik" + }, + "CitationForm": { + "seh": "khazika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f363c0f1-ede7-44f0-bd1b-75ba816911aa", + "Order": 1, + "DeletedAt": null, + "EntryId": "67bad6ec-3326-4bea-9f8e-1d27ae548949", + "Definition": {}, + "Gloss": { + "en": "let sit", + "pt": "deixar sentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b026b31e-e15c-46c1-a64d-fa7b2ba3d4bf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f363c0f1-ede7-44f0-bd1b-75ba816911aa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5cb3ce5-cbf9-4c51-8d1f-5964ce10a703", + "DeletedAt": null, + "LexemeForm": { + "seh": "khobok" + }, + "CitationForm": { + "seh": "khoboka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5cb3ce5-cbf9-4c51-8d1f-5964ce10a703", + "Definition": { + "en": { + "Spans": [ + { + "Text": "break by hand", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "quebrar a ma\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "break", + "pt": "quebrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b5b2f49-3158-4a05-a2d0-2c8d33f49478", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", + "DeletedAt": null + }, + { + "Id": "139743f6-1f4b-4a9f-b268-caad4d133d1b", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "wa kukhoboka ntima", + "Ws": "en" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "tolerant", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tolerante", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "43553bc2-73ef-426a-b149-4c1333bff68f", + "DeletedAt": null, + "LexemeForm": { + "seh": "khobwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6e63fbb8-5f43-44f0-b0b5-a27f49457178", + "Order": 1, + "DeletedAt": null, + "EntryId": "43553bc2-73ef-426a-b149-4c1333bff68f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large basket made of bamboo for carrying food", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "um cesto grande feito para transportar comida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "basket large", + "pt": "cesta grande" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b6cab3da-e2b1-4691-9758-72fdd6c10e55", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6e63fbb8-5f43-44f0-b0b5-a27f49457178", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "43034558-9135-4a67-a1c5-b02d1ea08e56", + "DeletedAt": null, + "LexemeForm": { + "seh": "khoko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6aa73def-278e-4751-b031-c9878ad3b838", + "Order": 1, + "DeletedAt": null, + "EntryId": "43034558-9135-4a67-a1c5-b02d1ea08e56", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tree bark", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "casca de a\u0301rvore", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bark", + "pt": "casca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "caba7528-3d3a-4f70-8f89-1f34c895afac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6aa73def-278e-4751-b031-c9878ad3b838", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "958a4232-c675-4eee-bba4-4c23490e0858", + "DeletedAt": null, + "LexemeForm": { + "seh": "kole" + }, + "CitationForm": { + "seh": "khole" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35b11b7d-8b22-4ad9-945b-a537452d3a36", + "Order": 1, + "DeletedAt": null, + "EntryId": "958a4232-c675-4eee-bba4-4c23490e0858", + "Definition": {}, + "Gloss": { + "en": "cloud", + "pt": "nuvem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "10348a7d-b7a3-49f5-9985-c86a4a8e9366", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "35b11b7d-8b22-4ad9-945b-a537452d3a36", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a5f1aac-c356-46f5-a5dc-eb73b7ba43ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50240252-ca03-40bb-8d69-7d6762997929", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a5f1aac-c356-46f5-a5dc-eb73b7ba43ae", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large hen", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "galinha, grande feminina", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hen", + "pt": "galinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fc9dfdc9-dc5c-4361-9155-416edd2da846", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "50240252-ca03-40bb-8d69-7d6762997929", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9095fe93-2207-4433-92cc-0ae1c22b55d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f44c1e36-2638-443b-83b1-6eb767cc8f54", + "Order": 1, + "DeletedAt": null, + "EntryId": "9095fe93-2207-4433-92cc-0ae1c22b55d7", + "Definition": {}, + "Gloss": { + "en": "generation", + "pt": "gerac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "371cf322-2dad-4b29-b616-b63d0bd2e616", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholokolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "06e54dd2-932a-4bd0-a72f-f33bf6285750", + "Order": 1, + "DeletedAt": null, + "EntryId": "371cf322-2dad-4b29-b616-b63d0bd2e616", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lower back, especially of animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "costa, parte em baixo, especialmente de animal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "lower back", + "pt": "costa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "31060bb0-f765-4e93-b82b-39d3c4ab703b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "06e54dd2-932a-4bd0-a72f-f33bf6285750", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31accc5a-c802-4cd5-a97f-0d5dd5435a1d", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholongo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98dafe91-7baa-41bf-9cb3-cd20fff87679", + "Order": 1, + "DeletedAt": null, + "EntryId": "31accc5a-c802-4cd5-a97f-0d5dd5435a1d", + "Definition": {}, + "Gloss": { + "en": "throat", + "pt": "garganta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ae0280e-31e1-4444-910c-f42386248d64", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "98dafe91-7baa-41bf-9cb3-cd20fff87679", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5a930f1-211d-41fd-b65d-0f0b3405e1c5", + "DeletedAt": null, + "LexemeForm": { + "seh": "khomer" + }, + "CitationForm": { + "seh": "khomera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9dae3ae5-d349-4929-8fd0-d900777cdcde", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5a930f1-211d-41fd-b65d-0f0b3405e1c5", + "Definition": {}, + "Gloss": { + "en": "preach", + "pt": "pregar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2f7374c2-eaea-437b-8718-c24d95d83fa8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9dae3ae5-d349-4929-8fd0-d900777cdcde", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eaa9be44-bf1b-41f2-a407-6da70326a544", + "DeletedAt": null, + "LexemeForm": { + "seh": "khomole" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f7551d4a-a6a8-431b-82ae-cc87738cf29d", + "Order": 1, + "DeletedAt": null, + "EntryId": "eaa9be44-bf1b-41f2-a407-6da70326a544", + "Definition": {}, + "Gloss": { + "en": "cliff", + "pt": "precipi\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5de81c59-db4b-47af-917f-58436e859311", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f7551d4a-a6a8-431b-82ae-cc87738cf29d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "310718ab-8b11-40e0-b7bf-5e8548c03831", + "DeletedAt": null, + "LexemeForm": { + "seh": "khond" + }, + "CitationForm": { + "seh": "khonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "269f11ac-1cb3-4d45-885f-2b321b95e190", + "Order": 1, + "DeletedAt": null, + "EntryId": "310718ab-8b11-40e0-b7bf-5e8548c03831", + "Definition": {}, + "Gloss": { + "en": "refuse", + "pt": "recusar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b7739286-2199-4496-9f45-f0cf58260ab0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khonda nkazi", + "Ws": "en" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "divorce wife", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "269f11ac-1cb3-4d45-885f-2b321b95e190", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "36c63646-7e40-4355-b322-6b450ce6607a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khoni" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f2cbdf3f-b54d-4bdb-9dc7-b5b9a5e55722", + "Order": 1, + "DeletedAt": null, + "EntryId": "36c63646-7e40-4355-b322-6b450ce6607a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "time between June and August", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "winter", + "pt": "inverno" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "527cafb9-837b-4f8b-91d5-72d369295f9f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f2cbdf3f-b54d-4bdb-9dc7-b5b9a5e55722", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "220d10d5-3dab-47fb-8623-4ca86601d9e6", + "DeletedAt": null, + "LexemeForm": { + "seh": "khono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bec2e73-a2fa-4be6-976f-ba6ff9f7acc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "220d10d5-3dab-47fb-8623-4ca86601d9e6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "from tip of outstreached arm to center of chest, about 1 meter", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "um metro, de dedo ate\u0301 meio de peito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "measure", + "pt": "um metro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a31d3bdf-a905-4551-89c2-2caa9180918d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4bec2e73-a2fa-4be6-976f-ba6ff9f7acc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f873c3eb-89a9-4bb6-84fc-cd56d6a75579", + "DeletedAt": null, + "LexemeForm": { + "seh": "khosi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97259073-9a23-4056-8f5d-6a500118ec61", + "Order": 1, + "DeletedAt": null, + "EntryId": "f873c3eb-89a9-4bb6-84fc-cd56d6a75579", + "Definition": {}, + "Gloss": { + "en": "neck", + "pt": "pescoc\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b1166bed-2f87-4981-acbc-122b29ac3466", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Alves; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "97259073-9a23-4056-8f5d-6a500118ec61", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8df2fe4c-81b5-48d4-a306-af165ad7840f", + "DeletedAt": null, + "LexemeForm": { + "seh": "khosol" + }, + "CitationForm": { + "seh": "khosola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "798afb72-f49f-478d-a1b9-1bb958494e15", + "Order": 1, + "DeletedAt": null, + "EntryId": "8df2fe4c-81b5-48d4-a306-af165ad7840f", + "Definition": {}, + "Gloss": { + "en": "cough", + "pt": "tossir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6b74debf-2dc1-4f3e-861f-000daf631977", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "798afb72-f49f-478d-a1b9-1bb958494e15", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c5daee51-337f-4705-bfa1-22a048ad4ec7", + "DeletedAt": null, + "LexemeForm": { + "seh": "khu" + }, + "CitationForm": { + "seh": "khua" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c37de104-6633-4a7f-8334-fba322f0c89b", + "Order": 1, + "DeletedAt": null, + "EntryId": "c5daee51-337f-4705-bfa1-22a048ad4ec7", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "clamar, gritar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "shout", + "pt": "clamar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c32e0e69-8f1a-42ca-8d95-c4a33c786203", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c37de104-6633-4a7f-8334-fba322f0c89b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "44af4d61-fa9c-4b62-8d30-1c70c2e9361b", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuch" + }, + "CitationForm": { + "seh": "khucha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cddee31a-556f-4a76-8e75-2be21302d85f", + "Order": 1, + "DeletedAt": null, + "EntryId": "44af4d61-fa9c-4b62-8d30-1c70c2e9361b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "pull out (nail, tooth, etc.)", + "Ws": "pt" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "arrancar (prego, dente etc)", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "pull out", + "pt": "arrancar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45ecf106-f2b1-486b-8ffc-b3a9d05e9dae", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo037", + "Ws": "en" + } + ] + }, + "SenseId": "cddee31a-556f-4a76-8e75-2be21302d85f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bc35fbc-9a38-463f-89dd-6c83fe514c0b", + "DeletedAt": null, + "LexemeForm": { + "seh": "khulupir" + }, + "CitationForm": { + "seh": "khulupira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1331035e-4a2d-4ede-b72a-8db3d2893ea6", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bc35fbc-9a38-463f-89dd-6c83fe514c0b", + "Definition": {}, + "Gloss": { + "en": "trust", + "pt": "confiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c8c313f0-bbf5-47e6-9f23-3aeeeb44927b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Khulupirani Mulungu anakwangisani", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Confia em Deus para ti curar.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Meque, Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1331035e-4a2d-4ede-b72a-8db3d2893ea6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f48c2b04-b018-46da-8055-902de8688768", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbi" + }, + "CitationForm": { + "seh": "khumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a45d7be9-f4bc-4a75-a43e-4d6d8c281bc8", + "Order": 1, + "DeletedAt": null, + "EntryId": "f48c2b04-b018-46da-8055-902de8688768", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small temporary houses used by youth at harvest time, by extension, any small house", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "palhota, casota", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "small house", + "pt": "palhota" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc0f2c66-0df3-419d-b4b1-fa44c17dfacf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a45d7be9-f4bc-4a75-a43e-4d6d8c281bc8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "66797917-55bf-465a-a33d-f7a139c8f102", + "DeletedAt": null, + "LexemeForm": { + "seh": "khumi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d64ed827-1d47-45ee-b253-1cc55d13b5d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "66797917-55bf-465a-a33d-f7a139c8f102", + "Definition": {}, + "Gloss": { + "en": "ten", + "pt": "dez" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "50abc623-4d41-4ff5-8e32-c423bda442dc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "d64ed827-1d47-45ee-b253-1cc55d13b5d3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f06003df-dc08-456b-bcab-0efcad5a2d59", + "DeletedAt": null, + "LexemeForm": { + "seh": "makhundu" + }, + "CitationForm": { + "seh": "khundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e1687c0-3394-4bc4-8bed-26c96d07c0de", + "Order": 1, + "DeletedAt": null, + "EntryId": "f06003df-dc08-456b-bcab-0efcad5a2d59", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bank of a river, edge of a road,", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "margem de rio ou rua", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bank ", + "pt": "margem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14acb080-e726-4f2b-b06e-7f955ac451cd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1e1687c0-3394-4bc4-8bed-26c96d07c0de", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc51e684-384f-4275-91da-bd0052c6fc94", + "DeletedAt": null, + "LexemeForm": { + "seh": "khundu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc9f82a8-e346-4734-a417-bfaee9c1b4c7", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc51e684-384f-4275-91da-bd0052c6fc94", + "Definition": {}, + "Gloss": { + "en": "side", + "pt": "lado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f60bbcb-4a42-40b4-a83d-940fc6c7271e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khundu yadidi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "right side of body", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "dc9f82a8-e346-4734-a417-bfaee9c1b4c7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e35c4ef3-df39-4b0a-862e-d86734268567", + "DeletedAt": null, + "LexemeForm": { + "seh": "khurudzik" + }, + "CitationForm": { + "seh": "khurudzika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ea927e6-ee78-4f63-8ef9-bf46ff0b33f0", + "Order": 1, + "DeletedAt": null, + "EntryId": "e35c4ef3-df39-4b0a-862e-d86734268567", + "Definition": {}, + "Gloss": { + "en": "quiet oneself", + "pt": "sossegar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00c966d7-58e9-4203-9c02-c49a893c9bba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5ea927e6-ee78-4f63-8ef9-bf46ff0b33f0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "577a001e-b29b-479b-b4d8-053d8b103508", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuruzik" + }, + "CitationForm": { + "seh": "khuruzika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "067e18f7-8adc-447e-a072-a68ca8ff978b", + "Order": 1, + "DeletedAt": null, + "EntryId": "577a001e-b29b-479b-b4d8-053d8b103508", + "Definition": {}, + "Gloss": { + "en": "quiet", + "pt": "quietar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "539975fb-2dd9-4612-9c91-e8a18df9ce55", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "067e18f7-8adc-447e-a072-a68ca8ff978b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "58df76e3-256f-42cf-a57b-22de6846ee04", + "DeletedAt": null, + "LexemeForm": { + "seh": "khut" + }, + "CitationForm": { + "seh": "khuta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f2c0668-a52f-4ce7-83e7-a492905e4f82", + "Order": 1, + "DeletedAt": null, + "EntryId": "58df76e3-256f-42cf-a57b-22de6846ee04", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be full or content", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "be satisfied", + "pt": "ficar farto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5ca17d1c-d40e-4ac6-8142-ff18d68fc846", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndakuta", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Obrigado", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "0f2c0668-a52f-4ce7-83e7-a492905e4f82", + "DeletedAt": null + } + ] + }, + { + "Id": "6ee1d961-3dae-4b46-9579-e7e8e34163a6", + "Order": 2, + "DeletedAt": null, + "EntryId": "58df76e3-256f-42cf-a57b-22de6846ee04", + "Definition": {}, + "Gloss": { + "en": "thank you", + "pt": "obrigado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4c02bcc5-8a2f-43fe-a369-c0363ec19c84", + "DeletedAt": null, + "LexemeForm": { + "seh": "kutu" + }, + "CitationForm": { + "seh": "khutu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "17b61c66-081e-4e77-bd7e-dbd2aead3932", + "Order": 1, + "DeletedAt": null, + "EntryId": "4c02bcc5-8a2f-43fe-a369-c0363ec19c84", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ear, outer and inner", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "ear", + "pt": "orelha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f86b05ba-7ff3-48af-91fa-cfb0c406dd1d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist;Moreira:5, 19; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "17b61c66-081e-4e77-bd7e-dbd2aead3932", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8c78953-e837-4474-8240-981b2d0325c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuy" + }, + "CitationForm": { + "seh": "khuya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e1d99b98-3faa-4fdf-a883-46c21364b777", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8c78953-e837-4474-8240-981b2d0325c3", + "Definition": {}, + "Gloss": { + "en": "touch", + "pt": "tocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "09773319-dad3-4051-a2c1-24a438bec3a7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e1d99b98-3faa-4fdf-a883-46c21364b777", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81289505-9e49-4391-ba0e-5f8747a7e798", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwaz" + }, + "CitationForm": { + "seh": "khwaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fd5ae1c9-56af-4bf4-85ce-e9e984550c42", + "Order": 1, + "DeletedAt": null, + "EntryId": "81289505-9e49-4391-ba0e-5f8747a7e798", + "Definition": {}, + "Gloss": { + "en": "paint", + "pt": "pintar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4e50f47-8bdd-491c-be9c-9f72eb22cae8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "fd5ae1c9-56af-4bf4-85ce-e9e984550c42", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "942fb913-e648-473c-a6ee-a592dd8996db", + "DeletedAt": null, + "LexemeForm": { + "seh": "-ko" + }, + "CitationForm": { + "seh": "ko" + }, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", + "Order": 1, + "DeletedAt": null, + "EntryId": "942fb913-e648-473c-a6ee-a592dd8996db", + "Definition": {}, + "Gloss": { + "en": "LOC there", + "pt": "ali" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "403597a6-4605-423d-a9da-2c079427acfd", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kauka-ko eko noko kubazari-ko", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef57f28b-7741-4249-9572-63de6aa524d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eb8e1f58-2a22-4738-8250-ddba406418df", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef57f28b-7741-4249-9572-63de6aa524d7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "your", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "teu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2S", + "pt": "2S" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa12a4b4-201a-43c6-bcd1-8007cabebe1a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kobiri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "471f30f4-6ef1-4306-b7be-bc5292a92b29", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa12a4b4-201a-43c6-bcd1-8007cabebe1a", + "Definition": {}, + "Gloss": { + "en": "money", + "pt": "dinheiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1083c1ab-2f24-4010-b6bf-a0c2ea38f61d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "471f30f4-6ef1-4306-b7be-bc5292a92b29", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7a36d3f-29be-4508-bb2c-3e28f65e2c25", + "DeletedAt": null, + "LexemeForm": { + "seh": "kodi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "587d38d2-4461-4d26-bbb6-9ecf46861a1b", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7a36d3f-29be-4508-bb2c-3e28f65e2c25", + "Definition": {}, + "Gloss": { + "en": "and so", + "pt": "enta\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ef3cc4c-ef2b-4344-95b8-faa0e4dcb248", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "587d38d2-4461-4d26-bbb6-9ecf46861a1b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ce24f8f-28a2-43f4-8f05-df24e6966f17", + "DeletedAt": null, + "LexemeForm": { + "seh": "kokota" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6d090ec4-8a2f-4648-996d-426753654a77", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ce24f8f-28a2-43f4-8f05-df24e6966f17", + "Definition": {}, + "Gloss": { + "en": "net", + "pt": "rede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7afe24ea-dc5e-4328-a37c-4a33d1e0cb63", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6d090ec4-8a2f-4648-996d-426753654a77", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebcf2139-6c6b-4c96-9588-817d10cb18cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "kokot" + }, + "CitationForm": { + "seh": "kokota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c2a3421e-e0f7-4591-bf62-3380df4bf413", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebcf2139-6c6b-4c96-9588-817d10cb18cc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "eat the last bit, \u0022lick the bowl\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "comer ao u\u0301ltima", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "finish", + "pt": "acabar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5e859f07-e671-4130-8537-17505e4096fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c2a3421e-e0f7-4591-bf62-3380df4bf413", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6bbc75f-6863-4d8c-9a1a-c6c724a0712e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kokot" + }, + "CitationForm": { + "seh": "kokota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "738ab3d0-596e-4145-99cd-03dadec168f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6bbc75f-6863-4d8c-9a1a-c6c724a0712e", + "Definition": {}, + "Gloss": { + "en": "pull a net", + "pt": "puxar uma rede" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "573bf23a-3fde-4552-9263-62b7c71cad02", + "Name": { + "en": "Fish with net" + }, + "Code": "6.4.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e928d96-8913-41b4-aff6-927e9508d7d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "kolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "339f2931-7da0-4c4f-b4ca-7d4b3317f496", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e928d96-8913-41b4-aff6-927e9508d7d9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Vervet monkey", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "monkey", + "pt": "macaco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c676ebe3-5792-4b40-a937-626c83cf20f7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "339f2931-7da0-4c4f-b4ca-7d4b3317f496", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "543f5ea8-0d41-4458-a6d5-78ebcc290418", + "DeletedAt": null, + "LexemeForm": { + "seh": "kom" + }, + "CitationForm": { + "seh": "koma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a0f2cb7-2604-4be8-adc6-455e93e9c30e", + "Order": 1, + "DeletedAt": null, + "EntryId": "543f5ea8-0d41-4458-a6d5-78ebcc290418", + "Definition": {}, + "Gloss": { + "en": "it\u0027s good", + "pt": "e\u0301 util" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e94538a-c6db-4836-853d-31d8f25b76f1", + "DeletedAt": null, + "LexemeForm": { + "seh": "komerw" + }, + "CitationForm": { + "seh": "komerwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e233ed05-a5c5-4db6-a8a7-549a611a0ae5", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e94538a-c6db-4836-853d-31d8f25b76f1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "happy, content", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "happy", + "pt": "contente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "49656d86-f829-4e9f-a9c2-2a38adb5e6f8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "e233ed05-a5c5-4db6-a8a7-549a611a0ae5", + "DeletedAt": null + } + ] + }, + { + "Id": "78f9be23-f46e-40f8-b9ae-feeb0fe345e1", + "Order": 2, + "DeletedAt": null, + "EntryId": "1e94538a-c6db-4836-853d-31d8f25b76f1", + "Definition": {}, + "Gloss": { + "en": "well fed", + "pt": "bem comida" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0a06a99-bff0-433c-8266-9addb522284c", + "DeletedAt": null, + "LexemeForm": { + "seh": "komos" + }, + "CitationForm": { + "seh": "komosa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f1ecb5b4-ec5f-4b06-9b7c-fd48f0a0fc08", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0a06a99-bff0-433c-8266-9addb522284c", + "Definition": {}, + "Gloss": { + "en": "faint", + "pt": "desmair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2f8218f6-1590-4a2c-a29f-047862e9b386", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f1ecb5b4-ec5f-4b06-9b7c-fd48f0a0fc08", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f836f49-463d-46fb-a1c4-74cf0c1de50a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kones" + }, + "CitationForm": { + "seh": "konesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "acbba421-d6ef-4abb-b1b8-65c6402e4a49", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f836f49-463d-46fb-a1c4-74cf0c1de50a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "found guilty", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "achado culpado, perder raza\u0303o no acusac\u0327a\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "guilty", + "pt": "culpado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "0ede51d2-69bd-411e-97f9-da0d5118bbff", + "Name": { + "en": "Condemn, find guilty" + }, + "Code": "4.7.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b9820fe4-a44e-4384-b10b-e75d5dedba56", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "acbba421-d6ef-4abb-b1b8-65c6402e4a49", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49e7fddf-f91d-4132-8ea9-a08a783ad8ad", + "DeletedAt": null, + "LexemeForm": { + "seh": "kontho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2b9a6917-5d94-4491-a253-e34b36bde45e", + "Order": 1, + "DeletedAt": null, + "EntryId": "49e7fddf-f91d-4132-8ea9-a08a783ad8ad", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the same place", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ao mesmo lugar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "the same place", + "pt": "ao mesmo lugar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "859cc13f-c7da-4330-96cd-a0af01b00385", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bale wako azati bwera kudaenda iye? Ande, ali kontho.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Your brother has not yet returned from where he went? Yes, he is in the same place.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Teu irmao ainde nao voltou para onde foi? Sim, esta\u0301 ainde.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "2b9a6917-5d94-4491-a253-e34b36bde45e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cb13003f-6131-4582-925c-f4965ea21dd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "konz" + }, + "CitationForm": { + "seh": "konza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e8c7028d-3a47-4b64-b2be-7b1819997a5f", + "Order": 1, + "DeletedAt": null, + "EntryId": "cb13003f-6131-4582-925c-f4965ea21dd8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "heal often by traditional means", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "heal", + "pt": "curar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bef2ee2d-280d-4f59-b28c-2c1cd9c26bfe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e8c7028d-3a47-4b64-b2be-7b1819997a5f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6c3d945-1d09-4681-ab57-2d827e958a0c", + "DeletedAt": null, + "LexemeForm": { + "seh": "konziw" + }, + "CitationForm": { + "seh": "konziwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fbdc0232-f0da-4dad-87fc-7717e704bca4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6c3d945-1d09-4681-ab57-2d827e958a0c", + "Definition": {}, + "Gloss": { + "en": "be healed", + "pt": "ser curado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b9bbf12-cc4e-4d4b-97b5-5a37d566b5a9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fbdc0232-f0da-4dad-87fc-7717e704bca4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7503fadb-efdf-4f65-b741-e05a7328cda3", + "DeletedAt": null, + "LexemeForm": { + "seh": "kotam" + }, + "CitationForm": { + "seh": "kotama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "184375ba-86e9-464f-9bdd-2993cd0263a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "7503fadb-efdf-4f65-b741-e05a7328cda3", + "Definition": {}, + "Gloss": { + "en": "bend over", + "pt": "enclinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c35c2655-a04d-446a-8851-940d68e9790f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "184375ba-86e9-464f-9bdd-2993cd0263a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b33f4cf5-04f5-46c6-9559-666c3c8b7ecd", + "DeletedAt": null, + "LexemeForm": { + "seh": "koy" + }, + "CitationForm": { + "seh": "koya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b76f140c-bc70-46f5-8da6-3aad4c1b293a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b33f4cf5-04f5-46c6-9559-666c3c8b7ecd", + "Definition": {}, + "Gloss": { + "en": "keep", + "pt": "guardar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a3d2ccd6-f0aa-4601-b266-a2b7e17f8e13", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "b76f140c-bc70-46f5-8da6-3aad4c1b293a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "d97a535e-3bf7-4e43-a361-ecdbb0e2609d", + "Order": 1, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "026ea7ef-fa84-4805-a9ee-6ade8a5afea8", + "Order": 2, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "33f29f92-bace-47d8-8596-91ba39570791", + "Order": 3, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "59922af6-e73d-4d5f-afb3-4f3e0ff0d7fc", + "Order": 4, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e455d9f3-c537-4fcc-b401-ab5f0d6e7a4e", + "Order": 5, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "26b947ee-d663-4de2-bd2c-b5ad32c17ba3", + "Order": 1, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "9b7682f7-c63b-4a46-982d-b9d011a84753", + "Order": 2, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "4cef05db-5023-4826-a037-69997622e7d0", + "Order": 3, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e8f56462-bd82-46dd-b660-56268c759606", + "Order": 4, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42af60da-df70-4c24-a52f-237d7efbf898", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "e784f30d-32a6-4959-bd12-0eec6804bfa7", + "Order": 1, + "DeletedAt": null, + "EntryId": "42af60da-df70-4c24-a52f-237d7efbf898", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Infinitive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Infinitivo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "INF", + "pt": "INF" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e9d2b24-6890-423d-aa8e-b2da2eba5669", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kuuponya throw rock, kundya eat rabbit, kumponyera rabbit throw meat kumpita kupibva hear something", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "e784f30d-32a6-4959-bd12-0eec6804bfa7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "514fa3c2-7d42-427d-8eec-06b31153217a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "dbddb07d-5e8b-4208-a7ee-109d0637028d", + "Order": 1, + "DeletedAt": null, + "EntryId": "514fa3c2-7d42-427d-8eec-06b31153217a", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "76be65ab-4221-41d9-a68f-db80ef100c96", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", + "Order": 1, + "DeletedAt": null, + "EntryId": "76be65ab-4221-41d9-a68f-db80ef100c96", + "Definition": {}, + "Gloss": { + "en": "to", + "pt": "a\u0301" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7336f02a-0896-4169-9174-e2f11fb4f00d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7af9da8b-bf27-4006-bd4c-0bbc5205633f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "a1764bdf-5618-4a7b-9c9a-abb40494bd15", + "Order": 1, + "DeletedAt": null, + "EntryId": "7af9da8b-bf27-4006-bd4c-0bbc5205633f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "you", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2S", + "pt": "2S" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1c47b06-dc41-4c2f-809f-a5d5425a99f0", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "a848db7e-ebea-40ac-843d-381843f2523f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1c47b06-dc41-4c2f-809f-a5d5425a99f0", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "DeletedAt": null, + "LexemeForm": { + "seh": "kubulukira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8c958583-0e11-4b66-b2c9-c3e570712355", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "Definition": {}, + "Gloss": { + "en": "since", + "pt": "desde" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90201f41-e4f6-4ca5-81b3-b5a6149245b7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kubulukira penepo", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "a partir de ali", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:44", + "Ws": "en" + } + ] + }, + "SenseId": "8c958583-0e11-4b66-b2c9-c3e570712355", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "e5460a70-3a92-47f7-8d4f-8d882728e0d7", + "MaybeId": "e5460a70-3a92-47f7-8d4f-8d882728e0d7", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "ComplexFormHeadword": "kubulukira", + "ComponentEntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "ComponentSenseId": null, + "ComponentHeadword": "bulukira" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "kubverana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7435327a-54ab-489b-912c-6cd4fcd4c701", + "Order": 1, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be in peaceful coexistance together, be at peace with", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "deep trusting", + "pt": "de confianc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28594255-2472-4ae9-ab4f-46ed5813b273", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo2:2", + "Ws": "en" + } + ] + }, + "SenseId": "7435327a-54ab-489b-912c-6cd4fcd4c701", + "DeletedAt": null + } + ] + }, + { + "Id": "56a695df-24fd-48b7-8fe5-e174a6a5ad31", + "Order": 2, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be at peace with", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ter comunhao, ter paz com alguem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "unity", + "pt": "unidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "151fa841-74d5-4fd3-9159-00b98f673b22", + "Order": 3, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": {}, + "Gloss": { + "en": "plan", + "pt": "combinar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a1db0f0d-f8e1-4edd-b6f6-14ae2441c385", + "Order": 4, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": {}, + "Gloss": { + "en": "reconcile", + "pt": "reconcilhar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "bb65f916-e679-4e05-a575-aaa75e5f01ec", + "MaybeId": "bb65f916-e679-4e05-a575-aaa75e5f01ec", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "ComplexFormHeadword": "kubverana", + "ComponentEntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "ComponentSenseId": null, + "ComponentHeadword": "bva" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "6fcdabd6-a74f-47b1-b36d-bd40eaebed36", + "Name": { + "en": "Benefactive", + "pt": "Aplicativa" + }, + "DeletedAt": null + }, + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0cbc3af-f925-43ef-a4d5-8a814b553aa9", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50029fb1-1687-4e3c-bb18-f56a4fff5ef0", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0cbc3af-f925-43ef-a4d5-8a814b553aa9", + "Definition": {}, + "Gloss": { + "en": "sun rise", + "pt": "amanhacer" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5db59acb-31c9-4b79-8eca-c7d1a3a93590", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "50029fb1-1687-4e3c-bb18-f56a4fff5ef0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "98fff588-02ef-4849-8b11-26d2a9834a12", + "DeletedAt": null, + "LexemeForm": { + "seh": "dambo" + }, + "CitationForm": { + "seh": "kudambo" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3f89b93b-bb37-4daa-acec-36437ce585cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "98fff588-02ef-4849-8b11-26d2a9834a12", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area near the house, the yard", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "quintal de casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "yard", + "pt": "quintal" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e093cf8e-208a-4db6-9c48-986fb8c8392a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "3f89b93b-bb37-4daa-acec-36437ce585cb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a4833ca4-bcc3-44db-a525-c88993150c07", + "DeletedAt": null, + "LexemeForm": { + "seh": "kudza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "358a74e2-dbb0-4b7c-bec0-4466179f1ea8", + "Order": 1, + "DeletedAt": null, + "EntryId": "a4833ca4-bcc3-44db-a525-c88993150c07", + "Definition": {}, + "Gloss": { + "en": "coming", + "pt": "vindo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "b843cb46-41f1-4434-bd96-13a5eebaa2dc", + "MaybeId": "b843cb46-41f1-4434-bd96-13a5eebaa2dc", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a4833ca4-bcc3-44db-a525-c88993150c07", + "ComplexFormHeadword": "kudza", + "ComponentEntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "ComponentSenseId": null, + "ComponentHeadword": "dza" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4a8bd5e-9f68-43d8-9963-2857d5ca81de", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu" + }, + "CitationForm": { + "seh": "kudzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7a66e6c9-beae-4e1c-942f-967c1366c772", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4a8bd5e-9f68-43d8-9963-2857d5ca81de", + "Definition": {}, + "Gloss": { + "en": "heaven", + "pt": "ce\u0301u" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "d7eddc38-92ea-4a69-90f3-f9d98070cfc4", + "Order": 2, + "DeletedAt": null, + "EntryId": "e4a8bd5e-9f68-43d8-9963-2857d5ca81de", + "Definition": {}, + "Gloss": { + "en": "above", + "pt": "em cima" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuenda-na-kuenda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "99c14abc-9fbf-48a4-931a-f30d37463fd8", + "Order": 1, + "DeletedAt": null, + "EntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "Definition": {}, + "Gloss": { + "en": "forever", + "pt": "para sempre" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a0b6924d-e8f4-4f3d-a04f-2f005e866dcc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "99c14abc-9fbf-48a4-931a-f30d37463fd8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "62b4b833-f5ae-4a6b-a19a-e4a00350908e", + "MaybeId": "62b4b833-f5ae-4a6b-a19a-e4a00350908e", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "ComponentSenseId": null, + "ComponentHeadword": "enda" + }, + { + "Id": "5b23b091-a0bd-4eb1-83b5-6848e0d98b4c", + "MaybeId": "5b23b091-a0bd-4eb1-83b5-6848e0d98b4c", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab13df98-2d45-45f0-b7b1-9d7a17814663", + "DeletedAt": null, + "LexemeForm": { + "seh": "kukakamiz" + }, + "CitationForm": { + "seh": "kukakamiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b27d368e-9629-4c1d-b713-fa4a5e7296be", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab13df98-2d45-45f0-b7b1-9d7a17814663", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "obrigar com insistencia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "force", + "pt": "obrigar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff5aa203-d543-4147-b502-fe4c93be6701", + "DeletedAt": null, + "LexemeForm": { + "seh": "kul" + }, + "CitationForm": { + "seh": "kula" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c8e91867-97f2-4c5a-ab05-da7e9d8530a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff5aa203-d543-4147-b502-fe4c93be6701", + "Definition": {}, + "Gloss": { + "en": "grow", + "pt": "crecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3330cdf6-76d7-485f-b146-c8a0c640f40e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c65d2e3c-2af7-4397-9fc7-9513aec457bf", + "Order": 1, + "DeletedAt": null, + "EntryId": "3330cdf6-76d7-485f-b146-c8a0c640f40e", + "Definition": {}, + "Gloss": { + "en": "to", + "pt": "a\u0301" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3978b157-dddf-4969-a8e2-c602542a124c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kuli anthu onsene", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "em todas as pessoas", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c65d2e3c-2af7-4397-9fc7-9513aec457bf", + "DeletedAt": null + } + ] + }, + { + "Id": "7bb75da8-2d6d-4c36-a2ae-fdca2e05fccf", + "Order": 2, + "DeletedAt": null, + "EntryId": "3330cdf6-76d7-485f-b146-c8a0c640f40e", + "Definition": {}, + "Gloss": { + "en": "for", + "pt": "para" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78e44c04-e513-4248-868c-4d9da03d7add", + "DeletedAt": null, + "LexemeForm": { + "seh": "kulu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "66caea57-5e26-41fb-9075-e204d5d3c6a4", + "Order": 1, + "DeletedAt": null, + "EntryId": "78e44c04-e513-4248-868c-4d9da03d7add", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large size", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "grande tomanho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "large ", + "pt": "grande" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f356b33-3167-411a-b56d-a2bf65c091af", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nyama ikulu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "a large piece of meat or animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "carne ou animal grande", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "66caea57-5e26-41fb-9075-e204d5d3c6a4", + "DeletedAt": null + } + ] + }, + { + "Id": "19f70685-7f84-4c67-97bd-39c148b32a3d", + "Order": 2, + "DeletedAt": null, + "EntryId": "78e44c04-e513-4248-868c-4d9da03d7add", + "Definition": { + "en": { + "Spans": [ + { + "Text": "great in fame or significance", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "grande, nota\u0301vel, importante", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "great", + "pt": "grande" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9d0809a0-356b-4a23-9ac6-8bd77d9ed837", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumb" + }, + "CitationForm": { + "seh": "kumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "03ae5c91-0727-41a3-9667-dbd3115bf69e", + "Order": 1, + "DeletedAt": null, + "EntryId": "9d0809a0-356b-4a23-9ac6-8bd77d9ed837", + "Definition": {}, + "Gloss": { + "en": "dig", + "pt": "cavar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1c5a002-65dd-4052-80d5-099147c288c6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "03ae5c91-0727-41a3-9667-dbd3115bf69e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a3dd1e7-e921-4147-8eae-5a9737474fa2", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbidz" + }, + "CitationForm": { + "seh": "kumbidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4da51546-5eef-463c-b1be-526c4b34bc36", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a3dd1e7-e921-4147-8eae-5a9737474fa2", + "Definition": {}, + "Gloss": { + "en": "to shepherd", + "pt": "pastorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe22c733-954c-4ca7-9c5b-afc4e2977741", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4da51546-5eef-463c-b1be-526c4b34bc36", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33a8cf3a-7aa3-4935-bcf3-e4b7fe590c54", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbuk" + }, + "CitationForm": { + "seh": "kumbuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0515b9b2-9f91-415e-9081-1ffa59094bac", + "Order": 1, + "DeletedAt": null, + "EntryId": "33a8cf3a-7aa3-4935-bcf3-e4b7fe590c54", + "Definition": {}, + "Gloss": { + "en": "remember", + "pt": "lembrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8bafbcc4-3129-492b-bd4e-0eb92205120d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0515b9b2-9f91-415e-9081-1ffa59094bac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "98b8977c-431f-405b-8e58-c78dc519784c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuna" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "42c8d478-acca-448c-a512-3dbcd2d3f34c", + "Order": 1, + "DeletedAt": null, + "EntryId": "98b8977c-431f-405b-8e58-c78dc519784c", + "Definition": {}, + "Gloss": { + "en": "with", + "pt": "com" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fec8f5fd-6c9a-4447-993d-0d8a53e83782", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "42c8d478-acca-448c-a512-3dbcd2d3f34c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e5f75fed-a67c-4248-8993-41f13be9b855", + "DeletedAt": null, + "LexemeForm": { + "seh": "kund" + }, + "CitationForm": { + "seh": "kunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98996975-bc63-4c87-a7b7-79813e098bdc", + "Order": 1, + "DeletedAt": null, + "EntryId": "e5f75fed-a67c-4248-8993-41f13be9b855", + "Definition": {}, + "Gloss": { + "en": "win", + "pt": "vencer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df67c45a-f0df-4f8e-89d4-286ea293de94", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "98996975-bc63-4c87-a7b7-79813e098bdc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2cdbc249-472c-4fb5-816c-ba825f967ff7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kunduli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa95d4f9-9ac2-432e-90e6-23b14f857d49", + "Order": 1, + "DeletedAt": null, + "EntryId": "2cdbc249-472c-4fb5-816c-ba825f967ff7", + "Definition": {}, + "Gloss": { + "en": "back", + "pt": "costas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed4ea1ca-bbae-4d00-9e24-bf6cd0e9bdd8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "aa95d4f9-9ac2-432e-90e6-23b14f857d49", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "374bcb04-b224-48e2-b5b4-153bb427a66b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nja" + }, + "CitationForm": { + "seh": "kunja" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "91688c53-43b6-4ecc-9194-bb960b61155b", + "Order": 1, + "DeletedAt": null, + "EntryId": "374bcb04-b224-48e2-b5b4-153bb427a66b", + "Definition": {}, + "Gloss": { + "en": "just outside", + "pt": "fora" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d867f469-1387-436f-ab72-4e6340d9d7ff", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndapira kunja kwakaru", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Subiu atras de carro (aberto)", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Moreira:24", + "Ws": "en" + } + ] + }, + "SenseId": "91688c53-43b6-4ecc-9194-bb960b61155b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "441c4f41-1d0e-48bf-a432-ce82338367f1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsi" + }, + "CitationForm": { + "seh": "kuntsi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "16a4d77d-f9ea-489b-ac07-bead9ecd8304", + "Order": 1, + "DeletedAt": null, + "EntryId": "441c4f41-1d0e-48bf-a432-ce82338367f1", + "Definition": {}, + "Gloss": { + "en": "behind", + "pt": "atra\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "558eaf38-68d6-44bf-9ad9-f164ba360cd9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Baba ali kunsi kwanyumba.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Pai esta\u0301 atra\u0301s de casa.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24 also says em_baixo; no cha\u0303o", + "Ws": "en" + } + ] + }, + "SenseId": "16a4d77d-f9ea-489b-ac07-bead9ecd8304", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "736f6304-3b11-4c6e-a21e-ea62455f697c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bb5431f8-9a7d-400b-90e3-176019ee4836", + "Order": 1, + "DeletedAt": null, + "EntryId": "736f6304-3b11-4c6e-a21e-ea62455f697c", + "Definition": {}, + "Gloss": { + "en": "where?", + "pt": "onde?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bf4b3113-1f6c-4481-b841-cb22b8a5af5e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bb5431f8-9a7d-400b-90e3-176019ee4836", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77344997-5891-4494-8483-59bf8db48f6e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sere" + }, + "CitationForm": { + "seh": "kusere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f9dbe01-d3b5-4945-849e-797f9bc54d7f", + "Order": 1, + "DeletedAt": null, + "EntryId": "77344997-5891-4494-8483-59bf8db48f6e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "behind the house", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "behind the house", + "pt": "atra\u0301s de casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "47795727-8c7c-4ae1-9e7b-a94aae0b61f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p25; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2f9dbe01-d3b5-4945-849e-797f9bc54d7f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd8be48e-384a-4be6-88dc-61e1dd15e478", + "DeletedAt": null, + "LexemeForm": { + "seh": "kusiana-sian" + }, + "CitationForm": { + "seh": "kusiana-siana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb2f2bf4-bc58-4a1e-a4bc-fddad7670996", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd8be48e-384a-4be6-88dc-61e1dd15e478", + "Definition": {}, + "Gloss": { + "en": "various", + "pt": "va\u0301rios" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a8ed5ad-6b1a-4c7a-acb9-2b53a5ad89fd", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nthenda za kusiana-siana", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "doenc\u0327as va\u0301rias", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "fb2f2bf4-bc58-4a1e-a4bc-fddad7670996", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "55ffaf73-c7dd-4dc5-a13c-547853535cb4", + "DeletedAt": null, + "LexemeForm": { + "seh": "kutali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8637487d-15dc-4ea3-8a29-b69137af0d60", + "Order": 1, + "DeletedAt": null, + "EntryId": "55ffaf73-c7dd-4dc5-a13c-547853535cb4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a long distance off", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "far", + "pt": "longe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "200d93da-549e-46aa-95a3-cf1d8cec48e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "8637487d-15dc-4ea3-8a29-b69137af0d60", + "DeletedAt": null + } + ] + }, + { + "Id": "4c2747b8-cffb-4030-8a96-bab2a7d514bc", + "Order": 2, + "DeletedAt": null, + "EntryId": "55ffaf73-c7dd-4dc5-a13c-547853535cb4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "long ago", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "long ago", + "pt": "ha\u0301 muito tempo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7d6b9945-f6e3-4b31-b4ff-b8c50ff18732", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": { + "seh": "kuti" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "13db6af2-dd49-4d2a-b27f-4da4c5884ebb", + "Order": 1, + "DeletedAt": null, + "EntryId": "7d6b9945-f6e3-4b31-b4ff-b8c50ff18732", + "Definition": {}, + "Gloss": { + "en": "that", + "pt": "que" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "14713929-5278-41e9-82d2-7832394146c8", + "Order": 2, + "DeletedAt": null, + "EntryId": "7d6b9945-f6e3-4b31-b4ff-b8c50ff18732", + "Definition": {}, + "Gloss": { + "en": "so that" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff7f992f-5df9-4b0c-aa46-847e32384280", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsogolo" + }, + "CitationForm": { + "seh": "kutsogolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6ef2f45c-a585-482a-b99f-32aaa9f0b91e", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff7f992f-5df9-4b0c-aa46-847e32384280", + "Definition": {}, + "Gloss": { + "en": "to the front", + "pt": "adiante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0c4075e3-20fc-40e5-931a-ab27ac1bd397", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6ef2f45c-a585-482a-b99f-32aaa9f0b91e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16704d25-1f22-4966-985a-9d543c5e8ff9", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwan" + }, + "CitationForm": { + "seh": "kwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "92947ad8-fa32-4f8a-8bb7-5328ea99a859", + "Order": 1, + "DeletedAt": null, + "EntryId": "16704d25-1f22-4966-985a-9d543c5e8ff9", + "Definition": {}, + "Gloss": { + "en": "be satisfied", + "pt": "estar satisfeito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e16c7b09-b7d6-43e2-899f-db41ee68ac87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "92947ad8-fa32-4f8a-8bb7-5328ea99a859", + "DeletedAt": null + } + ] + }, + { + "Id": "3ce820a3-cad2-4877-a735-e0ef244edba4", + "Order": 2, + "DeletedAt": null, + "EntryId": "16704d25-1f22-4966-985a-9d543c5e8ff9", + "Definition": {}, + "Gloss": { + "en": "succeed", + "pt": "conseguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3bc101d1-1ac9-442d-aa67-d548d60ba5dd", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "This is a test", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "um teste", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "3ce820a3-cad2-4877-a735-e0ef244edba4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "880780db-a760-47cf-9ca5-7a8d6d837559", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwanis" + }, + "CitationForm": { + "seh": "kwanisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d3b00031-dcd0-45f4-ae35-ae7fa76830dd", + "Order": 1, + "DeletedAt": null, + "EntryId": "880780db-a760-47cf-9ca5-7a8d6d837559", + "Definition": {}, + "Gloss": { + "en": "be able", + "pt": "conseguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb7a11a4-47a0-4d02-9182-934fdefb83a4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Mauricio", + "Ws": "en" + } + ] + }, + "SenseId": "d3b00031-dcd0-45f4-ae35-ae7fa76830dd", + "DeletedAt": null + } + ] + }, + { + "Id": "8e87bcf4-8ce8-4cb5-9de7-543122c7fda2", + "Order": 2, + "DeletedAt": null, + "EntryId": "880780db-a760-47cf-9ca5-7a8d6d837559", + "Definition": {}, + "Gloss": { + "en": "win", + "pt": "vencer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e73f3d3-fe5e-4650-b703-55bfdef05d0c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwapul" + }, + "CitationForm": { + "seh": "kwapula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f3d8d3ed-b947-4fc4-baaf-90824ff64ae3", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e73f3d3-fe5e-4650-b703-55bfdef05d0c", + "Definition": {}, + "Gloss": { + "en": "whip", + "pt": "ac\u0327oitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "6bf7569e-dc79-49da-9ce1-e2e03303828a", + "Name": { + "en": "Punish" + }, + "Code": "4.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "15b522c5-78b3-40da-8dcd-27428a4ea63d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f3d8d3ed-b947-4fc4-baaf-90824ff64ae3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb5de16b-1e86-4e00-9b11-38fbbd9879fa", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwat" + }, + "CitationForm": { + "seh": "kwata" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad99f7bd-09ab-4b5d-8043-6c59d31f62c7", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb5de16b-1e86-4e00-9b11-38fbbd9879fa", + "Definition": {}, + "Gloss": { + "en": "take", + "pt": "levar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "166a1016-8662-44e3-8d58-c95ac1338b6c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo024; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ad99f7bd-09ab-4b5d-8043-6c59d31f62c7", + "DeletedAt": null + } + ] + }, + { + "Id": "01dafaba-c6cc-4d16-92a1-cded047655cf", + "Order": 2, + "DeletedAt": null, + "EntryId": "bb5de16b-1e86-4e00-9b11-38fbbd9879fa", + "Definition": {}, + "Gloss": { + "en": "get", + "pt": "buscar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86f6316c-9db1-499e-86d1-df494148cb29", + "DeletedAt": null, + "LexemeForm": { + "seh": "kweca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "2912198b-fb50-4312-8458-7ea24b423fc9", + "Order": 1, + "DeletedAt": null, + "EntryId": "86f6316c-9db1-499e-86d1-df494148cb29", + "Definition": {}, + "Gloss": { + "en": "publically", + "pt": "publicamente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bdc6da08-999c-488d-a5b8-3ba1574b1d1f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Alonga pakweca", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Falou publicamente", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "2912198b-fb50-4312-8458-7ea24b423fc9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "250d5e07-5084-457f-8ec0-b53faeb45993", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwew" + }, + "CitationForm": { + "seh": "kwewa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "da536137-5182-4e26-94bc-6830787b1a7a", + "Order": 1, + "DeletedAt": null, + "EntryId": "250d5e07-5084-457f-8ec0-b53faeb45993", + "Definition": {}, + "Gloss": { + "en": "pull", + "pt": "puxar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "614d37aa-a139-4004-b140-20136dc03e26", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "da536137-5182-4e26-94bc-6830787b1a7a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "27614845-25ec-4fe8-90f0-bb4a9bc7616f", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwir" + }, + "CitationForm": { + "seh": "kwira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cd54851f-e56c-42cf-b34e-32c7cfd30702", + "Order": 1, + "DeletedAt": null, + "EntryId": "27614845-25ec-4fe8-90f0-bb4a9bc7616f", + "Definition": {}, + "Gloss": { + "en": "go up", + "pt": "subir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "36b80037-c89e-4662-b18c-58445ea18d96", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cd54851f-e56c-42cf-b34e-32c7cfd30702", + "DeletedAt": null + } + ] + }, + { + "Id": "6c626dd8-43ba-47a7-a415-35c43f322f31", + "Order": 2, + "DeletedAt": null, + "EntryId": "27614845-25ec-4fe8-90f0-bb4a9bc7616f", + "Definition": {}, + "Gloss": { + "en": "go upstream", + "pt": "ir contracorrente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd4dcec1-65b3-46bb-98f9-bf3874e91bcb", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwis" + }, + "CitationForm": { + "seh": "kwisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dea34b42-5731-4d82-82b0-d6748f0234b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd4dcec1-65b3-46bb-98f9-bf3874e91bcb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "go against the current", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ir contracorrente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "go upstream", + "pt": "ir contracorrente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1386dc2b-811c-4707-b247-dd361ef3eff9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "dea34b42-5731-4d82-82b0-d6748f0234b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a4761ffa-f8ce-4a24-b4d7-903dbd082c66", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwiz" + }, + "CitationForm": { + "seh": "kwiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e417aa16-cff4-4288-835d-2da5443630eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "a4761ffa-f8ce-4a24-b4d7-903dbd082c66", + "Definition": {}, + "Gloss": { + "en": "put on top", + "pt": "por em cima" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8877874c-f379-4e71-8de2-a673ac9769d5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e417aa16-cff4-4288-835d-2da5443630eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "95068ea4-6add-4976-8c94-f0bfac71787e", + "DeletedAt": null, + "LexemeForm": { + "seh": "lalam" + }, + "CitationForm": { + "seh": "lalama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b9767f89-5b00-4986-8c3a-018ea8d05d85", + "Order": 1, + "DeletedAt": null, + "EntryId": "95068ea4-6add-4976-8c94-f0bfac71787e", + "Definition": {}, + "Gloss": { + "en": "live", + "pt": "viver" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28c6effd-2ca5-4d10-8d12-6e29a2f49755", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b9767f89-5b00-4986-8c3a-018ea8d05d85", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3cd81442-cc2e-40d6-b193-d39ca5e795c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "lalanja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a47bb6bc-4c1a-4c1c-90fc-1c8a660e09f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "3cd81442-cc2e-40d6-b193-d39ca5e795c6", + "Definition": {}, + "Gloss": { + "en": "orange tree", + "pt": "laranjeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl: milaranja sg: ??", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aa2fe4e7-b0d4-4aae-a5b7-df83b204feea", + "DeletedAt": null, + "LexemeForm": { + "seh": "lambe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1674d7bb-216f-4b4e-b61b-15cc84c420e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "aa2fe4e7-b0d4-4aae-a5b7-df83b204feea", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "fruto de mbondiera", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "baobab fruit", + "pt": "fruto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "9cae4ee3-03cf-46f7-9475-21d66c93ae04", + "Name": { + "en": "Food from fruit" + }, + "Code": "5.2.3.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "5e1ebdb7-3ccb-4964-9678-5f605a152130", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1674d7bb-216f-4b4e-b61b-15cc84c420e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a5708f5-490c-4b59-9df3-400d3724ee8c", + "DeletedAt": null, + "LexemeForm": { + "seh": "lambir" + }, + "CitationForm": { + "seh": "lambira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc5dde39-7eb8-41f1-a833-564569ccd28b", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a5708f5-490c-4b59-9df3-400d3724ee8c", + "Definition": {}, + "Gloss": { + "en": "worship", + "pt": "adorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc25a7ed-52ee-47c4-b9ce-daa5822505b9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cc5dde39-7eb8-41f1-a833-564569ccd28b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3551a649-032a-49be-8576-900eec508339", + "DeletedAt": null, + "LexemeForm": { + "seh": "lamuk" + }, + "CitationForm": { + "seh": "lamuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "20cf4edd-301c-4989-86b7-de760562ba4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "3551a649-032a-49be-8576-900eec508339", + "Definition": {}, + "Gloss": { + "en": "wake up", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3af6ce2e-7fdb-4b14-8787-4aadf38d3ed8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "20cf4edd-301c-4989-86b7-de760562ba4e", + "DeletedAt": null + } + ] + }, + { + "Id": "0b996a63-cfca-49ce-9717-5b7b12d34c58", + "Order": 2, + "DeletedAt": null, + "EntryId": "3551a649-032a-49be-8576-900eec508339", + "Definition": {}, + "Gloss": { + "en": "stand up", + "pt": "levantar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f894432-e1cc-40bd-b29f-0e2b28fd30d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "lamus" + }, + "CitationForm": { + "seh": "lamusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e8764c07-d5ea-42d5-b86c-d8e9979ab798", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f894432-e1cc-40bd-b29f-0e2b28fd30d2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake up someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causar acordar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00c51ae8-400e-40e3-807f-cee9665f0b26", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e8764c07-d5ea-42d5-b86c-d8e9979ab798", + "DeletedAt": null + } + ] + }, + { + "Id": "de112476-c4a7-4606-ac3c-5e0e44d9aa39", + "Order": 2, + "DeletedAt": null, + "EntryId": "4f894432-e1cc-40bd-b29f-0e2b28fd30d2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "get someone up", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causar levantar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "get up", + "pt": "levantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f3bebae-4eaa-487c-91ac-b591653dcabf", + "DeletedAt": null, + "LexemeForm": { + "seh": "landan" + }, + "CitationForm": { + "seh": "landana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07b38b92-3a89-421b-befa-15fad6569e32", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f3bebae-4eaa-487c-91ac-b591653dcabf", + "Definition": {}, + "Gloss": { + "en": "is like", + "pt": "e\u0301 simulante" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb9a2c0c-63d5-4b78-8079-5034f3473a21", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "07b38b92-3a89-421b-befa-15fad6569e32", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06976211-d271-4135-8452-e2aa57d51b46", + "DeletedAt": null, + "LexemeForm": { + "seh": "lang\u0027an" + }, + "CitationForm": { + "seh": "lang\u0027ana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6aa3269d-8c92-4daf-b74e-5c8adc0a4fc1", + "Order": 1, + "DeletedAt": null, + "EntryId": "06976211-d271-4135-8452-e2aa57d51b46", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "olhar, reparar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "look", + "pt": "olhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "946d57b4-05c8-4258-bd0c-2bc683132944", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6aa3269d-8c92-4daf-b74e-5c8adc0a4fc1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fda07a70-f8b4-4c66-a55c-d8e45c28b172", + "DeletedAt": null, + "LexemeForm": { + "seh": "lang\u0027anis" + }, + "CitationForm": { + "seh": "lang\u0027anisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "983b1d9f-0995-402b-bdf1-9925d8044db7", + "Order": 1, + "DeletedAt": null, + "EntryId": "fda07a70-f8b4-4c66-a55c-d8e45c28b172", + "Definition": {}, + "Gloss": { + "en": "observe", + "pt": "observar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9263e9c0-81bf-43ff-b07e-2f51ac95ae81", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "983b1d9f-0995-402b-bdf1-9925d8044db7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d087c114-30bc-45c9-927c-414b505fe1c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ledzer" + }, + "CitationForm": { + "seh": "ledzera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad4b7a60-ba81-464e-becf-6226fbf153bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d087c114-30bc-45c9-927c-414b505fe1c7", + "Definition": {}, + "Gloss": { + "en": "get drunk", + "pt": "embebedar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "333ef741-6753-4864-9eec-273a00ff5184", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ad4b7a60-ba81-464e-becf-6226fbf153bc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8da08768-9b89-4d6a-ab4e-deb87d8e40fe", + "DeletedAt": null, + "LexemeForm": { + "seh": "lek" + }, + "CitationForm": { + "seh": "leka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b525967-2c84-492b-b802-08372872cdf5", + "Order": 1, + "DeletedAt": null, + "EntryId": "8da08768-9b89-4d6a-ab4e-deb87d8e40fe", + "Definition": {}, + "Gloss": { + "en": "quit", + "pt": "desistir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ca22caa5-4f85-42a1-929c-89592a5fc3e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "6b525967-2c84-492b-b802-08372872cdf5", + "DeletedAt": null + } + ] + }, + { + "Id": "d33f8677-dabf-458f-80a8-e606bdb4cb0c", + "Order": 2, + "DeletedAt": null, + "EntryId": "8da08768-9b89-4d6a-ab4e-deb87d8e40fe", + "Definition": {}, + "Gloss": { + "en": "put", + "pt": "deixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03db04bc-1143-4170-ab2d-ef3176203966", + "DeletedAt": null, + "LexemeForm": { + "seh": "lekerer" + }, + "CitationForm": { + "seh": "lekerera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1229547d-d9de-4523-ba1e-891053df36a8", + "Order": 1, + "DeletedAt": null, + "EntryId": "03db04bc-1143-4170-ab2d-ef3176203966", + "Definition": {}, + "Gloss": { + "en": "forgive", + "pt": "perdoar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "08f7c015-e173-4059-9307-133dd5b8cc44", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1229547d-d9de-4523-ba1e-891053df36a8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4656786d-1a59-4576-92c9-9a8145677230", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemb" + }, + "CitationForm": { + "seh": "lemba" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3a89870c-b27f-490e-bed9-6f03a8074d9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4656786d-1a59-4576-92c9-9a8145677230", + "Definition": {}, + "Gloss": { + "en": "write", + "pt": "escrever" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "af700054-258a-458a-9e38-e90397833e51", + "Name": { + "en": "Write" + }, + "Code": "3.5.7.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a296f4d8-cef5-4385-989d-c4b0009061ad", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3a89870c-b27f-490e-bed9-6f03a8074d9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a960cfde-c0e9-469b-8b51-726d687ef6a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "lembw" + }, + "CitationForm": { + "seh": "lembwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "703d0fd4-773c-4915-99f6-0f9a461290f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "a960cfde-c0e9-469b-8b51-726d687ef6a2", + "Definition": {}, + "Gloss": { + "en": "written", + "pt": "ser escrito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "8db7c016-bdc9-410b-9523-3197602358f4", + "Name": { + "en": "Written material" + }, + "Code": "3.5.7.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4caf83ac-6a67-49c6-8108-cd95283c5f08", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "703d0fd4-773c-4915-99f6-0f9a461290f8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f0d25f9-51f2-49f0-9aab-25e7ff3b6f14", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemedz" + }, + "CitationForm": { + "seh": "lemedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98b0f1d8-b3f8-4876-9ec5-17e28a80a8b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f0d25f9-51f2-49f0-9aab-25e7ff3b6f14", + "Definition": {}, + "Gloss": { + "en": "respect", + "pt": "respeitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9", + "Name": { + "en": "Honor" + }, + "Code": "4.5.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "9148e55b-acb5-439c-85c7-1b1ffb7ffb1a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "98b0f1d8-b3f8-4876-9ec5-17e28a80a8b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d01b93b-9cb0-4620-8ea2-e07ec147d467", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemer" + }, + "CitationForm": { + "seh": "lemera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0a80dcf6-b583-4c1f-9e80-b636400cdfcb", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d01b93b-9cb0-4620-8ea2-e07ec147d467", + "Definition": {}, + "Gloss": { + "en": "over weighed", + "pt": "cargado demais" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28228fd2-9575-42d5-b01e-6fd139750d8a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0a80dcf6-b583-4c1f-9e80-b636400cdfcb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd3d7ca9-5192-4427-ad66-d189dd835ea2", + "DeletedAt": null, + "LexemeForm": { + "seh": "leng" + }, + "CitationForm": { + "seh": "lenga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f19f938-d264-4e3a-aa26-502445dd8266", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd3d7ca9-5192-4427-ad66-d189dd835ea2", + "Definition": {}, + "Gloss": { + "en": "create", + "pt": "criar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "305dd894-82b2-492d-8280-de50a130d24b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8f19f938-d264-4e3a-aa26-502445dd8266", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0b6d441-05dc-4d1d-b30b-50b5b471cc53", + "DeletedAt": null, + "LexemeForm": { + "seh": "lenges" + }, + "CitationForm": { + "seh": "lengesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "940376b0-d627-4d5c-82c7-bc77aa4a772b", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0b6d441-05dc-4d1d-b30b-50b5b471cc53", + "Definition": { + "en": { + "Spans": [ + { + "Text": "count numbers", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "contar nu\u0301meros", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "count", + "pt": "contar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cab3aa47-e4c1-4a02-abfc-f7eaf3aba50e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "940376b0-d627-4d5c-82c7-bc77aa4a772b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09226098-f664-425f-81fd-18c0a8c7afbf", + "DeletedAt": null, + "LexemeForm": { + "seh": "lero" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "df45b4f2-25bd-4f90-b89c-3cec51877f7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "09226098-f664-425f-81fd-18c0a8c7afbf", + "Definition": {}, + "Gloss": { + "en": "today", + "pt": "ho\u0301je" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "42dff89b-f826-4687-a75a-b07801ba42d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "df45b4f2-25bd-4f90-b89c-3cec51877f7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8f7c22b-7757-48a6-88d5-3f312f18e4de", + "DeletedAt": null, + "LexemeForm": { + "seh": "leser" + }, + "CitationForm": { + "seh": "lesera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e89b6243-a7c0-48c2-b34c-1bf1fc057d85", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8f7c22b-7757-48a6-88d5-3f312f18e4de", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tempt, experiment/try, to fool", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "tempt", + "pt": "tentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb", + "Name": { + "en": "Deceive" + }, + "Code": "4.3.5.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "509924a9-5bd2-4c3a-99b9-be71d26d5987", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e89b6243-a7c0-48c2-b34c-1bf1fc057d85", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "85aa5ed0-186b-4cc4-bb3d-e2ea9a75ddf0", + "DeletedAt": null, + "LexemeForm": { + "seh": "lezi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2d93aa5f-85c0-4262-a073-4c52725df0ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "85aa5ed0-186b-4cc4-bb3d-e2ea9a75ddf0", + "Definition": {}, + "Gloss": { + "en": "vulture", + "pt": "abutre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4a798c9-79d8-43a8-8a96-b234608e1f5e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2d93aa5f-85c0-4262-a073-4c52725df0ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e44e4446-bbb2-488d-b2fc-a374add17b0f", + "DeletedAt": null, + "LexemeForm": { + "seh": "li" + }, + "CitationForm": { + "seh": "li" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "14656f11-c542-4d0d-a8d8-1bf4404d8a50", + "Order": 1, + "DeletedAt": null, + "EntryId": "e44e4446-bbb2-488d-b2fc-a374add17b0f", + "Definition": {}, + "Gloss": { + "en": "be", + "pt": "ser" + }, + "PartOfSpeech": { + "Id": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "Name": { + "en": "Irregular Verb - li" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2785155-c34c-438a-8406-38ad14a9bd31", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ali kunyumba", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "S/he is in the house.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Esta\u0301 em casa.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "14656f11-c542-4d0d-a8d8-1bf4404d8a50", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eee1f47d-dca3-4c92-8960-b7669879c60c", + "DeletedAt": null, + "LexemeForm": { + "seh": "likombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b0b51446-4aca-4563-afde-fece60b50110", + "Order": 1, + "DeletedAt": null, + "EntryId": "eee1f47d-dca3-4c92-8960-b7669879c60c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spoon made of wood or shell, by extension metal", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spoon", + "pt": "colher" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b4e6c077-4f5e-44f3-8868-1f7ae3486585", + "Name": { + "en": "Eating utensil" + }, + "Code": "5.2.2.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "d6656000-4bfa-4cf1-a051-f5c2bc02cced", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "b0b51446-4aca-4563-afde-fece60b50110", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a76a32b-988e-40da-9574-b73a2a61a7f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "lim" + }, + "CitationForm": { + "seh": "lima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e9e0b4cd-f43e-4782-99e4-ebdbb9beface", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a76a32b-988e-40da-9574-b73a2a61a7f5", + "Definition": {}, + "Gloss": { + "en": "cultivate", + "pt": "cultivar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "5bb29704-fe0f-4594-9622-ce0aa42b93c8", + "Name": { + "en": "Agriculture" + }, + "Code": "6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "32a89fe3-586f-46d2-8f9f-db42c0178de2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e9e0b4cd-f43e-4782-99e4-ebdbb9beface", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d810efd-113c-43df-accb-cd2111c4ef5b", + "DeletedAt": null, + "LexemeForm": { + "seh": "limir" + }, + "CitationForm": { + "seh": "limira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f252789-f43e-4ab9-861b-24a34a80be54", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d810efd-113c-43df-accb-cd2111c4ef5b", + "Definition": {}, + "Gloss": { + "en": "standing", + "pt": "estar de pe\u0301" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b255f337-9e7b-4ac6-803b-15c5ef2cf93a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "6f252789-f43e-4ab9-861b-24a34a80be54", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "28b3b978-50c9-4bce-95db-e61bc98a3f59", + "DeletedAt": null, + "LexemeForm": { + "seh": "lini" + }, + "CitationForm": { + "seh": "lini?" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "98a00a46-22ea-43b9-9c91-30592f12e9b8", + "Order": 1, + "DeletedAt": null, + "EntryId": "28b3b978-50c9-4bce-95db-e61bc98a3f59", + "Definition": {}, + "Gloss": { + "en": "when?", + "pt": "quando?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a6b95bd3-1097-4023-ac6d-1670bc323b69", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "98a00a46-22ea-43b9-9c91-30592f12e9b8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "deaf7897-9532-4ba3-afc2-3d25300db453", + "DeletedAt": null, + "LexemeForm": { + "seh": "lip" + }, + "CitationForm": { + "seh": "lipa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09e43ed4-56f0-486c-9716-df293f95bbc2", + "Order": 1, + "DeletedAt": null, + "EntryId": "deaf7897-9532-4ba3-afc2-3d25300db453", + "Definition": {}, + "Gloss": { + "en": "pay", + "pt": "pagar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0126917-61cc-4acf-b66d-4667d1a66155", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "09e43ed4-56f0-486c-9716-df293f95bbc2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b53184d2-c0c0-4edf-a0e4-74c88d9296b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "lipo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21d335a6-7d87-4e70-ac02-23010d17dcf2", + "Order": 1, + "DeletedAt": null, + "EntryId": "b53184d2-c0c0-4edf-a0e4-74c88d9296b1", + "Definition": {}, + "Gloss": { + "en": "there was", + "pt": "era ali" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "264f31d2-0988-429a-9026-6024b3cd18cf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akhalipo \u0022there was\u0022 alipo \u0022there is\u0022", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "21d335a6-7d87-4e70-ac02-23010d17dcf2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3679eb18-b521-49d0-9430-93a309567c54", + "DeletedAt": null, + "LexemeForm": { + "seh": "lir" + }, + "CitationForm": { + "seh": "lira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "954570dd-87fd-4d6e-add9-7d819381c22c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3679eb18-b521-49d0-9430-93a309567c54", + "Definition": {}, + "Gloss": { + "en": "cry", + "pt": "chorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "b4fe4698-54a2-4bcd-9490-e07ee1ee97af", + "Name": { + "en": "Cry, tear" + }, + "Code": "3.5.6.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb2c05fd-4063-4299-a21f-49fb586023fd", + "DeletedAt": null, + "LexemeForm": { + "seh": "lirimi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad5209b6-e450-44ea-9e26-7843d1400eef", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb2c05fd-4063-4299-a21f-49fb586023fd", + "Definition": {}, + "Gloss": { + "en": "tongue", + "pt": "li\u0301ngua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28709ae5-978b-4fc6-9815-8b203f5a4f73", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "ad5209b6-e450-44ea-9e26-7843d1400eef", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e504f90-f7df-46a0-8fbb-080f16fc33b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "liwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1a2af823-093d-4226-b1af-71906c968a91", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e504f90-f7df-46a0-8fbb-080f16fc33b1", + "Definition": {}, + "Gloss": { + "en": "snare", + "pt": "armadilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "29f4e655-80af-4c02-be8c-63c5473e32ce", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "1a2af823-093d-4226-b1af-71906c968a91", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "acd26daa-9774-4a34-997d-8d3d7660a54b", + "DeletedAt": null, + "LexemeForm": { + "seh": "liz" + }, + "CitationForm": { + "seh": "liza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fbdc42ce-d4b0-45b8-8385-d9096064ba6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "acd26daa-9774-4a34-997d-8d3d7660a54b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "play instrument", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tocar instrumente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "play", + "pt": "tocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b47081f-512b-41a9-940c-a6c7987aa056", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "fbdc42ce-d4b0-45b8-8385-d9096064ba6f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c007e718-9eb0-442a-8c3b-42b8e2e32453", + "DeletedAt": null, + "LexemeForm": { + "seh": "lobzek" + }, + "CitationForm": { + "seh": "lobzeka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "45ef7e48-d380-41f2-9ec2-7ce2f5616944", + "Order": 1, + "DeletedAt": null, + "EntryId": "c007e718-9eb0-442a-8c3b-42b8e2e32453", + "Definition": {}, + "Gloss": { + "en": "shipwreck", + "pt": "naufragar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e30652da-be16-4e3b-bd94-1457f71f5fb9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Alobzweka mwadia", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Naufragou com canoa", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth = sink", + "Ws": "en" + } + ] + }, + "SenseId": "45ef7e48-d380-41f2-9ec2-7ce2f5616944", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f2983d64-34f8-473a-9575-3bfb1ef54d2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "lokot" + }, + "CitationForm": { + "seh": "lokota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5cf564d-fa0d-4818-94dd-e542b59f80a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "f2983d64-34f8-473a-9575-3bfb1ef54d2e", + "Definition": {}, + "Gloss": { + "en": "find", + "pt": "achar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fa071f13-666b-4834-a265-6b894ab69054", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a5cf564d-fa0d-4818-94dd-e542b59f80a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "46f0b1a4-d1a2-4e13-8424-20776002c03f", + "DeletedAt": null, + "LexemeForm": { + "seh": "lokoter" + }, + "CitationForm": { + "seh": "lokotera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f6191876-68d6-4e06-877f-24ef94aa31d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "46f0b1a4-d1a2-4e13-8424-20776002c03f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "pick up left overs", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "pick up scraps", + "pt": "apanhar migalhas" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c837823-367a-4f9a-8906-ba688ef20fd1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f6191876-68d6-4e06-877f-24ef94aa31d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "931ae19c-9a0d-494e-8fcf-0ee54c67fa9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "lond" + }, + "CitationForm": { + "seh": "londa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "27e52026-b6f1-47b3-a588-e7891b63d80f", + "Order": 1, + "DeletedAt": null, + "EntryId": "931ae19c-9a0d-494e-8fcf-0ee54c67fa9e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to follow or track", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "seguir por onde outra passo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "follow", + "pt": "seguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "19d54c2f-ae03-4cbc-9b7e-57292f92fbc1", + "Name": { + "en": "Pursue" + }, + "Code": "7.2.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a84211ca-c71a-4ddc-88f4-76245b304e7a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwanabwa ali kulonda cinyama", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ca\u0303o esta\u0301 a perseguir o animal.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "27e52026-b6f1-47b3-a588-e7891b63d80f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "069db5da-52da-42b1-a39f-c8e4554f6362", + "DeletedAt": null, + "LexemeForm": { + "seh": "long" + }, + "CitationForm": { + "seh": "longa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7639dce1-8ea5-40de-b8e9-681656497f59", + "Order": 1, + "DeletedAt": null, + "EntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "Definition": {}, + "Gloss": { + "en": "talk", + "pt": "falar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c834dec1-0ff1-4da7-b273-654c70b5bbfe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "7639dce1-8ea5-40de-b8e9-681656497f59", + "DeletedAt": null + } + ] + }, + { + "Id": "94a44008-2b57-45cf-abf8-56a29b881810", + "Order": 2, + "DeletedAt": null, + "EntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "Definition": {}, + "Gloss": { + "en": "say", + "pt": "dizer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "3aca361b-c1c2-4f76-9f17-c07d5caf3033", + "MaybeId": "3aca361b-c1c2-4f76-9f17-c07d5caf3033", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "ComplexFormHeadword": "longana", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + }, + { + "Id": "bcfccc21-fb44-4916-bc17-7e2ddb79321e", + "MaybeId": "bcfccc21-fb44-4916-bc17-7e2ddb79321e", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "ComplexFormHeadword": "malongero", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "DeletedAt": null, + "LexemeForm": { + "seh": "longan" + }, + "CitationForm": { + "seh": "longana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f1d582f4-f8a1-4e6c-99f3-039650900166", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "Definition": {}, + "Gloss": { + "en": "dispute", + "pt": "disputar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f11af878-af28-454f-8ae2-862cbaffe855", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f1d582f4-f8a1-4e6c-99f3-039650900166", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "3aca361b-c1c2-4f76-9f17-c07d5caf3033", + "MaybeId": "3aca361b-c1c2-4f76-9f17-c07d5caf3033", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "ComplexFormHeadword": "longana", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5e597800-64a1-4748-bd2e-4ee399aab0e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "lot" + }, + "CitationForm": { + "seh": "lota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbe5cf38-4025-4302-a67f-f288ae0d0b1f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5e597800-64a1-4748-bd2e-4ee399aab0e8", + "Definition": {}, + "Gloss": { + "en": "dream", + "pt": "sonhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d34f6947-a053-48c2-b1d7-2f311eed6a48", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cbe5cf38-4025-4302-a67f-f288ae0d0b1f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "741413db-214c-44f0-9646-a3dc4fa3f382", + "DeletedAt": null, + "LexemeForm": { + "seh": "low" + }, + "CitationForm": { + "seh": "lowa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a87fe186-90f5-4664-b096-faa0c8d73c83", + "Order": 1, + "DeletedAt": null, + "EntryId": "741413db-214c-44f0-9646-a3dc4fa3f382", + "Definition": {}, + "Gloss": { + "en": "sink", + "pt": "naufragar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4de33742-5a70-4593-8386-6426bbc5a99c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a87fe186-90f5-4664-b096-faa0c8d73c83", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4507a379-ef26-4e14-9e20-064dfc89951d", + "DeletedAt": null, + "LexemeForm": { + "seh": "lukul" + }, + "CitationForm": { + "seh": "lukula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a48b6a25-3b5b-4749-b75c-5b54f2465c2f", + "Order": 1, + "DeletedAt": null, + "EntryId": "4507a379-ef26-4e14-9e20-064dfc89951d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "when a ruminante animal brings up food", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "ruminate", + "pt": "ruminar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b6c1cc10-351f-4db2-9ef8-407027bc3549", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a48b6a25-3b5b-4749-b75c-5b54f2465c2f", + "DeletedAt": null + } + ] + }, + { + "Id": "ec56155f-e5b8-435d-a475-7a774c86a3d3", + "Order": 2, + "DeletedAt": null, + "EntryId": "4507a379-ef26-4e14-9e20-064dfc89951d", + "Definition": {}, + "Gloss": { + "en": "vomit", + "pt": "vomitar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fad0b873-83d0-4e97-9aeb-6fe7c6768ec9", + "DeletedAt": null, + "LexemeForm": { + "seh": "lukwali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3ffb5f73-0470-40c2-b53d-79dcdd45d2a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "fad0b873-83d0-4e97-9aeb-6fe7c6768ec9", + "Definition": {}, + "Gloss": { + "en": "prostitution", + "pt": "prostituic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b2e9e5e9-c305-4740-a3d4-e83334d07c39", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3ffb5f73-0470-40c2-b53d-79dcdd45d2a7", + "DeletedAt": null + } + ] + }, + { + "Id": "4c579b8c-15d9-4217-91d2-a801e123a806", + "Order": 2, + "DeletedAt": null, + "EntryId": "fad0b873-83d0-4e97-9aeb-6fe7c6768ec9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sexual immorality", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "imoralidade sexual", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "immorality", + "pt": "imoralidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5de74fc5-b4fe-481b-9411-16e5f8c295fa", + "DeletedAt": null, + "LexemeForm": { + "seh": "lul" + }, + "CitationForm": { + "seh": "lula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "54ed62eb-8bcb-47ef-a452-8ea424fe3d01", + "Order": 1, + "DeletedAt": null, + "EntryId": "5de74fc5-b4fe-481b-9411-16e5f8c295fa", + "Definition": { + "en": { + "Spans": [ + { + "Text": "rotting of food because of no refrigeration", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "podrecer comida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rot", + "pt": "podrecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d2d8b05-f018-4ad4-b0a2-273973933f2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "lulup" + }, + "CitationForm": { + "seh": "lulupa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b2804ad1-af28-4a1a-9e64-4219db3dfd42", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d2d8b05-f018-4ad4-b0a2-273973933f2b", + "Definition": {}, + "Gloss": { + "en": "light weight", + "pt": "leve" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4330a027-99e8-481b-8009-d6a5750a00e9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b2804ad1-af28-4a1a-9e64-4219db3dfd42", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2f52d128-5fd5-404f-8e4b-e2b39c157392", + "DeletedAt": null, + "LexemeForm": { + "seh": "lum" + }, + "CitationForm": { + "seh": "luma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea0b55a0-af6b-4491-af06-4fa4ca2f95c7", + "Order": 1, + "DeletedAt": null, + "EntryId": "2f52d128-5fd5-404f-8e4b-e2b39c157392", + "Definition": {}, + "Gloss": { + "en": "bite", + "pt": "morder" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "70a05b51-2334-4adc-a876-ada0eb6c6995", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ea0b55a0-af6b-4491-af06-4fa4ca2f95c7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08f79028-69d4-46ed-bd92-a6370a1f7c6b", + "DeletedAt": null, + "LexemeForm": { + "seh": "lumbza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "48671a5c-801b-4f46-b57a-33a713431e3e", + "Order": 1, + "DeletedAt": null, + "EntryId": "08f79028-69d4-46ed-bd92-a6370a1f7c6b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Livingstone antilope", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "antilope", + "pt": "antelope" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2423dbb1-cb03-40a3-ac64-26eb40a6640b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "48671a5c-801b-4f46-b57a-33a713431e3e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ade2df45-cb8b-4718-a1e3-1b4113047737", + "DeletedAt": null, + "LexemeForm": { + "seh": "lumo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "611bc6d1-791c-4d82-a45f-7721e8b7b7cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "ade2df45-cb8b-4718-a1e3-1b4113047737", + "Definition": {}, + "Gloss": { + "en": "blade", + "pt": "la\u0301mina" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26a00be4-5b87-47de-9850-d7d3c0e8f9a7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "611bc6d1-791c-4d82-a45f-7721e8b7b7cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab02d289-84c7-4f71-a1f9-151708cd27f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "lungam" + }, + "CitationForm": { + "seh": "lungama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "122c9804-0c81-46bf-a059-eff5a71114d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab02d289-84c7-4f71-a1f9-151708cd27f5", + "Definition": {}, + "Gloss": { + "en": "justice", + "pt": "justica" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c09f749c-8d81-4a70-97ba-e0079779773e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "122c9804-0c81-46bf-a059-eff5a71114d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0bb89c2-38b0-4d91-bb8e-09f9529d6c69", + "DeletedAt": null, + "LexemeForm": { + "seh": "lungul" + }, + "CitationForm": { + "seh": "lungula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "45cfd084-6fcc-4918-8aa8-1f448a585505", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0bb89c2-38b0-4d91-bb8e-09f9529d6c69", + "Definition": {}, + "Gloss": { + "en": "salty taste", + "pt": "sabor de sal" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71d0edb7-f3b1-49dc-941a-bf77de1d1c54", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "45cfd084-6fcc-4918-8aa8-1f448a585505", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa3adea2-17d4-48cf-b1f7-a8dbbad88a5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "luphato" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "48326394-3e3c-4ced-a93e-aad376af4be3", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa3adea2-17d4-48cf-b1f7-a8dbbad88a5d", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "lobolo, premeiro promesa, prendas ou dinheiro dado para iniciar uma promessa de casamento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bride price", + "pt": "lobolo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d679307-91c5-43cf-b259-aca5d5a90c2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "lupya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a0e195ba-db0d-4e06-8512-0d683e9d9cb5", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d679307-91c5-43cf-b259-aca5d5a90c2c", + "Definition": {}, + "Gloss": { + "en": "burnt", + "pt": "queimada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28fe0e82-c3da-4557-a2e5-b3e342428a2d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nzizi uno ntsanga musaoneka lupya dza okhaokha.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Este tempo o mato se ve queimado so\u0301mente aquele tipo.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a0e195ba-db0d-4e06-8512-0d683e9d9cb5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5cad3d08-3860-4af6-8d26-b250ee09ea42", + "DeletedAt": null, + "LexemeForm": { + "seh": "luwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88f99db9-c0c5-44b5-a9af-b2c4f61fe87f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5cad3d08-3860-4af6-8d26-b250ee09ea42", + "Definition": {}, + "Gloss": { + "en": "flower", + "pt": "flo\u0301r" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c345f278-91ff-463d-b9a6-8abac8a267eb", + "Name": { + "en": "Grass, herb, vine" + }, + "Code": "1.5.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b27f9aed-bb46-4277-a161-ab49f0aa6412", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "88f99db9-c0c5-44b5-a9af-b2c4f61fe87f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04c59753-bc07-4b42-a0d6-471f9b4db0d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "luz" + }, + "CitationForm": { + "seh": "luza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7bbab562-1e09-4b3c-84ce-f59fbfe201ae", + "Order": 1, + "DeletedAt": null, + "EntryId": "04c59753-bc07-4b42-a0d6-471f9b4db0d7", + "Definition": {}, + "Gloss": { + "en": "lose", + "pt": "perder" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "abbf1b68-f3cd-474c-b7d6-a3f4d9245ae4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7bbab562-1e09-4b3c-84ce-f59fbfe201ae", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "bale" + }, + "CitationForm": { + "seh": "m\u0027bale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a625dc05-4f89-44fb-a88a-3e2f564442dd", + "Order": 1, + "DeletedAt": null, + "EntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "brother, sister", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "brother", + "pt": "irma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3423c016-0d7d-42e5-be79-f333eafacd8d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,33; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a625dc05-4f89-44fb-a88a-3e2f564442dd", + "DeletedAt": null + } + ] + }, + { + "Id": "2ed3a10f-6c6d-40b2-b807-38bbe00a07a0", + "Order": 2, + "DeletedAt": null, + "EntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the plural it can mean family", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sister", + "pt": "irma\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "6c8e6a75-ead2-4cfb-bdfa-56d4bd7bc413", + "MaybeId": "6c8e6a75-ead2-4cfb-bdfa-56d4bd7bc413", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "790f529d-28ed-4a50-af49-27de75aecc4f", + "ComplexFormHeadword": "ubale", + "ComponentEntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "ComponentSenseId": null, + "ComponentHeadword": "m\u0027bale" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f04d1336-46bf-4e67-a0ae-8b2520eb0cc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027bambakuca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "649cbb4c-aeac-49d3-9939-2a485927f7d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "f04d1336-46bf-4e67-a0ae-8b2520eb0cc1", + "Definition": {}, + "Gloss": { + "en": "early morning", + "pt": "madurgada" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea32a665-7d74-47bd-a1a2-cc8f1b3a846e", + "DeletedAt": null, + "LexemeForm": { + "seh": "binzi" + }, + "CitationForm": { + "seh": "m\u0027binzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "461c78a8-d2b1-4d57-9c9a-bc14e85364d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea32a665-7d74-47bd-a1a2-cc8f1b3a846e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Jackel, Wild dog or Aardwolf(no distiction made)", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Chacal ou ca\u0303o selvagem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "jackal", + "pt": "chacal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7284946-7853-4504-b8b7-ad5673658e0d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque, Moreira:15", + "Ws": "en" + } + ] + }, + "SenseId": "461c78a8-d2b1-4d57-9c9a-bc14e85364d1", + "DeletedAt": null + } + ] + }, + { + "Id": "9b148078-a552-4b81-91fa-c5313a4badc9", + "Order": 2, + "DeletedAt": null, + "EntryId": "ea32a665-7d74-47bd-a1a2-cc8f1b3a846e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild dog, does not include domestic dog", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "wild dog", + "pt": "ca\u0303o selvagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6e3f095-e1e8-43f9-88a7-0c07de62785b", + "DeletedAt": null, + "LexemeForm": { + "seh": "bobo" + }, + "CitationForm": { + "seh": "m\u0027bobo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef7144af-9ed2-45d2-8ae0-5e8f11d5cce5", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6e3f095-e1e8-43f9-88a7-0c07de62785b", + "Definition": {}, + "Gloss": { + "en": "snake type", + "pt": "cobra tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9734a448-1a40-4b69-b761-0fb698008c99", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef7144af-9ed2-45d2-8ae0-5e8f11d5cce5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "76507046-08dd-42da-8179-7290e797c7e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027boliboli" + }, + "CitationForm": { + "seh": "m\u0027boliboli" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f80ea820-9403-463b-aaf5-e0e7747d95d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "76507046-08dd-42da-8179-7290e797c7e4", + "Definition": {}, + "Gloss": { + "en": "blind person", + "pt": "cego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5cda2cbe-24b5-47e3-ba09-1280c6ed8d2c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f80ea820-9403-463b-aaf5-e0e7747d95d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8b999bd-aae7-4303-b4ae-a156b281ea30", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027dzukwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d2999056-d762-47c7-966a-8f2fc20d1272", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8b999bd-aae7-4303-b4ae-a156b281ea30", + "Definition": {}, + "Gloss": { + "en": "ghost", + "pt": "fantasma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd48ee8f-48bd-4ab9-a964-d369d3dd8921", + "DeletedAt": null, + "LexemeForm": { + "seh": "phale" + }, + "CitationForm": { + "seh": "m\u0027phale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c63aca2-095f-4b6c-a2ad-f0b45abc4345", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd48ee8f-48bd-4ab9-a964-d369d3dd8921", + "Definition": {}, + "Gloss": { + "en": "boy", + "pt": "rapaz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8453ff91-003f-470a-84c2-9e5edac856a3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "2c63aca2-095f-4b6c-a2ad-f0b45abc4345", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b69e7877-6b8b-4b35-af0c-42dc6f4f6a6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "phembero" + }, + "CitationForm": { + "seh": "m\u0027phembero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4b55442-7b5f-4da4-8df5-f41a07a7a07a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b69e7877-6b8b-4b35-af0c-42dc6f4f6a6a", + "Definition": {}, + "Gloss": { + "en": "prayer", + "pt": "orac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "029dfc24-e810-436c-8e41-0b9594e2aa97", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a4b55442-7b5f-4da4-8df5-f41a07a7a07a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "444d0b18-88cc-4d40-bee3-44eb2fcdc937", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027phole-m\u0027phole" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8d2938b5-66df-4628-a5d2-331356818b90", + "Order": 1, + "DeletedAt": null, + "EntryId": "444d0b18-88cc-4d40-bee3-44eb2fcdc937", + "Definition": {}, + "Gloss": { + "en": "slowly", + "pt": "devegar" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f49cf039-9a78-4275-812f-e82a0c6070eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d2938b5-66df-4628-a5d2-331356818b90", + "DeletedAt": null + } + ] + }, + { + "Id": "e4f8f769-2814-4cf2-b98d-b03db5840f52", + "Order": 2, + "DeletedAt": null, + "EntryId": "444d0b18-88cc-4d40-bee3-44eb2fcdc937", + "Definition": {}, + "Gloss": { + "en": "with care", + "pt": "cautela" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "932a69bd-4e22-40a2-9a88-6d27e1feb482", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027phy" + }, + "CitationForm": { + "seh": "m\u0027phya" + }, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "8af45d7c-067b-4bac-9eb4-0c0e6bd35c9c", + "Order": 1, + "DeletedAt": null, + "EntryId": "932a69bd-4e22-40a2-9a88-6d27e1feb482", + "Definition": {}, + "Gloss": { + "en": "is of", + "pt": "e\u0301 de" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8be4b8a-546b-4fb9-8d82-62c03124f41c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8af45d7c-067b-4bac-9eb4-0c0e6bd35c9c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4242ac27-b0bf-4d39-86ce-0efb655ead4a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ma" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "e9fc5fdd-7261-4dd9-81ee-dad6106b5bcc", + "Order": 1, + "DeletedAt": null, + "EntryId": "4242ac27-b0bf-4d39-86ce-0efb655ead4a", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bea76ea6-9cd6-491a-9158-47a29ba95ffe", + "DeletedAt": null, + "LexemeForm": { + "seh": "ma" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1871ee3d-67a2-4ccc-adbd-413b2535f0fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "bea76ea6-9cd6-491a-9158-47a29ba95ffe", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c76ff5f1-2b47-4670-9c26-f986bf6a5dc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "amacadu" + }, + "CitationForm": { + "seh": "macadu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "89e08ce0-76fe-4600-909c-a6ef6ddc369f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c76ff5f1-2b47-4670-9c26-f986bf6a5dc1", + "Definition": {}, + "Gloss": { + "en": "axe", + "pt": "machado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ddbb6bd6-4269-438f-8e81-7c0f1322e3b3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "89e08ce0-76fe-4600-909c-a6ef6ddc369f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "013dd3e2-358f-4c3d-9274-330b93626e7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "cibese" + }, + "CitationForm": { + "seh": "macibese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7be81c0e-c674-4ffc-8c2e-e74e5f87a429", + "Order": 1, + "DeletedAt": null, + "EntryId": "013dd3e2-358f-4c3d-9274-330b93626e7f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "starting at around 4am until masikati", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "morning", + "pt": "manha\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4889a68-6b75-418f-a903-c5c580f5ddc7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13,19", + "Ws": "en" + } + ] + }, + "SenseId": "7be81c0e-c674-4ffc-8c2e-e74e5f87a429", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3dc760ba-5910-4979-9b9b-32e6a3245831", + "DeletedAt": null, + "LexemeForm": { + "seh": "citiro" + }, + "CitationForm": { + "seh": "macitiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f2bfb53-00f2-4797-9b6b-e516e0ce179f", + "Order": 1, + "DeletedAt": null, + "EntryId": "3dc760ba-5910-4979-9b9b-32e6a3245831", + "Definition": { + "en": { + "Spans": [ + { + "Text": "habits, manner of acting", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "maneira de actos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "habits", + "pt": "ha\u0301bitos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b55dffb-d386-437b-8fa3-9f3b1b4281d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1f2bfb53-00f2-4797-9b6b-e516e0ce179f", + "DeletedAt": null + } + ] + }, + { + "Id": "52d378cc-8bee-46e9-be52-68d791d04080", + "Order": 2, + "DeletedAt": null, + "EntryId": "3dc760ba-5910-4979-9b9b-32e6a3245831", + "Definition": {}, + "Gloss": { + "en": "what you do" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ec4d122-342c-4eec-bc85-52e0133b3e2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunguzo" + }, + "CitationForm": { + "seh": "macunguzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3fbf73de-bc50-4b0e-a81d-4d4a7274fe31", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ec4d122-342c-4eec-bc85-52e0133b3e2d", + "Definition": {}, + "Gloss": { + "en": "marriage", + "pt": "casamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45999096-e8b6-4dfc-8914-0f58b3fb7942", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3fbf73de-bc50-4b0e-a81d-4d4a7274fe31", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "64b8230d-3a23-424f-8e4d-dcd8e21644e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "dyaundu" + }, + "CitationForm": { + "seh": "madyaundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5e8265a3-3165-4af9-a937-69e5f2a6139a", + "Order": 1, + "DeletedAt": null, + "EntryId": "64b8230d-3a23-424f-8e4d-dcd8e21644e2", + "Definition": {}, + "Gloss": { + "en": "gourd plant", + "pt": "cabac\u0327eira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "89512d58-0851-4c01-a0c7-7718fb1da3a8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Carlotta", + "Ws": "en" + } + ] + }, + "SenseId": "5e8265a3-3165-4af9-a937-69e5f2a6139a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c4f4316e-eef4-438a-8e26-4a5e88c21043", + "DeletedAt": null, + "LexemeForm": { + "seh": "madyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "efc09d29-c9cd-465c-90dd-e7b1573aa8c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "c4f4316e-eef4-438a-8e26-4a5e88c21043", + "Definition": {}, + "Gloss": { + "en": "right side", + "pt": "direito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "908fc4c2-ca59-4c2b-bdc6-68e61ecf9058", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "efc09d29-c9cd-465c-90dd-e7b1573aa8c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "966fb39e-6c2b-434e-b156-ea2797510c13", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": { + "seh": "madzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e15307e9-af9b-4c96-b500-7da6cae75fc3", + "Order": 1, + "DeletedAt": null, + "EntryId": "966fb39e-6c2b-434e-b156-ea2797510c13", + "Definition": {}, + "Gloss": { + "en": "water", + "pt": "a\u0301gua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "60364974-a005-4567-82e9-7aaeff894ab0", + "Name": { + "en": "Water" + }, + "Code": "1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7b23e2b5-0913-4110-987f-f49a6acd672d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e15307e9-af9b-4c96-b500-7da6cae75fc3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fd18421-b43a-4f15-b59e-258e4aded3e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "mai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c6142fea-e652-40b7-b102-80fa25f41171", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fd18421-b43a-4f15-b59e-258e4aded3e5", + "Definition": {}, + "Gloss": { + "en": "mother", + "pt": "ma\u0303e" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efbb0fd2-f6be-4d34-acd4-a5deb7edc2b4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook", + "Ws": "en" + } + ] + }, + "SenseId": "c6142fea-e652-40b7-b102-80fa25f41171", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c264498-be24-45ff-8e89-74bee6d331a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "makamaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "db1b84b1-735e-4654-b942-bf0785e5c957", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c264498-be24-45ff-8e89-74bee6d331a7", + "Definition": {}, + "Gloss": { + "en": "more than that", + "pt": "sobretudo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23171277-7731-4c1a-85aa-dd1e18151779", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisakufunani bwenye makamaka babano", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Gosto (com respeito) sobretudo seu pai.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "db1b84b1-735e-4654-b942-bf0785e5c957", + "DeletedAt": null + }, + { + "Id": "959aff94-7218-483a-8d80-62cf3359852b", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisamwa kafe bwenye makamaka kokakola.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Bebo mais Coca Cola do que cafe.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "db1b84b1-735e-4654-b942-bf0785e5c957", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c92125f-2581-40b7-a285-f631c69067ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaliro" + }, + "CitationForm": { + "seh": "makhaliro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb463714-a764-41a6-930d-72042a2d09ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": { + "en": { + "Spans": [ + { + "Text": "behaviour", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "comportamento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "behaviour", + "pt": "comportamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "425b3984-e46d-4ec4-855a-ce912dfc47d7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ana acincino makhaliro awo mbanawa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Crianc\u0327as de agora (hoje\u0301) comportamento deles e\u0301 este.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "fb463714-a764-41a6-930d-72042a2d09ec", + "DeletedAt": null + } + ] + }, + { + "Id": "75e9c0e7-e53d-45b6-84cc-09eb21401f99", + "Order": 2, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": {}, + "Gloss": { + "en": "culture", + "pt": "cultura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b37cebbd-6125-438b-aebd-e65174d9f464", + "Order": 3, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": {}, + "Gloss": { + "en": "entity", + "pt": "entidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e3873582-d497-4056-8de1-fc93329a7edf", + "Order": 4, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": {}, + "Gloss": { + "en": "essense", + "pt": "essencia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09765816-82fe-4e50-b90a-8fc0608806c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "konzero" + }, + "CitationForm": { + "seh": "makonzero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ec144453-8e8a-45cc-b506-495ca91ba00f", + "Order": 1, + "DeletedAt": null, + "EntryId": "09765816-82fe-4e50-b90a-8fc0608806c6", + "Definition": {}, + "Gloss": { + "en": "way of curing", + "pt": "maneira de curar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a60dd263-3e07-4470-b48a-e9c47ef0dc40", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Makonzero ace mbakuipa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "A maneira que ele esta\u0301 a curar (tratar doentes) e\u0301 mal.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "ec144453-8e8a-45cc-b506-495ca91ba00f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d2d8a29-b6f3-4c51-bead-b6f657b8894e", + "DeletedAt": null, + "LexemeForm": { + "seh": "makote" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4e518d15-c861-4f3b-bd03-c757d9598bf8", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d2d8a29-b6f3-4c51-bead-b6f657b8894e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "communal.harvesting work", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "trabalho.colectivo de colheita", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "harvest", + "pt": "colheita" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0e9f77a9-ae38-43ab-986c-b72debddc315", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4e518d15-c861-4f3b-bd03-c757d9598bf8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "634c2bfe-ad43-4215-a521-cc41414055d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuliro" + }, + "CitationForm": { + "seh": "makuliro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8910df53-b949-4206-9f66-bf799a42c9cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "634c2bfe-ad43-4215-a521-cc41414055d2", + "Definition": {}, + "Gloss": { + "en": "growing", + "pt": "crecimento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1b2f7c4-8bca-4982-a2a9-326b15ee4f50", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8910df53-b949-4206-9f66-bf799a42c9cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e4bae19-8715-4eb9-9e34-2d5e84e88987", + "DeletedAt": null, + "LexemeForm": { + "seh": "makumanai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "11782e46-c080-4795-843b-96fb819cba28", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e4bae19-8715-4eb9-9e34-2d5e84e88987", + "Definition": {}, + "Gloss": { + "en": "forty", + "pt": "quarenta" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "97c6d521-4b8d-4509-8cb6-d68504b637ea", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "11782e46-c080-4795-843b-96fb819cba28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "010b10bf-b36b-472c-8048-0bb3349e7b5c", + "DeletedAt": null, + "LexemeForm": { + "seh": "makuantanthatu" + }, + "CitationForm": { + "seh": "makumatanthatu" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "601deede-c9d4-4d77-aa8e-a2e9ac75d53f", + "Order": 1, + "DeletedAt": null, + "EntryId": "010b10bf-b36b-472c-8048-0bb3349e7b5c", + "Definition": {}, + "Gloss": { + "en": "sixty", + "pt": "sessenta" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4eb00bbe-4479-481b-8c91-00430f32e780", + "DeletedAt": null, + "LexemeForm": { + "seh": "makumatatu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "edbb9351-ca4a-4b12-a70b-50de1c298db4", + "Order": 1, + "DeletedAt": null, + "EntryId": "4eb00bbe-4479-481b-8c91-00430f32e780", + "Definition": {}, + "Gloss": { + "en": "thirty", + "pt": "trinte" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a7e47662-39d5-4558-868f-ac871b1f1ff9", + "DeletedAt": null, + "LexemeForm": { + "seh": "makumawiri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "319b5368-715d-4ff1-a6f5-01de219b6be7", + "Order": 1, + "DeletedAt": null, + "EntryId": "a7e47662-39d5-4558-868f-ac871b1f1ff9", + "Definition": {}, + "Gloss": { + "en": "twenty", + "pt": "vinte" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aa6e0ba9-2956-42db-bf37-5c06fa2ceff1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "319b5368-715d-4ff1-a6f5-01de219b6be7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4772d058-ec6e-45fe-bc61-33e6761aa7bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "mal" + }, + "CitationForm": { + "seh": "mala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38b1819b-80b8-4894-992e-80f3da0b48a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "4772d058-ec6e-45fe-bc61-33e6761aa7bc", + "Definition": {}, + "Gloss": { + "en": "finish", + "pt": "acabar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "83a5643e-2e8f-414f-9f77-8f4cd68d132b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndamala kudya.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Acabei comer.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "38b1819b-80b8-4894-992e-80f3da0b48a9", + "DeletedAt": null + }, + { + "Id": "b2d48890-aac6-4c42-911f-626981e117a3", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndingamala kusamba ndinadya.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Quando acabar banhar vou comer.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "38b1819b-80b8-4894-992e-80f3da0b48a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e11ff2a9-ff7c-496d-b848-aabd77d9bca9", + "DeletedAt": null, + "LexemeForm": { + "seh": "landalupya" + }, + "CitationForm": { + "seh": "malandalupya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0388212f-ad6d-42ce-a72f-4441945f5547", + "Order": 1, + "DeletedAt": null, + "EntryId": "e11ff2a9-ff7c-496d-b848-aabd77d9bca9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "summer, time to burn", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "summer", + "pt": "vera\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "72799068-7cc5-45f9-87c0-c67e839a08e8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0388212f-ad6d-42ce-a72f-4441945f5547", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6900dedb-2f3c-41f3-9c67-9f92b6ac8b18", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemba" + }, + "CitationForm": { + "seh": "malemba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d53a476-c543-4f58-bc95-92ac73bcee5a", + "Order": 1, + "DeletedAt": null, + "EntryId": "6900dedb-2f3c-41f3-9c67-9f92b6ac8b18", + "Definition": {}, + "Gloss": { + "en": "writings", + "pt": "escritura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5ea40a0-c4ff-417d-9f51-230283583916", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1d53a476-c543-4f58-bc95-92ac73bcee5a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bb8b588-0d50-4c6e-854f-9c894597aed1", + "DeletedAt": null, + "LexemeForm": { + "seh": "malikofa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d7ff011f-0022-4533-902b-56e93efdab6a", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bb8b588-0d50-4c6e-854f-9c894597aed1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "basket for traveling", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cesta de viagem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "basket", + "pt": "cesta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "459ec1c8-c9b5-4a8e-824a-77d95e659cd8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d7ff011f-0022-4533-902b-56e93efdab6a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad10ba32-bcc7-43cd-a41a-1d41b2c67251", + "DeletedAt": null, + "LexemeForm": { + "seh": "malis" + }, + "CitationForm": { + "seh": "malisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad10ba32-bcc7-43cd-a41a-1d41b2c67251", + "Definition": {}, + "Gloss": { + "en": "cause to finish", + "pt": "causar acabar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61738de2-6553-4a34-9adf-1cfb3144e83a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndiri kumalisa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "faulta pouco para acabar", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", + "DeletedAt": null + }, + { + "Id": "601f347c-3396-475d-93f8-092d71f1c603", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9ed4cbe-d4b6-42cb-891b-0f4ae76dda09", + "DeletedAt": null, + "LexemeForm": { + "seh": "londa" + }, + "CitationForm": { + "seh": "malonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e67054cc-f854-4ea7-b572-aade7b6ad1cf", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9ed4cbe-d4b6-42cb-891b-0f4ae76dda09", + "Definition": {}, + "Gloss": { + "en": "trade", + "pt": "nego\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e4c53c2-cffc-4a2b-8348-9c9638bac0e7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e67054cc-f854-4ea7-b572-aade7b6ad1cf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "DeletedAt": null, + "LexemeForm": { + "seh": "longero" + }, + "CitationForm": { + "seh": "malongero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "10f0881e-85ec-4486-ac2f-e6ea88516505", + "Order": 1, + "DeletedAt": null, + "EntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the customary way that a certain person talks", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "way of speaking", + "pt": "forma de falar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "399572af-4914-4f6b-b91c-203776a04319", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Malongero a Antonio nkhabe kubveka.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "O forma de falar de Antonio na\u0303o se entende.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "10f0881e-85ec-4486-ac2f-e6ea88516505", + "DeletedAt": null + } + ] + }, + { + "Id": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", + "Order": 2, + "DeletedAt": null, + "EntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "Definition": {}, + "Gloss": { + "en": "a language", + "pt": "uma li\u0301nuga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "577e88b2-19d0-49c3-a753-99fb0be9b576", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "malongero a cigerego", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "language of Greek", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "li\u0301nuga de grego", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "bcfccc21-fb44-4916-bc17-7e2ddb79321e", + "MaybeId": "bcfccc21-fb44-4916-bc17-7e2ddb79321e", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "ComplexFormHeadword": "malongero", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfcc9c5b-2dda-4ab6-8eea-36c9c3f2031b", + "DeletedAt": null, + "LexemeForm": { + "seh": "mama" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b6779c26-0a60-4de2-b6f2-110d923d6882", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfcc9c5b-2dda-4ab6-8eea-36c9c3f2031b", + "Definition": {}, + "Gloss": { + "en": "mother", + "pt": "ma\u0303e" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "56c12184-6508-4ef1-9435-9b20d41a0d04", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1,33", + "Ws": "en" + } + ] + }, + "SenseId": "b6779c26-0a60-4de2-b6f2-110d923d6882", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "212bba96-db9e-4b3a-9158-81376ca0fcba", + "DeletedAt": null, + "LexemeForm": { + "seh": "mazimambo" + }, + "CitationForm": { + "seh": "mambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a6beb173-ee69-45f7-ad58-2834e81cc4f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "212bba96-db9e-4b3a-9158-81376ca0fcba", + "Definition": {}, + "Gloss": { + "en": "king", + "pt": "rei" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "35632d6f-f6a8-4bae-82cf-a6f065a0baba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19 diz pr= \u0022dias\u0022 gr= 6", + "Ws": "en" + } + ] + }, + "SenseId": "a6beb173-ee69-45f7-ad58-2834e81cc4f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbwera" + }, + "CitationForm": { + "seh": "mambwera-mbwera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e3433c1a-13bb-4aa1-ade7-cc7f2ac780c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "Definition": {}, + "Gloss": { + "en": "left-overs", + "pt": "migalhes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b98f75a3-8ee9-4b38-ba71-0b5ab312e3eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e3433c1a-13bb-4aa1-ade7-cc7f2ac780c2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "6ec14ead-90b4-4018-8641-d792e42235c4", + "MaybeId": "6ec14ead-90b4-4018-8641-d792e42235c4", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "ComplexFormHeadword": "mambwera-mbwera", + "ComponentEntryId": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "ComponentSenseId": null, + "ComponentHeadword": "bwera" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "70627ebf-b344-4412-be65-c36fdb8190cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "mamphasa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4f53bb12-ebc7-4893-af3f-efc435cb6333", + "Order": 1, + "DeletedAt": null, + "EntryId": "70627ebf-b344-4412-be65-c36fdb8190cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "multiple birth, twins or triplets or more", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "twins", + "pt": "ge\u0302meos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9b6be8d-dceb-44d9-a231-29a85e6d049e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4f53bb12-ebc7-4893-af3f-efc435cb6333", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "54f91027-d1bf-4a84-b47f-ecbe1e1096d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": { + "seh": "mamuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84a2be95-35ad-49a6-8366-4f77b22b7737", + "Order": 1, + "DeletedAt": null, + "EntryId": "54f91027-d1bf-4a84-b47f-ecbe1e1096d3", + "Definition": {}, + "Gloss": { + "en": "male", + "pt": "masculino" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ee7fb5d-1703-4a4a-b236-c2e2df102106", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ngombe imuna", + "Ws": "en" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "male ox", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "boi masculino", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "84a2be95-35ad-49a6-8366-4f77b22b7737", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c86b8756-aae2-452a-a4e3-677aae25f4ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": { + "seh": "mamuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f772d5cf-e5e9-4a1b-a3a1-ddbe27ae2f14", + "Order": 1, + "DeletedAt": null, + "EntryId": "c86b8756-aae2-452a-a4e3-677aae25f4ac", + "Definition": {}, + "Gloss": { + "en": "man", + "pt": "homen" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0698e2b7-9769-4956-95f0-c8f46479d632", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira 26", + "Ws": "en" + } + ] + }, + "SenseId": "f772d5cf-e5e9-4a1b-a3a1-ddbe27ae2f14", + "DeletedAt": null + } + ] + }, + { + "Id": "60b0f55b-d605-4ca1-a1cd-c8e82a49707e", + "Order": 2, + "DeletedAt": null, + "EntryId": "c86b8756-aae2-452a-a4e3-677aae25f4ac", + "Definition": {}, + "Gloss": { + "en": "husband", + "pt": "marido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "565d4dc8-d32e-4753-b21c-069e1f5fc77c", + "DeletedAt": null, + "LexemeForm": { + "seh": "man" + }, + "CitationForm": { + "seh": "mana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "89ce983e-4216-43b0-8096-a826d80c20e7", + "Order": 1, + "DeletedAt": null, + "EntryId": "565d4dc8-d32e-4753-b21c-069e1f5fc77c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "refuse to share for love of food", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "glutonous", + "pt": "golozise" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2d189163-1b80-4d46-a7d6-e4e18f77fca5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "89ce983e-4216-43b0-8096-a826d80c20e7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "435ef209-5021-4ded-8bae-731d9e9899a6", + "DeletedAt": null, + "LexemeForm": { + "seh": "mang" + }, + "CitationForm": { + "seh": "manga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f32c1cb-884c-49ef-b610-9179b3454c30", + "Order": 1, + "DeletedAt": null, + "EntryId": "435ef209-5021-4ded-8bae-731d9e9899a6", + "Definition": {}, + "Gloss": { + "en": "tie up", + "pt": "amarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9ba9f0a1-205a-4dda-ba1f-a3f25618e2b9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akhazimanga", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "amarrava-a", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Meque-Mark1", + "Ws": "en" + } + ] + }, + "SenseId": "1f32c1cb-884c-49ef-b610-9179b3454c30", + "DeletedAt": null + }, + { + "Id": "94f9c2dd-00ed-44f1-a26f-8b448d1db2e9", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "tamanga nyumba", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "1f32c1cb-884c-49ef-b610-9179b3454c30", + "DeletedAt": null + } + ] + }, + { + "Id": "ee07fe98-80ff-4cc7-a2ec-e27deeb7df23", + "Order": 2, + "DeletedAt": null, + "EntryId": "435ef209-5021-4ded-8bae-731d9e9899a6", + "Definition": {}, + "Gloss": { + "en": "construct", + "pt": "construir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "574fbf69-453e-4b6f-97fa-3ee71cc2c84e", + "DeletedAt": null, + "LexemeForm": { + "seh": "manga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5547e1b1-0d57-43db-be6f-bc636f8ffa7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "574fbf69-453e-4b6f-97fa-3ee71cc2c84e", + "Definition": {}, + "Gloss": { + "en": "mango tree", + "pt": "mangeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl: mimanga sg: ??", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93a33c0a-5d65-44d6-8bb3-48fee1d1403a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mangawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1eecd5c-342e-4d45-9ae0-f7351d18ed55", + "Order": 1, + "DeletedAt": null, + "EntryId": "93a33c0a-5d65-44d6-8bb3-48fee1d1403a", + "Definition": {}, + "Gloss": { + "en": "debt", + "pt": "di\u0301vida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "53edf717-6c24-439f-8e74-7096e49adda3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c1eecd5c-342e-4d45-9ae0-f7351d18ed55", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49660c60-d3ed-4355-af61-68a46c12e8a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "mangwana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fcd8d925-5562-419a-a0f7-729609a2a7fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "49660c60-d3ed-4355-af61-68a46c12e8a8", + "Definition": {}, + "Gloss": { + "en": "tomorrow", + "pt": "amanha\u0303" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "698c2eb4-0e99-4618-9cbf-db6be6f4e880", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "fcd8d925-5562-419a-a0f7-729609a2a7fe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7c14bb4-0027-4609-a1c9-e3d83fb3e95e", + "DeletedAt": null, + "LexemeForm": { + "seh": "maningi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b20a8b8c-6dbe-404b-9e5f-5a1803329125", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7c14bb4-0027-4609-a1c9-e3d83fb3e95e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "much, many", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "much", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b6ee938-5d76-4a54-9840-49e9d135194e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "b20a8b8c-6dbe-404b-9e5f-5a1803329125", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1e5c886-ad06-444e-89dc-a4ead0a8fc5c", + "DeletedAt": null, + "LexemeForm": { + "seh": "mankhadzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5d316f71-9f38-4273-9963-c04cc1446167", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1e5c886-ad06-444e-89dc-a4ead0a8fc5c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "boy friend, lover, fiance\u0301", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "fiance\u0301", + "pt": "noivo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "89a23ecf-a007-47a8-a396-a740294db0af", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5d316f71-9f38-4273-9963-c04cc1446167", + "DeletedAt": null + }, + { + "Id": "af0f7294-27b0-48be-a269-0e2e5f0bdca6", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5d316f71-9f38-4273-9963-c04cc1446167", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa08457d-e296-4aab-a6e1-71e00fd6bce5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nungo" + }, + "CitationForm": { + "seh": "manungo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1063b7d7-a239-46cc-b345-96631b31fede", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa08457d-e296-4aab-a6e1-71e00fd6bce5", + "Definition": {}, + "Gloss": { + "en": "body", + "pt": "corpo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "137a6133-05bc-423f-b02e-cc3c78efdae6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "1063b7d7-a239-46cc-b345-96631b31fede", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f16c050e-dd7e-48e5-a7be-95d4ad1efd2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "manyazo" + }, + "CitationForm": { + "seh": "manyadzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "34976250-13b2-4ddf-b6da-d9737e7365ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "f16c050e-dd7e-48e5-a7be-95d4ad1efd2b", + "Definition": {}, + "Gloss": { + "en": "shame", + "pt": "vergonha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26652b7e-6659-4510-9b10-b2bcebc19dc4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "34976250-13b2-4ddf-b6da-d9737e7365ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7c8a122-c047-493f-825e-a711aef36899", + "DeletedAt": null, + "LexemeForm": { + "seh": "manyedzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "43c943ac-02b2-438d-9c5c-0c8dc5f5495d", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7c8a122-c047-493f-825e-a711aef36899", + "Definition": {}, + "Gloss": { + "en": "table scraps", + "pt": "migalha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f97439fc-d851-46fc-a760-699d81a2c2cb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "43c943ac-02b2-438d-9c5c-0c8dc5f5495d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32f6ecd0-d22b-45cc-bbec-5ce9c1ce9fb1", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyengerero" + }, + "CitationForm": { + "seh": "manyengerero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "85e6f588-f11b-4c33-a357-397479f3d9ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "32f6ecd0-d22b-45cc-bbec-5ce9c1ce9fb1", + "Definition": {}, + "Gloss": { + "en": "temptations", + "pt": "tetac\u0327o\u0303es" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88d941f8-0938-4205-8f85-6e22f00b8087", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "85e6f588-f11b-4c33-a357-397479f3d9ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1d88a23a-d209-42d8-be45-1d59d1b00f88", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyerezero" + }, + "CitationForm": { + "seh": "manyerezero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f2cdf68d-32bc-4d0d-9adf-050026c3c84b", + "Order": 1, + "DeletedAt": null, + "EntryId": "1d88a23a-d209-42d8-be45-1d59d1b00f88", + "Definition": {}, + "Gloss": { + "en": "thoughts", + "pt": "pensamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "63a6f605-644d-40aa-878f-02f5c361f8ab", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f2cdf68d-32bc-4d0d-9adf-050026c3c84b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e1b75d0-95ae-4116-bb6c-08f0be2d9ae6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyezo" + }, + "CitationForm": { + "seh": "manyezo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bf91ed99-0560-4fb0-b3ef-4b6bc1888b80", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e1b75d0-95ae-4116-bb6c-08f0be2d9ae6", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "migalhas pequenos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "crumbs", + "pt": "migalhas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ad85665-de48-4c30-a9c1-bb931d2ebe3e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "bf91ed99-0560-4fb0-b3ef-4b6bc1888b80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "DeletedAt": null, + "LexemeForm": { + "seh": "pika" + }, + "CitationForm": { + "seh": "mapika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c04a03f5-5139-4ee7-b9c7-c49ae92c8e2f", + "Order": 1, + "DeletedAt": null, + "EntryId": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "Definition": {}, + "Gloss": { + "en": "race", + "pt": "corrida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eab2939b-1861-492e-ba14-7ce36361b256", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:16", + "Ws": "en" + } + ] + }, + "SenseId": "c04a03f5-5139-4ee7-b9c7-c49ae92c8e2f", + "DeletedAt": null + } + ] + }, + { + "Id": "0822131f-95c9-4c5b-b28a-f7203db30f55", + "Order": 2, + "DeletedAt": null, + "EntryId": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "Definition": {}, + "Gloss": { + "en": "bet", + "pt": "aposta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e9000da3-e344-44b0-824d-b9977e535d49", + "Order": 3, + "DeletedAt": null, + "EntryId": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "Definition": {}, + "Gloss": { + "en": "challenge", + "pt": "disafio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d9f4ade-c774-456a-8500-2532ae6f8c7a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mapita" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f531ecf-0f20-44fa-a102-1d2f124709e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d9f4ade-c774-456a-8500-2532ae6f8c7a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "competition in general", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "competition", + "pt": "competic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a6344df-c062-457b-95e5-9b5d97bb44d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0f531ecf-0f20-44fa-a102-1d2f124709e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3e8d5d25-2d5d-40a8-9f38-603a4cc55b77", + "DeletedAt": null, + "LexemeForm": { + "seh": "marambe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "06bc691e-5a54-4a35-ab95-849b45b7721a", + "Order": 1, + "DeletedAt": null, + "EntryId": "3e8d5d25-2d5d-40a8-9f38-603a4cc55b77", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild cat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "wild cat", + "pt": "gato bravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2c895875-6eaa-47bd-a5cb-4b2df046b2c7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "06bc691e-5a54-4a35-ab95-849b45b7721a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "365a86f9-cdbf-4229-9bd4-43edd2c960ad", + "DeletedAt": null, + "LexemeForm": { + "seh": "sali" + }, + "CitationForm": { + "seh": "masali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "48999a41-330e-4325-8fc2-fc6f660b057e", + "Order": 1, + "DeletedAt": null, + "EntryId": "365a86f9-cdbf-4229-9bd4-43edd2c960ad", + "Definition": { + "en": { + "Spans": [ + { + "Text": "place of a new.house", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "lugar novo de residencia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "new house", + "pt": "casa nova" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4299e25-c472-4e22-a93a-f1d8c05a197d", + "DeletedAt": null, + "LexemeForm": { + "seh": "masedze" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0daee1c3-bf0a-4a64-8d6a-705ab4ab5c14", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4299e25-c472-4e22-a93a-f1d8c05a197d", + "Definition": {}, + "Gloss": { + "en": "even though", + "pt": "embora" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23b7a7a7-4595-4adb-ad08-82a69b208eba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0daee1c3-bf0a-4a64-8d6a-705ab4ab5c14", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ff0c084-5f25-4630-8fe2-549171d77c70", + "DeletedAt": null, + "LexemeForm": { + "seh": "masese" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d70e028c-2bf8-4dcc-aa25-54f372ec9dd4", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ff0c084-5f25-4630-8fe2-549171d77c70", + "Definition": {}, + "Gloss": { + "en": "even though", + "pt": "embora" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "19739104-8bf8-4c51-b572-e16512650784", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d70e028c-2bf8-4dcc-aa25-54f372ec9dd4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba8417fa-101a-4ec9-99a3-cf2b4fd8ff63", + "DeletedAt": null, + "LexemeForm": { + "seh": "sikati" + }, + "CitationForm": { + "seh": "masikati" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f96c1723-a60f-42db-83da-de68fff7b641", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba8417fa-101a-4ec9-99a3-cf2b4fd8ff63", + "Definition": { + "en": { + "Spans": [ + { + "Text": "heat of the day, 11 to 15 hours", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "parte de dia colorosa, de 11 a 15 horas", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "afternoon", + "pt": "tarde" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "313df45a-140b-4d31-b01d-f5b590f64e4d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "f96c1723-a60f-42db-83da-de68fff7b641", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "897a6c8c-a72e-4155-b8c2-baa516a20971", + "DeletedAt": null, + "LexemeForm": { + "seh": "siku" + }, + "CitationForm": { + "seh": "masiku" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "11d1070b-3b98-4b55-9242-02b6674d2a78", + "Order": 1, + "DeletedAt": null, + "EntryId": "897a6c8c-a72e-4155-b8c2-baa516a20971", + "Definition": { + "en": { + "Spans": [ + { + "Text": "when the sunlight is completely gone until macibesi", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "evening", + "pt": "noite" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "823f3a8f-8205-43b7-9776-dc8f4d3c8904", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "11d1070b-3b98-4b55-9242-02b6674d2a78", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0a53f674-07dd-410d-b3f2-e98bf7dd34eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "masiye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a46c1374-9f24-47bb-8a61-db6f0e7fc85e", + "Order": 1, + "DeletedAt": null, + "EntryId": "0a53f674-07dd-410d-b3f2-e98bf7dd34eb", + "Definition": {}, + "Gloss": { + "en": "cemetery", + "pt": "cemite\u0301rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7703d1c3-a882-4ac4-8987-c3725b7aeb96", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a46c1374-9f24-47bb-8a61-db6f0e7fc85e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad5ea011-1c39-4b15-94c8-327d17851753", + "DeletedAt": null, + "LexemeForm": { + "seh": "mata" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae58f54b-7f05-4d1d-a022-02ebc5405989", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad5ea011-1c39-4b15-94c8-327d17851753", + "Definition": {}, + "Gloss": { + "en": "saliva", + "pt": "saliva" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "75825d72-695b-4e92-9f33-0f3ab4d7dd11", + "Name": { + "en": "Spit, saliva" + }, + "Code": "2.2.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f32a3656-c7a6-48c8-b224-1ad307408ae5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ae58f54b-7f05-4d1d-a022-02ebc5405989", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3fbb96dc-3ca5-4450-b343-ae5dbaef8056", + "DeletedAt": null, + "LexemeForm": { + "seh": "taka" + }, + "CitationForm": { + "seh": "mataka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "486fcf0c-de3f-4a30-bf62-dd75b7e096d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "3fbb96dc-3ca5-4450-b343-ae5dbaef8056", + "Definition": {}, + "Gloss": { + "en": "dirt", + "pt": "solo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e27c6260-4150-43d4-97c3-ca25b596401d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "486fcf0c-de3f-4a30-bf62-dd75b7e096d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ff6ecc5-7b66-48a7-abe1-4d4f9cc9d552", + "DeletedAt": null, + "LexemeForm": { + "seh": "matal" + }, + "CitationForm": { + "seh": "matala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c9990577-4e77-4b4f-aed5-3ecbbf15a1f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ff6ecc5-7b66-48a7-abe1-4d4f9cc9d552", + "Definition": {}, + "Gloss": { + "en": "be silent", + "pt": "ficar silencioso" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6130a4a3-5f31-49db-83e2-63547364fbc5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "c9990577-4e77-4b4f-aed5-3ecbbf15a1f6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a6a4c40-3dae-41a3-b5bc-e427865854e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "matam" + }, + "CitationForm": { + "seh": "matama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97315f66-6358-4771-96f7-4ee76436ff8f", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a6a4c40-3dae-41a3-b5bc-e427865854e2", + "Definition": {}, + "Gloss": { + "en": "be quiet", + "pt": "calar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9c9b762d-56e4-42b0-8728-e38e962c2dcb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "97315f66-6358-4771-96f7-4ee76436ff8f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5212fc0d-9cdc-4f9d-9425-b27213f369a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "matamis" + }, + "CitationForm": { + "seh": "matamisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a8fd0ff5-f64b-4419-9154-1be2e583c29c", + "Order": 1, + "DeletedAt": null, + "EntryId": "5212fc0d-9cdc-4f9d-9425-b27213f369a5", + "Definition": {}, + "Gloss": { + "en": "quiet", + "pt": "fazer calar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "02d37a73-f8d0-4e61-8dd8-fd10537020a8", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Tendeni kamatamisa mamferwa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Vamos conselhar (familia em) lutado.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "a8fd0ff5-f64b-4419-9154-1be2e583c29c", + "DeletedAt": null + } + ] + }, + { + "Id": "322b1569-3d3c-486d-91ad-615a6a43cd52", + "Order": 2, + "DeletedAt": null, + "EntryId": "5212fc0d-9cdc-4f9d-9425-b27213f369a5", + "Definition": {}, + "Gloss": { + "en": "console", + "pt": "consolar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fccfb5e7-3c78-460c-9915-b71322b48203", + "DeletedAt": null, + "LexemeForm": { + "seh": "matongero" + }, + "CitationForm": { + "seh": "matongero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35278c37-466e-4194-9da0-faae2cd7908d", + "Order": 1, + "DeletedAt": null, + "EntryId": "fccfb5e7-3c78-460c-9915-b71322b48203", + "Definition": { + "en": { + "Spans": [ + { + "Text": "law, ten commandments", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "law mandamentos de Deus", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "law", + "pt": "law" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "da777558-6be4-46b0-a174-0c09b842c524", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "35278c37-466e-4194-9da0-faae2cd7908d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1b62650a-3b7e-427f-a66c-869186cfa288", + "DeletedAt": null, + "LexemeForm": { + "seh": "tope" + }, + "CitationForm": { + "seh": "matope" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ec8fb8f1-c0bd-4c7b-a67c-2e48a1bb044b", + "Order": 1, + "DeletedAt": null, + "EntryId": "1b62650a-3b7e-427f-a66c-869186cfa288", + "Definition": {}, + "Gloss": { + "en": "river mud", + "pt": "lodo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "180a2220-942c-4e17-96ee-cd4f63a4c715", + "Name": { + "en": "Soil, dirt" + }, + "Code": "1.2.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fa1c51b8-4171-414a-b37a-d1a062055604", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "ec8fb8f1-c0bd-4c7b-a67c-2e48a1bb044b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d26e8d4d-cce6-4635-a35e-2be0db65c729", + "DeletedAt": null, + "LexemeForm": { + "seh": "ulo" + }, + "CitationForm": { + "seh": "maulo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd98267d-b7b7-465c-a61d-128f0ec3dd27", + "Order": 1, + "DeletedAt": null, + "EntryId": "d26e8d4d-cce6-4635-a35e-2be0db65c729", + "Definition": { + "en": { + "Spans": [ + { + "Text": "afternoon and evening; when the day starts to cool, starts around 15 hours", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tarde e noite cedo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "afternoon", + "pt": "tarde" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "204bdc22-f689-4e29-bb28-c257905a80c5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "dd98267d-b7b7-465c-a61d-128f0ec3dd27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "89b79930-93cb-4af5-be86-bea62f1de26a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5adef85a-9ff2-477b-a967-a5d519664767", + "Order": 1, + "DeletedAt": null, + "EntryId": "89b79930-93cb-4af5-be86-bea62f1de26a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "thematic continuity, -ing", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "continuidade de tema, -ando", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "COHES", + "pt": "COHES" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b50ce1f3-96db-4ed7-bfce-211f882a6c1b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mbauponyera throwing stone, mbumala they ended friendship mbamphata grabing the rabbit,", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "5adef85a-9ff2-477b-a967-a5d519664767", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cb2d50c-7571-4757-80f9-6bb29d9047cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "baala" + }, + "CitationForm": { + "seh": "mbaala" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f38c8ff5-8399-46d0-a608-16aa91fa27af", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cb2d50c-7571-4757-80f9-6bb29d9047cd", + "Definition": {}, + "Gloss": { + "en": "gazell", + "pt": "gazela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3367d955-653e-4e08-b408-7b12c93f9bda", + "DeletedAt": null, + "LexemeForm": { + "seh": "babvu" + }, + "CitationForm": { + "seh": "mbabvu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "889a81df-a63f-4e76-93b9-7873aab77714", + "Order": 1, + "DeletedAt": null, + "EntryId": "3367d955-653e-4e08-b408-7b12c93f9bda", + "Definition": {}, + "Gloss": { + "en": "rib", + "pt": "costela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee33e5b2-72c7-49b2-b0e4-c73febfce1a8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "889a81df-a63f-4e76-93b9-7873aab77714", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ebb2033-aeae-4c84-b34a-7ddfb38f2ef2", + "DeletedAt": null, + "LexemeForm": { + "seh": "badza" + }, + "CitationForm": { + "seh": "mbadza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aebb266e-130f-433e-adce-2399c4f7ffdd", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ebb2033-aeae-4c84-b34a-7ddfb38f2ef2", + "Definition": {}, + "Gloss": { + "en": "snake type", + "pt": "cobra tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0f3f15d0-c1f8-4ccd-a3ec-0d7edd3369cf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "aebb266e-130f-433e-adce-2399c4f7ffdd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6be1c388-3564-4e71-8158-6ff938c4e853", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbadzati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7f26c9ab-e41e-437a-82af-6962ab7a59fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "6be1c388-3564-4e71-8158-6ff938c4e853", + "Definition": {}, + "Gloss": { + "en": "before", + "pt": "antes" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d80b6cec-4339-4ea0-bb68-941feb538f11", + "DeletedAt": null, + "LexemeForm": { + "seh": "badzo" + }, + "CitationForm": { + "seh": "mbadzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "70a1de9b-c5eb-4ca7-a214-1b33f85127f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "d80b6cec-4339-4ea0-bb68-941feb538f11", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hatchet to cut firewood and small trees used by men", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hatchet", + "pt": "machadinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71f6d357-b03a-4a10-a7f9-520577a5ba9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "70a1de9b-c5eb-4ca7-a214-1b33f85127f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "753bd785-b855-4232-9594-8be21ff30ef4", + "DeletedAt": null, + "LexemeForm": { + "seh": "balame" + }, + "CitationForm": { + "seh": "mbalame" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b48232bf-44e2-48f4-9c2a-6a0136d092df", + "Order": 1, + "DeletedAt": null, + "EntryId": "753bd785-b855-4232-9594-8be21ff30ef4", + "Definition": {}, + "Gloss": { + "en": "bird", + "pt": "passaro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "0724682c-71bc-4d53-b323-602d9fbbde47", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b48232bf-44e2-48f4-9c2a-6a0136d092df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "12504ce0-0d4e-499e-8d1a-a796f4da05b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "824ec104-b330-42f6-b353-123cb03998b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "12504ce0-0d4e-499e-8d1a-a796f4da05b7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wood plate", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "prato de pau", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "plate", + "pt": "prato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5902969d-0d6f-4724-8dc5-a3cfa5b8d636", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "824ec104-b330-42f6-b353-123cb03998b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c713678-7a2e-40fc-9fce-d3e8d7011d36", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbani" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4cb5708d-0ba7-46f7-afbe-13d9d987ad91", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c713678-7a2e-40fc-9fce-d3e8d7011d36", + "Definition": {}, + "Gloss": { + "en": "who?", + "pt": "quem?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ea7421cc-2a6c-41de-9611-ef4942470f61", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4cb5708d-0ba7-46f7-afbe-13d9d987ad91", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "052cd426-ab5e-4a74-843f-ae6dce5aa6c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbava" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "55345d98-6fd0-484b-950d-e2fa12b6aec4", + "Order": 1, + "DeletedAt": null, + "EntryId": "052cd426-ab5e-4a74-843f-ae6dce5aa6c0", + "Definition": {}, + "Gloss": { + "en": "thief", + "pt": "ladra\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de17de32-b537-4298-a26d-d2239eaf9f62", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "55345d98-6fd0-484b-950d-e2fa12b6aec4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d341650e-a816-4bb7-9757-7d7952b2cf24", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "305ecbd1-ba98-4ff9-8bad-985b4e1f48ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "d341650e-a816-4bb7-9757-7d7952b2cf24", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sardine, species of small fresh water fish", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "sardinha, um tipo de peixinho de a\u0301gua doce.", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "sardine ", + "pt": "sardinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "207e0d03-66f9-484a-9aae-9a2c9e759ff8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "305ecbd1-ba98-4ff9-8bad-985b4e1f48ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "15b453c1-e980-4d00-849c-3b4f96c8f1be", + "DeletedAt": null, + "LexemeForm": { + "seh": "beu" + }, + "CitationForm": { + "seh": "mbeu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b096a890-d21c-4734-b0ef-2c8ef0de6ea5", + "Order": 1, + "DeletedAt": null, + "EntryId": "15b453c1-e980-4d00-849c-3b4f96c8f1be", + "Definition": {}, + "Gloss": { + "en": "seed", + "pt": "semente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e33932fc-a153-4098-a07a-7556c8251639", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b096a890-d21c-4734-b0ef-2c8ef0de6ea5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ba5fc13-73cc-4aaf-9346-5b407754fcf9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbewa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "605f204e-b617-44b4-9732-995b23d1a14f", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ba5fc13-73cc-4aaf-9346-5b407754fcf9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "any rat or mouse that lives outside", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rat or mouse", + "pt": "rato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4a0b27d-fa44-4c0b-881d-a70ef99b7340", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "605f204e-b617-44b4-9732-995b23d1a14f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05a45110-1b3e-4a61-8af3-15464a3edc46", + "DeletedAt": null, + "LexemeForm": { + "seh": "bidzi" + }, + "CitationForm": { + "seh": "mbidzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87b14641-5673-443e-938a-2700deea5b0a", + "Order": 1, + "DeletedAt": null, + "EntryId": "05a45110-1b3e-4a61-8af3-15464a3edc46", + "Definition": { + "en": { + "Spans": [ + { + "Text": "zebra - Equus burchellii but they recognize all zebra as mbidzi", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "zebra", + "pt": "zebra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "bbd3c3f1-7387-4ec6-a75d-66c1355a94ef", + "Name": { + "en": "Hoofed animals" + }, + "Code": "1.6.1.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "06fb5db3-1693-470f-9e5e-c6f12a014bff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "87b14641-5673-443e-938a-2700deea5b0a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab235a62-1e60-4a68-83a4-838075de7d43", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14af0b49-0487-46f8-ad04-1fc2a860f289", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab235a62-1e60-4a68-83a4-838075de7d43", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hydrax of the Family Procavidae", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "porquito de familia Procavidae", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hydrax", + "pt": "porquito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "66470288-2b6e-461f-a57d-7b32ee502b68", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze (gave pr)", + "Ws": "en" + } + ] + }, + "SenseId": "14af0b49-0487-46f8-ad04-1fc2a860f289", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc4c80d8-6f01-44e8-93df-992b43bc3924", + "DeletedAt": null, + "LexemeForm": { + "seh": "biti" + }, + "CitationForm": { + "seh": "mbiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41724d8b-53b5-4d0e-af28-3c864b0e39b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc4c80d8-6f01-44e8-93df-992b43bc3924", + "Definition": {}, + "Gloss": { + "en": "otter", + "pt": "lontra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d0887f1b-da20-44de-a687-6c388b8fc6b4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "41724d8b-53b5-4d0e-af28-3c864b0e39b1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Enclitic", + "Senses": [ + { + "Id": "752f6980-2888-411b-bd45-a37bad94f428", + "Order": 1, + "DeletedAt": null, + "EntryId": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "additive, \u0022also\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "additivo, \u0022tambe\u0301m\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "ADD", + "pt": "ADD" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d13979f4-0ec4-45a6-b2b2-7a948930b47f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "iwombo", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "752f6980-2888-411b-bd45-a37bad94f428", + "DeletedAt": null + } + ] + }, + { + "Id": "1132c791-3980-4fe1-af2e-99e766f8ac01", + "Order": 2, + "DeletedAt": null, + "EntryId": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "Definition": {}, + "Gloss": { + "en": "INTENS", + "pt": "INTENS" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "6ad40996-9427-4951-8596-61a482180cf5", + "Order": 3, + "DeletedAt": null, + "EntryId": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "Definition": {}, + "Gloss": { + "en": "please", + "pt": "por favor" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "38639731-5769-4618-b5c4-837c4f59119f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndiwangisenimbo \u0022cure-me por favor (lit tambe\u0301m)\u0022", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "6ad40996-9427-4951-8596-61a482180cf5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "052042f8-9181-451d-92f7-599974fd0fec", + "DeletedAt": null, + "LexemeForm": { + "seh": "bondo" + }, + "CitationForm": { + "seh": "mbondo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57945f8a-40d5-4ca4-9c89-f8cecc68f8b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "052042f8-9181-451d-92f7-599974fd0fec", + "Definition": {}, + "Gloss": { + "en": "knee", + "pt": "joelho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1d8633e0-4279-4ddc-826e-16aa08a977e5", + "Name": { + "en": "Bone, joint" + }, + "Code": "2.1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "1bcdca5a-454a-46aa-8906-1dd8df34bb39", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "57945f8a-40d5-4ca4-9c89-f8cecc68f8b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65a4e65e-13da-4fa5-8ec5-a7248750371d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bua" + }, + "CitationForm": { + "seh": "mbua" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdb7385d-b828-4b3a-95c3-6392cf178925", + "Order": 1, + "DeletedAt": null, + "EntryId": "65a4e65e-13da-4fa5-8ec5-a7248750371d", + "Definition": {}, + "Gloss": { + "en": "threshing floor", + "pt": "eira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b36c4bca-817c-4843-b458-cfe57e7abdc4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bdb7385d-b828-4b3a-95c3-6392cf178925", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08006bb2-9f97-4754-a1d0-6e0a31bd3b69", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbudzati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6114e22f-0bf4-4987-97f0-e4f9e4fc09aa", + "Order": 1, + "DeletedAt": null, + "EntryId": "08006bb2-9f97-4754-a1d0-6e0a31bd3b69", + "Definition": {}, + "Gloss": { + "en": "before", + "pt": "antes" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "37a6f4ed-d949-4038-a075-9d6f2b46fc9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6114e22f-0bf4-4987-97f0-e4f9e4fc09aa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "475473f7-16bf-4aae-adb3-07e95f60d7e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "bumba" + }, + "CitationForm": { + "seh": "mbumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2083395f-5ad8-47e1-84da-9570b2571584", + "Order": 1, + "DeletedAt": null, + "EntryId": "475473f7-16bf-4aae-adb3-07e95f60d7e9", + "Definition": {}, + "Gloss": { + "en": "people", + "pt": "povo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6da32e8-4730-47c1-bcd6-aa5dc961fb46", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2083395f-5ad8-47e1-84da-9570b2571584", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9cce8577-9c0f-4406-ab4a-699a428930d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mburuk" + }, + "CitationForm": { + "seh": "mburuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eb4e8cdf-de54-4ee4-89d4-5fab25b9c7c3", + "Order": 1, + "DeletedAt": null, + "EntryId": "9cce8577-9c0f-4406-ab4a-699a428930d7", + "Definition": {}, + "Gloss": { + "en": "fly", + "pt": "voar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "5cc64831-c14a-4dbe-beba-214e725ad041", + "Name": { + "en": "Manner of movement" + }, + "Code": "7.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2589b6ce-ccf2-4db6-817c-49f857e47fbf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "eb4e8cdf-de54-4ee4-89d4-5fab25b9c7c3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b9e0579-0c85-48c8-8f77-5963d07088b0", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbus" + }, + "CitationForm": { + "seh": "mbusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f250ea0-f41e-40e9-9ab4-c5c26b1e52e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b9e0579-0c85-48c8-8f77-5963d07088b0", + "Definition": {}, + "Gloss": { + "en": "collect fees", + "pt": "cobrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0e19cf83-9133-4d8a-a367-82993d8abf81", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6f250ea0-f41e-40e9-9ab4-c5c26b1e52e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "28b19ef7-e9fb-44b1-afd8-23743e39c4ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "buto" + }, + "CitationForm": { + "seh": "mbuto" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c8cae0e-aa0b-486b-a195-55538dbe67df", + "Order": 1, + "DeletedAt": null, + "EntryId": "28b19ef7-e9fb-44b1-afd8-23743e39c4ac", + "Definition": {}, + "Gloss": { + "en": "place", + "pt": "lugar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ae0041d-133b-4de6-ba94-688938df52d9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1c8cae0e-aa0b-486b-a195-55538dbe67df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56f6c163-c208-4c56-978e-81c7944a4d64", + "DeletedAt": null, + "LexemeForm": { + "seh": "buwa" + }, + "CitationForm": { + "seh": "mbuwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cf09ea68-25fe-423a-b238-edd3ca05e9b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "56f6c163-c208-4c56-978e-81c7944a4d64", + "Definition": {}, + "Gloss": { + "en": "fisherman", + "pt": "pescador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ece0c43-9ca5-471f-ad6c-f5c83a836742", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cf09ea68-25fe-423a-b238-edd3ca05e9b6", + "DeletedAt": null + } + ] + }, + { + "Id": "60561d0d-5be7-43af-b3f7-619b74510ef0", + "Order": 2, + "DeletedAt": null, + "EntryId": "56f6c163-c208-4c56-978e-81c7944a4d64", + "Definition": {}, + "Gloss": { + "en": "threshing floor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "322fce11-2210-408a-a432-cd73bca12783", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbuya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "888c502e-7006-4841-9087-e8500209b257", + "Order": 1, + "DeletedAt": null, + "EntryId": "322fce11-2210-408a-a432-cd73bca12783", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lord of a slave", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "lord", + "pt": "senhor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "982593c3-8984-4d12-bd5d-a74d213e633c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "888c502e-7006-4841-9087-e8500209b257", + "DeletedAt": null + } + ] + }, + { + "Id": "8c04a4dd-084f-4496-bb4b-76429767a4d7", + "Order": 2, + "DeletedAt": null, + "EntryId": "322fce11-2210-408a-a432-cd73bca12783", + "Definition": { + "en": { + "Spans": [ + { + "Text": "grandfather on mother\u0027s side", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "grandfather", + "pt": "avo\u0302" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d1e58469-52e3-4b50-b0de-00bf9f09f8d4", + "Name": { + "en": "Grandfather, grandmother" + }, + "Code": "4.1.9.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c402cdb2-9284-4b03-9756-b2c29eb63535", + "DeletedAt": null, + "LexemeForm": { + "seh": "buyantumbzi" + }, + "CitationForm": { + "seh": "mbuyantumbzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6c44f63d-f5ce-491d-a0a6-0263fd10f95d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c402cdb2-9284-4b03-9756-b2c29eb63535", + "Definition": {}, + "Gloss": { + "en": "in-laws", + "pt": "consogros" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4374989d-1479-44c0-a603-540502aa9280", + "DeletedAt": null, + "LexemeForm": { + "seh": "buzi" + }, + "CitationForm": { + "seh": "mbuzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7b087c80-53a1-41e8-ad08-7e5aea18410c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4374989d-1479-44c0-a603-540502aa9280", + "Definition": {}, + "Gloss": { + "en": "goat", + "pt": "cabrito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4eea233-a735-4a5d-9507-f75b5dbfe8ec", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16,27; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "7b087c80-53a1-41e8-ad08-7e5aea18410c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "85d6924e-20fa-4fee-9094-3753094700c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbvimbvinidz" + }, + "CitationForm": { + "seh": "mbvimbvinidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bae12644-8d47-42e6-8fce-28076b38da88", + "Order": 1, + "DeletedAt": null, + "EntryId": "85d6924e-20fa-4fee-9094-3753094700c6", + "Definition": {}, + "Gloss": { + "en": "get lost", + "pt": "extraviar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f03a9415-d09f-47b4-a88b-07d9108103da", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "bae12644-8d47-42e6-8fce-28076b38da88", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e9f39346-ab14-437e-9ecc-df5180846b09", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvini" + }, + "CitationForm": { + "seh": "mbvini" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d2673bb4-023b-4497-838c-3be9db01dfc6", + "Order": 1, + "DeletedAt": null, + "EntryId": "e9f39346-ab14-437e-9ecc-df5180846b09", + "Definition": {}, + "Gloss": { + "en": "dancer", + "pt": "danc\u0327arino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9b70dcac-6a87-4b9a-b4a7-7c0cb30f853c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d2673bb4-023b-4497-838c-3be9db01dfc6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "facd1fda-36fe-4254-b02e-159f94c7d784", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvuni" + }, + "CitationForm": { + "seh": "mbvuni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4c668f4-1dad-4606-a6d0-14b5ed1684e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "facd1fda-36fe-4254-b02e-159f94c7d784", + "Definition": {}, + "Gloss": { + "en": "peacemaker", + "pt": "pacificador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "256e6f6b-d355-4e43-9b3a-620858d26b7d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c4c668f4-1dad-4606-a6d0-14b5ed1684e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49eb324b-13e4-4d4d-95ab-9a0a5b3048be", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvuu" + }, + "CitationForm": { + "seh": "mbvuu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "462d9ee6-1d42-409f-824e-5a25e6ac1a48", + "Order": 1, + "DeletedAt": null, + "EntryId": "49eb324b-13e4-4d4d-95ab-9a0a5b3048be", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Hippopotamus amphibius", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hippopotomus", + "pt": "hipopotomo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0141b6aa-7312-44f6-ba85-4fa91012f72c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "462d9ee6-1d42-409f-824e-5a25e6ac1a48", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a0e7e7c-a701-4fd2-9234-7f89a546258a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbwenye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "95882d6f-1b5f-4211-8ae6-092819469162", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a0e7e7c-a701-4fd2-9234-7f89a546258a", + "Definition": {}, + "Gloss": { + "en": "but", + "pt": "mas" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "057cc851-6f94-4a65-afcf-331477e75fa5", + "DeletedAt": null, + "LexemeForm": { + "seh": "cherengi" + }, + "CitationForm": { + "seh": "mcherengi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e59940fe-9ebc-4531-8f0f-606d65db189c", + "Order": 1, + "DeletedAt": null, + "EntryId": "057cc851-6f94-4a65-afcf-331477e75fa5", + "Definition": {}, + "Gloss": { + "en": "poor person", + "pt": "pobre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b94239dc-5c67-42c7-827c-530741070d0f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e59940fe-9ebc-4531-8f0f-606d65db189c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fac1d361-b9ee-4da0-9c02-32bab3ccb41d", + "DeletedAt": null, + "LexemeForm": { + "seh": "mebzala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1882c819-4011-4b47-ba67-4af189d622da", + "Order": 1, + "DeletedAt": null, + "EntryId": "fac1d361-b9ee-4da0-9c02-32bab3ccb41d", + "Definition": {}, + "Gloss": { + "en": "mother-in-law", + "pt": "sogra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1e9ed078-6919-4c10-8c6e-573830146fb4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1882c819-4011-4b47-ba67-4af189d622da", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b974fa51-77c1-46ee-9972-10b6fb3b6ea8", + "DeletedAt": null, + "LexemeForm": { + "seh": "meny" + }, + "CitationForm": { + "seh": "menya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1cb19796-f0b4-459b-80ed-4ed620027d8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b974fa51-77c1-46ee-9972-10b6fb3b6ea8", + "Definition": {}, + "Gloss": { + "en": "hit", + "pt": "bater" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6c60e6cd-ccda-469e-95b4-895f69c0eab6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "1cb19796-f0b4-459b-80ed-4ed620027d8e", + "DeletedAt": null + } + ] + }, + { + "Id": "ad086c20-5484-4369-a988-86d1bee667a9", + "Order": 2, + "DeletedAt": null, + "EntryId": "b974fa51-77c1-46ee-9972-10b6fb3b6ea8", + "Definition": {}, + "Gloss": { + "en": "break bread", + "pt": "partir pa\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7292cacd-2831-4b11-b6eb-3dbb02c7fe93", + "DeletedAt": null, + "LexemeForm": { + "seh": "menya-meny" + }, + "CitationForm": { + "seh": "menya-menya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0de5de90-4272-4d51-878c-12b83a619769", + "Order": 1, + "DeletedAt": null, + "EntryId": "7292cacd-2831-4b11-b6eb-3dbb02c7fe93", + "Definition": { + "en": { + "Spans": [ + { + "Text": "break bread repetively", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "partir pa\u0303o repetivament", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "break bread", + "pt": "partir pa\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "026431d5-fe59-436a-b0dc-551a75d86916", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0de5de90-4272-4d51-878c-12b83a619769", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dcaa76dc-7458-4338-a1eb-12fceb56ca3d", + "DeletedAt": null, + "LexemeForm": { + "seh": "menyan" + }, + "CitationForm": { + "seh": "menyana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "11b748dc-ab4a-4525-9cbb-a6de4b85caf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "dcaa76dc-7458-4338-a1eb-12fceb56ca3d", + "Definition": {}, + "Gloss": { + "en": "fight", + "pt": "lutar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62b5407b-a152-4748-a8c7-b1acca9916c5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "11b748dc-ab4a-4525-9cbb-a6de4b85caf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af7275f4-b375-4997-a00d-5af1899d13d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mer" + }, + "CitationForm": { + "seh": "mera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3c4ba6f1-e3b9-41f4-8331-47704488975f", + "Order": 1, + "DeletedAt": null, + "EntryId": "af7275f4-b375-4997-a00d-5af1899d13d9", + "Definition": {}, + "Gloss": { + "en": "germinate", + "pt": "germinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ae335f5-ab6a-4c8a-ba3c-54af440b75c9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3c4ba6f1-e3b9-41f4-8331-47704488975f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "11abf5ec-8b88-46d7-9b1c-b0ddae7ac894", + "DeletedAt": null, + "LexemeForm": { + "seh": "mez" + }, + "CitationForm": { + "seh": "meza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5da5191e-c7c9-4c91-b4eb-16e52fd275ae", + "Order": 1, + "DeletedAt": null, + "EntryId": "11abf5ec-8b88-46d7-9b1c-b0ddae7ac894", + "Definition": {}, + "Gloss": { + "en": "to fish", + "pt": "pescar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f4e6abac-692b-48d0-af56-abcff67ec8a8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5da5191e-c7c9-4c91-b4eb-16e52fd275ae", + "DeletedAt": null + } + ] + }, + { + "Id": "2392de10-0208-4840-9154-35f146b14662", + "Order": 2, + "DeletedAt": null, + "EntryId": "11abf5ec-8b88-46d7-9b1c-b0ddae7ac894", + "Definition": {}, + "Gloss": { + "en": "swallow", + "pt": "engolir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47f45f37-0706-4a70-861e-06d8d489028b", + "DeletedAt": null, + "LexemeForm": { + "seh": "meza" + }, + "CitationForm": { + "seh": "meza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2b1557be-9bd5-42d7-87da-7e53334a49f1", + "Order": 1, + "DeletedAt": null, + "EntryId": "47f45f37-0706-4a70-861e-06d8d489028b", + "Definition": {}, + "Gloss": { + "en": "table", + "pt": "mesa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "f732bdb5-9a04-468a-b50b-510f94d20fb4", + "Name": { + "en": "Table" + }, + "Code": "5.1.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7a46f279-dd9c-473f-a3b3-69ba0a52236a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2b1557be-9bd5-42d7-87da-7e53334a49f1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "90cbdc5c-5a93-45b3-ac80-5e16fe523852", + "DeletedAt": null, + "LexemeForm": { + "seh": "mi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "0e78b61e-306a-4e3c-94a2-84a6b6a044f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "90cbdc5c-5a93-45b3-ac80-5e16fe523852", + "Definition": {}, + "Gloss": { + "en": "4", + "pt": "4" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "efaa842b-b2aa-4332-925f-931700412d6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "michamu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "43584f6e-c0da-49e1-b3ae-2f3c5dfa0618", + "Order": 1, + "DeletedAt": null, + "EntryId": "efaa842b-b2aa-4332-925f-931700412d6a", + "Definition": {}, + "Gloss": { + "en": "lashes", + "pt": "ac\u0327oites" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16727713-f06f-4470-9eea-8602dbd44762", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "43584f6e-c0da-49e1-b3ae-2f3c5dfa0618", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0ac275c1-cbea-4fff-b78c-44647e4c87da", + "DeletedAt": null, + "LexemeForm": { + "seh": "mimba" + }, + "CitationForm": { + "seh": "mimba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "66347a27-02b1-4634-9e15-6e558eea1975", + "Order": 1, + "DeletedAt": null, + "EntryId": "0ac275c1-cbea-4fff-b78c-44647e4c87da", + "Definition": {}, + "Gloss": { + "en": "belly", + "pt": "barriga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db24b91c-f580-414c-a771-acd44fed2f1e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "66347a27-02b1-4634-9e15-6e558eea1975", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75c1100c-e1f4-4b34-97c3-e64a8b2eb291", + "DeletedAt": null, + "LexemeForm": { + "seh": "minyoka" + }, + "CitationForm": { + "seh": "minyoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9854719e-fc52-413f-bd46-923c7ed16dc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "75c1100c-e1f4-4b34-97c3-e64a8b2eb291", + "Definition": {}, + "Gloss": { + "en": "worm", + "pt": "minhoca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed5d5789-54ef-424e-88e6-204ef0e3b072", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "9854719e-fc52-413f-bd46-923c7ed16dc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "17284bb5-377c-4a19-ad5c-ca02b52fc11b", + "DeletedAt": null, + "LexemeForm": { + "seh": "sozi" + }, + "CitationForm": { + "seh": "misozi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ebd98cc-38b8-4548-8f65-85df6f081421", + "Order": 1, + "DeletedAt": null, + "EntryId": "17284bb5-377c-4a19-ad5c-ca02b52fc11b", + "Definition": {}, + "Gloss": { + "en": "tears", + "pt": "lagrimas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d38ab932-26cc-4a96-987e-278e2827a45c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0ebd98cc-38b8-4548-8f65-85df6f081421", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61a0c41b-8612-4304-a9e5-cb7726197456", + "DeletedAt": null, + "LexemeForm": { + "seh": "tindo" + }, + "CitationForm": { + "seh": "mitindo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "70922f18-954d-4d45-838b-9e8add104260", + "Order": 1, + "DeletedAt": null, + "EntryId": "61a0c41b-8612-4304-a9e5-cb7726197456", + "Definition": {}, + "Gloss": { + "en": "urine", + "pt": "urina" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b361f9c7-b5d2-4ebb-958b-b07f146a2224", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "70922f18-954d-4d45-838b-9e8add104260", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1241a470-7fe5-40e2-a734-81425dbf4cc7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mudzi" + }, + "CitationForm": { + "seh": "mmudzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "615cba3f-626c-411f-a90c-bb76ca15d1f5", + "Order": 1, + "DeletedAt": null, + "EntryId": "1241a470-7fe5-40e2-a734-81425dbf4cc7", + "Definition": {}, + "Gloss": { + "en": "host", + "pt": "afitria\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3d948c63-961c-46c3-a89f-4109646372e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "615cba3f-626c-411f-a90c-bb76ca15d1f5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "632f5e17-13ed-4d51-8998-6c17184c8347", + "DeletedAt": null, + "LexemeForm": { + "seh": "omba" + }, + "CitationForm": { + "seh": "momba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "309c1c0c-cb5e-466b-a081-427e61ca781b", + "Order": 1, + "DeletedAt": null, + "EntryId": "632f5e17-13ed-4d51-8998-6c17184c8347", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spear with a sharp round pointed iron head", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spear", + "pt": "zagaia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d19b2c0c-3337-4808-9624-6ad1f0e6dba5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "309c1c0c-cb5e-466b-a081-427e61ca781b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a032b7d8-da95-4168-a943-6e99d32dd37c", + "DeletedAt": null, + "LexemeForm": { + "seh": "oto" + }, + "CitationForm": { + "seh": "moto" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "75eada5f-2469-4558-ab57-256655ef86d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "a032b7d8-da95-4168-a943-6e99d32dd37c", + "Definition": {}, + "Gloss": { + "en": "fire", + "pt": "fogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fbd753a4-bf58-4603-9e1b-e39bab51249a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "75eada5f-2469-4558-ab57-256655ef86d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e63992d2-2f7b-4653-adfe-fcdb19aecde5", + "DeletedAt": null, + "LexemeForm": { + "seh": "moyok" + }, + "CitationForm": { + "seh": "moyoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9acfd40f-6073-4cb3-b6e4-38be96b09fb8", + "Order": 1, + "DeletedAt": null, + "EntryId": "e63992d2-2f7b-4653-adfe-fcdb19aecde5", + "Definition": {}, + "Gloss": { + "en": "greet", + "pt": "comprimentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "94607f44-9a9c-4de1-a528-d60a10423c17", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9acfd40f-6073-4cb3-b6e4-38be96b09fb8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab672944-a2c4-4741-969f-01700b334572", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "50e674a7-0b8a-4233-875b-e2cab0cf2c77", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab672944-a2c4-4741-969f-01700b334572", + "Definition": {}, + "Gloss": { + "en": "until", + "pt": "ate\u0301" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d04f5c9d-7b68-4e99-98db-0bc72341554e", + "DeletedAt": null, + "LexemeForm": { + "seh": "pando" + }, + "CitationForm": { + "seh": "mpando" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0aed8037-a007-49e4-9953-3aab76aa6f21", + "Order": 1, + "DeletedAt": null, + "EntryId": "d04f5c9d-7b68-4e99-98db-0bc72341554e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one or two place bench without a back", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "banco de um ou dois lugares sem costa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stool", + "pt": "banco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7e183f98-01ed-45f1-ba53-7d4967ec7fb8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0aed8037-a007-49e4-9953-3aab76aa6f21", + "DeletedAt": null + } + ] + }, + { + "Id": "fe140ec7-3093-4e13-99b5-9d34e707c2c8", + "Order": 2, + "DeletedAt": null, + "EntryId": "d04f5c9d-7b68-4e99-98db-0bc72341554e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "at times by extention \u0022chair\u0022", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "chair", + "pt": "cadera" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29b900c6-b2c5-4d76-85c2-c76c03ce60cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "pani" + }, + "CitationForm": { + "seh": "mpani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "214820fd-bc1f-4271-9191-2be4725a8e78", + "Order": 1, + "DeletedAt": null, + "EntryId": "29b900c6-b2c5-4d76-85c2-c76c03ce60cc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "stick with meat or fish on it for roasting, fish on a stick", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "espeto com carne para assar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stick", + "pt": "espeto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c56eb008-41b8-4d8a-ad0c-7f8dfdc36ec5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "214820fd-bc1f-4271-9191-2be4725a8e78", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93951d41-1c68-4ecd-ad29-13b77d469a8d", + "DeletedAt": null, + "LexemeForm": { + "seh": "peni" + }, + "CitationForm": { + "seh": "mpeni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "165d58e1-9723-4410-9075-7f30d84d20ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "93951d41-1c68-4ecd-ad29-13b77d469a8d", + "Definition": {}, + "Gloss": { + "en": "knife", + "pt": "faca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2bfedc86-1e0d-4c8a-b479-7472d052d830", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "165d58e1-9723-4410-9075-7f30d84d20ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5c88aa1-f634-4cd0-bef8-b0ed976ff39c", + "DeletedAt": null, + "LexemeForm": { + "seh": "falinya" + }, + "CitationForm": { + "seh": "mpfalinya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "772629ab-f835-4320-9b39-0e243b405e41", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5c88aa1-f634-4cd0-bef8-b0ed976ff39c", + "Definition": {}, + "Gloss": { + "en": "manioc plant", + "pt": "mandioqueira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a19e182b-ebfe-47d3-a54c-6c4ecac12162", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "772629ab-f835-4320-9b39-0e243b405e41", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a28ac300-426f-4e88-bd44-cce6de8fec31", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfemba" + }, + "CitationForm": { + "seh": "mpfemba" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b8e47d4a-1a2e-4ebe-9de1-5dfc1ea46e89", + "Order": 1, + "DeletedAt": null, + "EntryId": "a28ac300-426f-4e88-bd44-cce6de8fec31", + "Definition": {}, + "Gloss": { + "en": "nine", + "pt": "nove" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f0c0b52-86c8-45a7-a5de-8feae122dcbd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b8e47d4a-1a2e-4ebe-9de1-5dfc1ea46e89", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7ee490e9-d639-4a8e-a307-5d7f35075d54", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfendu" + }, + "CitationForm": { + "seh": "mpfendu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", + "Order": 1, + "DeletedAt": null, + "EntryId": "7ee490e9-d639-4a8e-a307-5d7f35075d54", + "Definition": {}, + "Gloss": { + "en": "occasion", + "pt": "vez" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ef964514-0831-4da9-825d-f6c27db2192b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndinenda mpfendu inango", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eu vou outra vez", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", + "DeletedAt": null + }, + { + "Id": "4d75075d-afc9-430e-a806-c62f28e9556f", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", + "DeletedAt": null + } + ] + }, + { + "Id": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", + "Order": 2, + "DeletedAt": null, + "EntryId": "7ee490e9-d639-4a8e-a307-5d7f35075d54", + "Definition": {}, + "Gloss": { + "en": "generation", + "pt": "gerac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d67c37c1-594b-4658-9d97-431b0eadaac4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mpfendu yathu tikhakhondeswa kumwa nipa mbatiri ana.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Our generation was forbidden to drink liquor as children.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Gerac\u0327a\u0303o nossa era nos proibido beber aguardente idade crianc\u0327a.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d352b613-93ae-4f6b-9bd9-be5f21b94fb1", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfigu" + }, + "CitationForm": { + "seh": "mpfigu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21b1db45-dee8-44d8-a566-eee8e8705670", + "Order": 1, + "DeletedAt": null, + "EntryId": "d352b613-93ae-4f6b-9bd9-be5f21b94fb1", + "Definition": {}, + "Gloss": { + "en": "banana tree", + "pt": "bananeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b0aedff6-d5da-4595-9b28-6abd1310f4cb", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mpfigu ukulu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "21b1db45-dee8-44d8-a566-eee8e8705670", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a7324004-98a9-40c3-bd3d-0b5bc1918e61", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfinyinji" + }, + "CitationForm": { + "seh": "mpfinyinji" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5c7c257e-0536-4cc9-bcd7-1e00db08655b", + "Order": 1, + "DeletedAt": null, + "EntryId": "a7324004-98a9-40c3-bd3d-0b5bc1918e61", + "Definition": {}, + "Gloss": { + "en": "spleen?", + "pt": "moela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96e7323c-532a-41c2-9342-b1b8be3719e7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5c7c257e-0536-4cc9-bcd7-1e00db08655b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "748e5797-944d-4c02-80e4-d560461f358f", + "DeletedAt": null, + "LexemeForm": { + "seh": "fiti" + }, + "CitationForm": { + "seh": "mpfiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "861141fa-1b5e-4a3d-9f45-7f0d0ea8af4a", + "Order": 1, + "DeletedAt": null, + "EntryId": "748e5797-944d-4c02-80e4-d560461f358f", + "Definition": {}, + "Gloss": { + "en": "witch", + "pt": "feiticeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c8731ae-7d1e-4ad4-83a7-a756a0fd0d7d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "861141fa-1b5e-4a3d-9f45-7f0d0ea8af4a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbad6402-5b20-4ba9-a3b1-49dd9ab55a79", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfukwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdfdd59e-ed0a-4ae0-9c8e-9e6f7a334597", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbad6402-5b20-4ba9-a3b1-49dd9ab55a79", + "Definition": {}, + "Gloss": { + "en": "lair", + "pt": "covil" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "971da8f6-f34c-40e6-8508-20f35eebad7b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4 (m\u0027pfukue)", + "Ws": "en" + } + ] + }, + "SenseId": "bdfdd59e-ed0a-4ae0-9c8e-9e6f7a334597", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "66a247d9-29c6-4d6f-b3b1-199a55dd7f8a", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfuma" + }, + "CitationForm": { + "seh": "mpfuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3beed235-e349-4ba0-8237-b3908315723a", + "Order": 1, + "DeletedAt": null, + "EntryId": "66a247d9-29c6-4d6f-b3b1-199a55dd7f8a", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riquesas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c7d4f50f-9f1d-454c-9fec-e87bc47489ca", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfuma" + }, + "CitationForm": { + "seh": "mpfuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98e18f17-178e-41c1-bc63-3816771bb6d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "c7d4f50f-9f1d-454c-9fec-e87bc47489ca", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riqueza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee767254-ddaa-4879-adb7-02d65ae8d265", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "98e18f17-178e-41c1-bc63-3816771bb6d1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f159952-dae0-456a-9260-f9ae4079848c", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfumi" + }, + "CitationForm": { + "seh": "mpfumi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "63f05f21-fbeb-434d-8077-9437deda278a", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f159952-dae0-456a-9260-f9ae4079848c", + "Definition": {}, + "Gloss": { + "en": "rich person", + "pt": "pessoa rica" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b5dafde1-9aef-4eb5-80e0-9b163b4a80b9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "63f05f21-fbeb-434d-8077-9437deda278a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9791c3a6-c2d2-4282-aff3-645a7171f5a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfumu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "22b81191-b1d1-4237-8dcd-3f702b915b39", + "Order": 1, + "DeletedAt": null, + "EntryId": "9791c3a6-c2d2-4282-aff3-645a7171f5a8", + "Definition": {}, + "Gloss": { + "en": "chief", + "pt": "chefe" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "bbf5f321-2855-49c9-8278-839fc022e829", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ababa apfumu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "pais chefes", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "22b81191-b1d1-4237-8dcd-3f702b915b39", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e83317e0-567a-4f50-8148-ef4abfa2656c", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfumu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "12a6c537-68f2-4e8e-bdba-9020132a271c", + "Order": 1, + "DeletedAt": null, + "EntryId": "e83317e0-567a-4f50-8148-ef4abfa2656c", + "Definition": {}, + "Gloss": { + "en": "chief", + "pt": "chefe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ecb636e-e671-4f19-849f-ce63fb29e117", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunye" + }, + "CitationForm": { + "seh": "mpfunye" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dcfe92de-cfe6-42ed-8b46-531865b930e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ecb636e-e671-4f19-849f-ce63fb29e117", + "Definition": {}, + "Gloss": { + "en": "worm", + "pt": "verme" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dd20cd3-4548-415a-b036-bd075d687529", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "dcfe92de-cfe6-42ed-8b46-531865b930e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea944392-6150-497c-83fb-d64f2e45fba7", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunzisi" + }, + "CitationForm": { + "seh": "mpfunzisi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc7bf292-711c-4bf3-8525-beee57ca6e80", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea944392-6150-497c-83fb-d64f2e45fba7", + "Definition": {}, + "Gloss": { + "en": "teacher", + "pt": "professor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "928224fe-084d-43b5-83a2-535e3a6dc86b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "bc7bf292-711c-4bf3-8525-beee57ca6e80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0710257d-ea52-4f90-ab1f-bf2812da2ca4", + "DeletedAt": null, + "LexemeForm": { + "seh": "futi" + }, + "CitationForm": { + "seh": "mpfuti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bcc80d0b-d814-4902-8d8a-87ffec430eaa", + "Order": 1, + "DeletedAt": null, + "EntryId": "0710257d-ea52-4f90-ab1f-bf2812da2ca4", + "Definition": {}, + "Gloss": { + "en": "gun", + "pt": "espingarda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9dbb78bc-62c7-4d3d-91af-33973649b48f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bcc80d0b-d814-4902-8d8a-87ffec430eaa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6cc49b2c-5504-4639-8855-97a2af33d405", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphabano" + }, + "CitationForm": { + "seh": "mphambano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87920a43-1881-459f-8c78-1cffc1b0bdf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "6cc49b2c-5504-4639-8855-97a2af33d405", + "Definition": {}, + "Gloss": { + "en": "cross-road", + "pt": "cruzamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67206a2a-bd36-48d8-a75f-687f4aed4194", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "87920a43-1881-459f-8c78-1cffc1b0bdf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65a96505-c3c6-4af3-ad50-7a70a843c079", + "DeletedAt": null, + "LexemeForm": { + "seh": "phambvu" + }, + "CitationForm": { + "seh": "mphambvu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "040f83f5-5fe3-41ee-a842-4b68fff56408", + "Order": 1, + "DeletedAt": null, + "EntryId": "65a96505-c3c6-4af3-ad50-7a70a843c079", + "Definition": {}, + "Gloss": { + "en": "strength", + "pt": "forc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "316def81-2d31-472a-a7cb-4b25fc0e9e93", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "040f83f5-5fe3-41ee-a842-4b68fff56408", + "DeletedAt": null + } + ] + }, + { + "Id": "852eeee5-cde7-4ed8-8dde-6b44e024bbf0", + "Order": 2, + "DeletedAt": null, + "EntryId": "65a96505-c3c6-4af3-ad50-7a70a843c079", + "Definition": {}, + "Gloss": { + "en": "power", + "pt": "poder" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5bb597f-c78d-4d9d-9fc9-65e4c7730f20", + "DeletedAt": null, + "LexemeForm": { + "seh": "pandu" + }, + "CitationForm": { + "seh": "mphandu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "70a4dfae-de3d-4145-981c-36f0b64f6ff3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5bb597f-c78d-4d9d-9fc9-65e4c7730f20", + "Definition": {}, + "Gloss": { + "en": "criminal", + "pt": "criminoso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ec90a8f7-5c46-4bef-9d70-c0b924b2fa3d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "70a4dfae-de3d-4145-981c-36f0b64f6ff3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd837d20-5037-4ecd-a43f-cd82653a853f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phangwa" + }, + "CitationForm": { + "seh": "mphangwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "92397de3-9477-4955-8c94-c40a0bf6fe2d", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd837d20-5037-4ecd-a43f-cd82653a853f", + "Definition": {}, + "Gloss": { + "en": "news", + "pt": "novas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7abaf182-5bd9-4388-82e6-8638f51c5b9b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "92397de3-9477-4955-8c94-c40a0bf6fe2d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ae99eb30-9de6-4d21-be20-b073ea8ee60d", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphapo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "468a08fd-147d-413b-9293-0c15ad234fdb", + "Order": 1, + "DeletedAt": null, + "EntryId": "ae99eb30-9de6-4d21-be20-b073ea8ee60d", + "Definition": {}, + "Gloss": { + "en": "therefore", + "pt": "pore\u0301m" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "374e094d-f72c-4198-a2d0-5691802c7419", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musafunanji mphapo na ine.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Pore\u0301m o que quer comigo.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "468a08fd-147d-413b-9293-0c15ad234fdb", + "DeletedAt": null + }, + { + "Id": "9d6c0a09-2153-4e95-a9b0-46e90bbcaa40", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndakucemera mphapo iwe watani kukhonda kubwera?", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "468a08fd-147d-413b-9293-0c15ad234fdb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bf070c0f-f83b-4765-ad59-d96208b63bb3", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphawi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d947c334-dc46-4a84-a6ad-7ac54d5b0cca", + "Order": 1, + "DeletedAt": null, + "EntryId": "bf070c0f-f83b-4765-ad59-d96208b63bb3", + "Definition": {}, + "Gloss": { + "en": "orphan", + "pt": "orfa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "57237095-23cf-43ba-aa6c-89cecdd35ff8", + "Name": { + "en": "Orphan" + }, + "Code": "4.1.9.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "463e043f-f1cd-4f2c-9dcb-7acabde34bda", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; George", + "Ws": "en" + } + ] + }, + "SenseId": "d947c334-dc46-4a84-a6ad-7ac54d5b0cca", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45b4b809-3a90-47c9-a8df-8c62cf251280", + "DeletedAt": null, + "LexemeForm": { + "seh": "phepo" + }, + "CitationForm": { + "seh": "mphepo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bb8e6660-085a-49ea-9abe-d83b4a21ec9b", + "Order": 1, + "DeletedAt": null, + "EntryId": "45b4b809-3a90-47c9-a8df-8c62cf251280", + "Definition": {}, + "Gloss": { + "en": "wind", + "pt": "vento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "abe2a570-ddfd-4566-81a6-44d39680e9b1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bb8e6660-085a-49ea-9abe-d83b4a21ec9b", + "DeletedAt": null + } + ] + }, + { + "Id": "1e0b35df-2ff6-4377-93af-b1a9d46e828d", + "Order": 2, + "DeletedAt": null, + "EntryId": "45b4b809-3a90-47c9-a8df-8c62cf251280", + "Definition": {}, + "Gloss": { + "en": "cold", + "pt": "frio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32492499-1d07-4612-b0d2-c39778f3f871", + "DeletedAt": null, + "LexemeForm": { + "seh": "phere" + }, + "CitationForm": { + "seh": "mphere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "feb3247b-c2bc-4efa-a83e-148624d67b3f", + "Order": 1, + "DeletedAt": null, + "EntryId": "32492499-1d07-4612-b0d2-c39778f3f871", + "Definition": {}, + "Gloss": { + "en": "chicken pox", + "pt": "sarna" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c649d2fd-85ce-4902-ba45-6d0bc3a072f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26 (says itch);", + "Ws": "en" + } + ] + }, + "SenseId": "feb3247b-c2bc-4efa-a83e-148624d67b3f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cfb58d8f-2696-4f7f-b315-38f916c2b3d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "phete" + }, + "CitationForm": { + "seh": "mphete" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ba5ea089-ff71-4a77-918b-8d4e53457026", + "Order": 1, + "DeletedAt": null, + "EntryId": "cfb58d8f-2696-4f7f-b315-38f916c2b3d1", + "Definition": {}, + "Gloss": { + "en": "ring", + "pt": "anel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b3f51e0-1a3b-4220-8b63-2a4073d06636", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ba5ea089-ff71-4a77-918b-8d4e53457026", + "DeletedAt": null + } + ] + }, + { + "Id": "aaef54b6-11fd-4168-98ba-34a318302138", + "Order": 2, + "DeletedAt": null, + "EntryId": "cfb58d8f-2696-4f7f-b315-38f916c2b3d1", + "Definition": {}, + "Gloss": { + "en": "ear ring", + "pt": "brinco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e735a6d-c786-4605-b923-da2404b65d45", + "DeletedAt": null, + "LexemeForm": { + "seh": "phiriphiri" + }, + "CitationForm": { + "seh": "mphiriphiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef3e6d0f-d7b6-4da6-bae0-b550acc9c2a3", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e735a6d-c786-4605-b923-da2404b65d45", + "Definition": {}, + "Gloss": { + "en": "hot sauce", + "pt": "piripiri" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f8082469-08aa-4d26-a855-50de12e2b5eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef3e6d0f-d7b6-4da6-bae0-b550acc9c2a3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f129711c-1884-4bbb-b800-797b67b68c01", + "DeletedAt": null, + "LexemeForm": { + "seh": "phosa" + }, + "CitationForm": { + "seh": "mphosa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "417f91fc-c905-46ae-a30d-a9c7dcbea044", + "Order": 1, + "DeletedAt": null, + "EntryId": "f129711c-1884-4bbb-b800-797b67b68c01", + "Definition": {}, + "Gloss": { + "en": "guilt", + "pt": "culpa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2c98d7e-fb0c-4ac8-9f65-2b77a9b3a768", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "417f91fc-c905-46ae-a30d-a9c7dcbea044", + "DeletedAt": null + } + ] + }, + { + "Id": "a6723888-7ae9-4164-b4ca-eb34c31d1227", + "Order": 2, + "DeletedAt": null, + "EntryId": "f129711c-1884-4bbb-b800-797b67b68c01", + "Definition": {}, + "Gloss": { + "en": "motive", + "pt": "motivo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1914c74e-59b5-458d-9e70-4301d36aece7", + "DeletedAt": null, + "LexemeForm": { + "seh": "phuli" + }, + "CitationForm": { + "seh": "mphuli" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c7f7bef-ff98-4eae-a377-d1249ab9a97f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1914c74e-59b5-458d-9e70-4301d36aece7", + "Definition": {}, + "Gloss": { + "en": "steer", + "pt": "boi" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "80ba7914-086b-4f4f-8270-3d34f40da475", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16 (mphulu); Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "1c7f7bef-ff98-4eae-a377-d1249ab9a97f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "422fb408-c22d-426f-924d-190c81a4da34", + "DeletedAt": null, + "LexemeForm": { + "seh": "phuno" + }, + "CitationForm": { + "seh": "mphuno" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "efa90080-56eb-4e15-a23b-b4eb8b46e3c6", + "Order": 1, + "DeletedAt": null, + "EntryId": "422fb408-c22d-426f-924d-190c81a4da34", + "Definition": {}, + "Gloss": { + "en": "nose", + "pt": "nariz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c9c24b52-6633-461c-9bc6-1192f63ea9e6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "efa90080-56eb-4e15-a23b-b4eb8b46e3c6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "897f092e-1a81-4048-9dd2-fd5be8a95d2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "pini" + }, + "CitationForm": { + "seh": "mpini" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea684ee3-06d3-4063-afbb-43f292bab934", + "Order": 1, + "DeletedAt": null, + "EntryId": "897f092e-1a81-4048-9dd2-fd5be8a95d2d", + "Definition": {}, + "Gloss": { + "en": "hoe-handle", + "pt": "cabo de enxada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "347f797e-758e-489b-89c0-3e1710d373bf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ea684ee3-06d3-4063-afbb-43f292bab934", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7482b8bd-5e7d-4636-9de0-d4dba36cee58", + "DeletedAt": null, + "LexemeForm": { + "seh": "pira" + }, + "CitationForm": { + "seh": "mpira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5303273f-e59f-4559-a7b9-3ed8c67e51b9", + "Order": 1, + "DeletedAt": null, + "EntryId": "7482b8bd-5e7d-4636-9de0-d4dba36cee58", + "Definition": {}, + "Gloss": { + "en": "rubber", + "pt": "borracha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "58c344ec-39ae-4c51-8f19-91071a5ba1fe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5303273f-e59f-4559-a7b9-3ed8c67e51b9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "34597aa1-d9f2-4c79-8021-fe885867f21c", + "DeletedAt": null, + "LexemeForm": { + "seh": "pitamiti" + }, + "CitationForm": { + "seh": "mpitamiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3b1b4dd2-b71d-475c-b4ed-9029d40d6706", + "Order": 1, + "DeletedAt": null, + "EntryId": "34597aa1-d9f2-4c79-8021-fe885867f21c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Giraffa camelopardalis", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "giraffe", + "pt": "girafe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0c09597d-76ef-496a-9c00-1c26e3f2e27a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "3b1b4dd2-b71d-475c-b4ed-9029d40d6706", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "559c30da-70fb-483b-8657-86911dc2e070", + "DeletedAt": null, + "LexemeForm": { + "seh": "porofeta" + }, + "CitationForm": { + "seh": "mporofeta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8de9acbd-0b74-4049-953c-071c405075b0", + "Order": 1, + "DeletedAt": null, + "EntryId": "559c30da-70fb-483b-8657-86911dc2e070", + "Definition": {}, + "Gloss": { + "en": "prophet", + "pt": "profeta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2b001a62-2118-4ac7-b4c3-4933b0ab26a4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8de9acbd-0b74-4049-953c-071c405075b0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a676fa4b-dabc-42f4-a9da-4e5213d06b8b", + "DeletedAt": null, + "LexemeForm": { + "seh": "psimbo" + }, + "CitationForm": { + "seh": "mpsimbo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "12ce5655-1077-43f3-a428-865c2382c5e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "a676fa4b-dabc-42f4-a9da-4e5213d06b8b", + "Definition": {}, + "Gloss": { + "en": "walking stick", + "pt": "bengala" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b4ea365f-be38-480b-9dbd-b2f08b66a35e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "12ce5655-1077-43f3-a428-865c2382c5e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2704aee-d5d9-4fbc-a1d7-3d02f07e080e", + "DeletedAt": null, + "LexemeForm": { + "seh": "psompson" + }, + "CitationForm": { + "seh": "mpsompsona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bd155a2e-4da5-4494-b51f-f7bc9c45af90", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2704aee-d5d9-4fbc-a1d7-3d02f07e080e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "suck mucus from a baby\u0027s nose", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "suck", + "pt": "chupar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "bbb897b5-f09b-4263-9f81-826ca61084f1", + "Name": { + "en": "Cleaning" + }, + "Code": "5.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "33eca2c1-3c51-428e-9ee3-c9e69b97ed4a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bd155a2e-4da5-4494-b51f-f7bc9c45af90", + "DeletedAt": null + } + ] + }, + { + "Id": "8b7f1749-dcc7-449d-8cf4-0f6e4388567d", + "Order": 2, + "DeletedAt": null, + "EntryId": "e2704aee-d5d9-4fbc-a1d7-3d02f07e080e", + "Definition": {}, + "Gloss": { + "en": "kiss", + "pt": "beijar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "419935a4-5514-4faa-afe8-434bb2af7276", + "DeletedAt": null, + "LexemeForm": { + "seh": "pulumusi" + }, + "CitationForm": { + "seh": "mpulumusi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c5b6e48-e724-4096-8551-38adf6522032", + "Order": 1, + "DeletedAt": null, + "EntryId": "419935a4-5514-4faa-afe8-434bb2af7276", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one who rescures, savior", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rescuer", + "pt": "salvador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "badb5e1d-ccf8-4822-8b59-3035b61fab41", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0c5b6e48-e724-4096-8551-38adf6522032", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f402761-f890-4caf-9000-f68c76072d02", + "DeletedAt": null, + "LexemeForm": { + "seh": "punga" + }, + "CitationForm": { + "seh": "mpunga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "357da00b-4a0a-416b-b7d5-6715c0bcab9f", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f402761-f890-4caf-9000-f68c76072d02", + "Definition": {}, + "Gloss": { + "en": "rice", + "pt": "arroz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f7a29316-4728-4c41-973a-dcc0b27759dc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "357da00b-4a0a-416b-b7d5-6715c0bcab9f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ae78a1a-655b-4f25-b861-5599bc0fd5e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpupwira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "988e3974-d24e-4b28-a11d-874f58604081", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ae78a1a-655b-4f25-b861-5599bc0fd5e9", + "Definition": {}, + "Gloss": { + "en": "chicken", + "pt": "galinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ee0554b1-28d1-40d7-a316-3be41f6bd336", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26;", + "Ws": "en" + } + ] + }, + "SenseId": "988e3974-d24e-4b28-a11d-874f58604081", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30caab0e-4a54-44ba-8eeb-35a1b69ac231", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "ee2d9aed-4390-4e1e-a980-35dfa240389b", + "Order": 1, + "DeletedAt": null, + "EntryId": "30caab0e-4a54-44ba-8eeb-35a1b69ac231", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "2daa296d-5b51-4db0-a4b4-8449bcf151d7", + "Order": 2, + "DeletedAt": null, + "EntryId": "30caab0e-4a54-44ba-8eeb-35a1b69ac231", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "474bf116-731a-4e42-ab6a-f96c1624467d", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "9f3296d7-a26e-4eb7-afd1-8dbfea7f1b35", + "Order": 1, + "DeletedAt": null, + "EntryId": "474bf116-731a-4e42-ab6a-f96c1624467d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "em", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "476a998a-4b01-4382-9268-9eac26f2cc6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "dce82f6a-5be2-48e5-ab33-6a7a8ade9dc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "476a998a-4b01-4382-9268-9eac26f2cc6a", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "364ab0ef-fa39-447f-9c41-d78e853f381f", + "Order": 2, + "DeletedAt": null, + "EntryId": "476a998a-4b01-4382-9268-9eac26f2cc6a", + "Definition": {}, + "Gloss": { + "en": "3S\u002B1", + "pt": "3S\u002B1" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d273928-6319-43ab-8055-3fd58be1d0cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1411b5e7-b815-4269-8d39-6d3bac6ae96d", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d273928-6319-43ab-8055-3fd58be1d0cf", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6283da64-0a0e-4aad-adca-cb7aff6a4e13", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "b452249d-5017-4d97-9f0d-447aed630bf3", + "Order": 1, + "DeletedAt": null, + "EntryId": "6283da64-0a0e-4aad-adca-cb7aff6a4e13", + "Definition": { + "en": { + "Spans": [ + { + "Text": "second person plural, \u0022you\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "segunda pessoa plural, \u0022voce\u0302s\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2P", + "pt": "2P" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5f2e94c8-6d26-4457-930d-92a6b42d2bb1", + "Order": 1, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3772337f-c06f-4b59-952f-dbef86b873c2", + "Order": 2, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "4537b0a3-9b5b-4e72-b418-0552ef04aa72", + "Order": 3, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "0b76d8e9-2402-4147-ab7d-b2aebab1da19", + "Order": 4, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "01a8a3b9-3c28-409b-ae74-34b50a0ccca8", + "Order": 5, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2a90aca-1c65-4a90-955a-4ffe3ec34185", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "712de4ef-13ce-4516-a450-4f4e3aa1c027", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2a90aca-1c65-4a90-955a-4ffe3ec34185", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in, into", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "em", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "in", + "pt": "em" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f4864315-6769-4836-bb01-ee069d68dab4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "712de4ef-13ce-4516-a450-4f4e3aa1c027", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1beac40-b5b6-4cc6-99cc-85c399fdc9d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "mubvi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "13c46c1a-2ac2-45df-92be-c20dc7e0d86c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1beac40-b5b6-4cc6-99cc-85c399fdc9d1", + "Definition": {}, + "Gloss": { + "en": "hearer", + "pt": "ouvinte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "75fafeed-f5d1-4783-aa95-df13c58c37c2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "13c46c1a-2ac2-45df-92be-c20dc7e0d86c", + "DeletedAt": null + } + ] + }, + { + "Id": "57294a93-e733-48c9-b02a-56cad22c300b", + "Order": 2, + "DeletedAt": null, + "EntryId": "b1beac40-b5b6-4cc6-99cc-85c399fdc9d1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "person who obeys", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pessoa obediente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "obedient", + "pt": "obediente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": { + "seh": "mudzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f665aec3-2f08-4a10-b642-2f66e15e2bff", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "familia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "family", + "pt": "familia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2de4c40b-611d-40f0-802b-dab4bf184cc2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f665aec3-2f08-4a10-b642-2f66e15e2bff", + "DeletedAt": null + } + ] + }, + { + "Id": "70bb1144-bbca-4db0-97ad-a74eb8f8b25b", + "Order": 2, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "lar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "home", + "pt": "lar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "9643cb57-d654-47bd-90d3-a518f9a215c8", + "Order": 3, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "em plural significa aldeia ou povoac\u0327a\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "house", + "pt": "casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "06101c3f-a84c-4e12-a07c-dced6a45c73e", + "Order": 4, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": {}, + "Gloss": { + "en": "home land", + "pt": "terra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef7a5211-d4c0-49df-8fbf-e1ba7adab0a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "muikh" + }, + "CitationForm": { + "seh": "muikha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e00f99ea-0c54-4d3d-8f24-3f8dc374945c", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef7a5211-d4c0-49df-8fbf-e1ba7adab0a4", + "Definition": {}, + "Gloss": { + "en": "put", + "pt": "por" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0379b533-ff8c-4f6a-ab16-b93be1a4018d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bwerani mumuikhe manja anu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Vem por as suas ma\u0303os.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e00f99ea-0c54-4d3d-8f24-3f8dc374945c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dab39c65-22a7-4e91-81fd-82cfa178a506", + "DeletedAt": null, + "LexemeForm": { + "seh": "ukho" + }, + "CitationForm": { + "seh": "mukho" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f168eebc-3acb-494f-a2da-d9609f6649b4", + "Order": 1, + "DeletedAt": null, + "EntryId": "dab39c65-22a7-4e91-81fd-82cfa178a506", + "Definition": { + "en": { + "Spans": [ + { + "Text": "taboo, things forbiden after a birth or death", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "taboo", + "pt": "taboo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "24361be2-49be-4860-bb56-4e46dd1e8b0c", + "Name": { + "en": "Taboo" + }, + "Code": "4.9.5.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3b37edd0-96dd-4018-ac45-395432fa4f3b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f168eebc-3acb-494f-a2da-d9609f6649b4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb743dad-7e3b-4d37-aafe-e7a24939ea58", + "DeletedAt": null, + "LexemeForm": { + "seh": "lambe" + }, + "CitationForm": { + "seh": "mulambe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae8a5db3-1ba4-4825-8ee9-29f59d4c08b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb743dad-7e3b-4d37-aafe-e7a24939ea58", + "Definition": {}, + "Gloss": { + "en": "Boabab tree", + "pt": "embondeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3f3f178-2bb6-42ee-9bdd-5461214d71ee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ae8a5db3-1ba4-4825-8ee9-29f59d4c08b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fe3514ca-e963-4c15-9d26-badc670770f3", + "DeletedAt": null, + "LexemeForm": { + "seh": "lamu" + }, + "CitationForm": { + "seh": "mulamu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f38e8bd0-8595-4387-bbf7-853da1166ab1", + "Order": 1, + "DeletedAt": null, + "EntryId": "fe3514ca-e963-4c15-9d26-badc670770f3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "brother-in-law", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "bro-in-law", + "pt": "cunhado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "89ad4e41-bf08-4d93-a4f3-f72e8cc62bed", + "Name": { + "en": "In-law" + }, + "Code": "4.1.9.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "90cde2ca-0580-42fa-8c32-205edfc7ee7f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook", + "Ws": "en" + } + ] + }, + "SenseId": "f38e8bd0-8595-4387-bbf7-853da1166ab1", + "DeletedAt": null + } + ] + }, + { + "Id": "404d6557-8056-4240-bc97-83bfa1d1f1b5", + "Order": 2, + "DeletedAt": null, + "EntryId": "fe3514ca-e963-4c15-9d26-badc670770f3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sister-in-law", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sis-in-law", + "pt": "cunhada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbd5b29a-96fd-4ae6-9b39-05431ccf9fbf", + "DeletedAt": null, + "LexemeForm": { + "seh": "landu" + }, + "CitationForm": { + "seh": "mulandu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d90b15f9-cd4f-457f-bf85-1482092df52f", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbd5b29a-96fd-4ae6-9b39-05431ccf9fbf", + "Definition": {}, + "Gloss": { + "en": "legal problem", + "pt": "questa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "85214614-ab45-4805-9014-092750d47511", + "Name": { + "en": "Trial" + }, + "Code": "4.7.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ccaf39c2-b1f7-4294-87c2-c7f8bc0a1b53", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "d90b15f9-cd4f-457f-bf85-1482092df52f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1b0490b4-8857-4f7c-a945-44969d464992", + "DeletedAt": null, + "LexemeForm": { + "seh": "lendo" + }, + "CitationForm": { + "seh": "mulendo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ecc01f99-48a1-461d-b8b2-46b4c5a30477", + "Order": 1, + "DeletedAt": null, + "EntryId": "1b0490b4-8857-4f7c-a945-44969d464992", + "Definition": {}, + "Gloss": { + "en": "guest", + "pt": "ho\u0301spede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b56837f-a5b3-4cc5-a40e-d9d5387e9b7f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ecc01f99-48a1-461d-b8b2-46b4c5a30477", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5c4a4b2b-3219-416e-a016-1f37f59583b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "lengi" + }, + "CitationForm": { + "seh": "mulengi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3b494e2-9733-4146-a050-7d78eb3a38ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "5c4a4b2b-3219-416e-a016-1f37f59583b3", + "Definition": {}, + "Gloss": { + "en": "creator", + "pt": "criador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d9a151fc-254a-45e4-b484-8f472bd6df1f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "aponta.doc", + "Ws": "en" + } + ] + }, + "SenseId": "b3b494e2-9733-4146-a050-7d78eb3a38ce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3292a600-f89c-4a74-9f52-b2b405aafab0", + "DeletedAt": null, + "LexemeForm": { + "seh": "limba" + }, + "CitationForm": { + "seh": "mulimba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32e7178d-8d3c-464c-9a73-999018fc8600", + "Order": 1, + "DeletedAt": null, + "EntryId": "3292a600-f89c-4a74-9f52-b2b405aafab0", + "Definition": {}, + "Gloss": { + "en": "fox", + "pt": "raposa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "afe997eb-d751-4732-b3ed-773745479006", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "32e7178d-8d3c-464c-9a73-999018fc8600", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0b20a35d-5c7a-4f77-bf84-4b76714b67ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "limi" + }, + "CitationForm": { + "seh": "mulimi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "641c6360-fd59-4722-bd66-0172e3106381", + "Order": 1, + "DeletedAt": null, + "EntryId": "0b20a35d-5c7a-4f77-bf84-4b76714b67ae", + "Definition": {}, + "Gloss": { + "en": "farmer", + "pt": "lavrador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b6f0521f-56d0-428e-a154-550f5ada8889", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "641c6360-fd59-4722-bd66-0172e3106381", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "53f208d7-acb6-46a0-b8f6-28262838a5b5", + "DeletedAt": null, + "LexemeForm": { + "seh": "linga" + }, + "CitationForm": { + "seh": "mulinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ec79a63-c04d-4cad-89a8-8202b248e9d6", + "Order": 1, + "DeletedAt": null, + "EntryId": "53f208d7-acb6-46a0-b8f6-28262838a5b5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small clay container for water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "jar", + "pt": "bilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7184a1b4-1595-4ae5-8385-504d94dc450d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "0ec79a63-c04d-4cad-89a8-8202b248e9d6", + "DeletedAt": null + } + ] + }, + { + "Id": "2335ea36-7ae3-4407-96c0-6c56ab0ab85f", + "Order": 2, + "DeletedAt": null, + "EntryId": "53f208d7-acb6-46a0-b8f6-28262838a5b5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "banana stem", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cacho de banana", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stem", + "pt": "cacho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "11473a37-f10a-4201-b569-afd4b994373c", + "DeletedAt": null, + "LexemeForm": { + "seh": "lomo" + }, + "CitationForm": { + "seh": "mulomo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b00452e-9f58-40ee-b5bc-144ca16cfa99", + "Order": 1, + "DeletedAt": null, + "EntryId": "11473a37-f10a-4201-b569-afd4b994373c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "exterior of the mouth; lips", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "parte fora de boca; labios", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "mouth", + "pt": "boca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3035854-1d0a-4748-8f23-d48822e1529d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Orth; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4b00452e-9f58-40ee-b5bc-144ca16cfa99", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ee03e16-8f98-4ce4-803d-2ffe7c1be853", + "DeletedAt": null, + "LexemeForm": { + "seh": "lopa" + }, + "CitationForm": { + "seh": "mulopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7b534357-4f34-4296-83f7-d34117562e34", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ee03e16-8f98-4ce4-803d-2ffe7c1be853", + "Definition": { + "en": { + "Spans": [ + { + "Text": "blood of a slain animal that is eaten", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "sangue de animal que e\u0301 comdida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "animal", + "pt": "sangue" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dd6f506a-ac4b-47a6-950d-736ef40d7883", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7b534357-4f34-4296-83f7-d34117562e34", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "056df796-f9bb-4b07-a2de-6db782006f6d", + "DeletedAt": null, + "LexemeForm": { + "seh": "lungu" + }, + "CitationForm": { + "seh": "Mulungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4548c5d-eb50-42fc-aa93-d77c26546fad", + "Order": 1, + "DeletedAt": null, + "EntryId": "056df796-f9bb-4b07-a2de-6db782006f6d", + "Definition": {}, + "Gloss": { + "en": "God", + "pt": "Deus" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b60bf544-7774-4623-8c67-19b32b53dea2", + "Name": { + "en": "God" + }, + "Code": "4.9.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4585f851-94bf-4e6e-95f0-5996704ff55e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "c4548c5d-eb50-42fc-aa93-d77c26546fad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8aa9129e-e49c-459c-a5dc-f9f032f8f239", + "DeletedAt": null, + "LexemeForm": { + "seh": "mulungu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "908ddf2c-332a-4e9f-8de1-27614a904271", + "Order": 1, + "DeletedAt": null, + "EntryId": "8aa9129e-e49c-459c-a5dc-f9f032f8f239", + "Definition": {}, + "Gloss": { + "en": "rain", + "pt": "chuva" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7db96fd4-8dbb-489f-b26b-8cb566035f4f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu abvumba pikulu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Chuva choveu muito.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "908ddf2c-332a-4e9f-8de1-27614a904271", + "DeletedAt": null + } + ] + }, + { + "Id": "0331c633-2be2-47d7-8ff0-1274ed7032b3", + "Order": 2, + "DeletedAt": null, + "EntryId": "8aa9129e-e49c-459c-a5dc-f9f032f8f239", + "Definition": {}, + "Gloss": { + "en": "God" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0e015bc-7813-4b88-b177-7ade17468421", + "DeletedAt": null, + "LexemeForm": { + "seh": "mumphu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f03e03a1-ebda-4820-b607-fdf73a942456", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0e015bc-7813-4b88-b177-7ade17468421", + "Definition": {}, + "Gloss": { + "en": "entire", + "pt": "inteiro" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ec3b1a01-5359-4c61-9768-e8ce336e7ccf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ntsiku ya mumphu, anthu a mumphu, nyama za mumphu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "f03e03a1-ebda-4820-b607-fdf73a942456", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "89434fa7-3da1-4080-806d-b9b1a73b8b45", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "924d0672-d2ff-4b6d-81fc-d4799ab39877", + "Order": 1, + "DeletedAt": null, + "EntryId": "89434fa7-3da1-4080-806d-b9b1a73b8b45", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the midst of", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "no meio de", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "in", + "pt": "em" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "2c21fc5d-994d-43b6-b2c3-bf6328e19ca3", + "Order": 2, + "DeletedAt": null, + "EntryId": "89434fa7-3da1-4080-806d-b9b1a73b8b45", + "Definition": {}, + "Gloss": { + "en": "concerning", + "pt": "acerca de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4462b84-a7ca-4837-80f2-990dbe91f335", + "DeletedAt": null, + "LexemeForm": { + "seh": "nda" + }, + "CitationForm": { + "seh": "munda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bd970f05-4571-49f5-8d72-9edcb5a29ad9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4462b84-a7ca-4837-80f2-990dbe91f335", + "Definition": {}, + "Gloss": { + "en": "field", + "pt": "machamba" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f128896-bfaa-4fff-8806-39973434d2ca", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:28", + "Ws": "en" + } + ] + }, + "SenseId": "bd970f05-4571-49f5-8d72-9edcb5a29ad9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05a63125-e37b-42f2-bd63-9243563e2973", + "DeletedAt": null, + "LexemeForm": { + "seh": "munga" + }, + "CitationForm": { + "seh": "munga" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8b42f1fc-1bc7-45b9-9184-2322751e795b", + "Order": 1, + "DeletedAt": null, + "EntryId": "05a63125-e37b-42f2-bd63-9243563e2973", + "Definition": {}, + "Gloss": { + "en": "when", + "pt": "quando" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fa641d9b-4930-495c-9c5b-ab31d9401661", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8b42f1fc-1bc7-45b9-9184-2322751e795b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "080950b1-9b36-472b-bd4e-9b58025e538e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nga" + }, + "CitationForm": { + "seh": "munga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "33678318-e191-47d2-a4a9-dc78b956e157", + "Order": 1, + "DeletedAt": null, + "EntryId": "080950b1-9b36-472b-bd4e-9b58025e538e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "thorn of plant or fish", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "thorn", + "pt": "espinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe647905-7435-44c8-9dff-ec34d11c9185", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:15; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "33678318-e191-47d2-a4a9-dc78b956e157", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b4eecca2-5efc-49e1-84e4-927595843b76", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthu" + }, + "CitationForm": { + "seh": "munthu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f9ea974-8b29-46fd-b490-063e7f63a89e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b4eecca2-5efc-49e1-84e4-927595843b76", + "Definition": {}, + "Gloss": { + "en": "person", + "pt": "pessoa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68f165e5-5d77-4639-bc89-624e95487fdf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,14; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0f9ea974-8b29-46fd-b490-063e7f63a89e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "606684b4-a469-4147-9413-b9f420559677", + "DeletedAt": null, + "LexemeForm": { + "seh": "munyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32460030-3965-4ee7-a77b-17f8090d2d13", + "Order": 1, + "DeletedAt": null, + "EntryId": "606684b4-a469-4147-9413-b9f420559677", + "Definition": {}, + "Gloss": { + "en": "salt", + "pt": "sal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "7beca90c-3671-4b3c-bf9a-fb8f08ff914b", + "Name": { + "en": "Salt" + }, + "Code": "5.2.3.3.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "74d1cb63-55c5-4798-9913-38353826dc49", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13; wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "32460030-3965-4ee7-a77b-17f8090d2d13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78c71cd8-08e7-4a62-a287-fa7f7d7ea9b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "oneri" + }, + "CitationForm": { + "seh": "muoneri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "341b8689-f950-49c5-9640-16886ac1afbd", + "Order": 1, + "DeletedAt": null, + "EntryId": "78c71cd8-08e7-4a62-a287-fa7f7d7ea9b7", + "Definition": {}, + "Gloss": { + "en": "guard", + "pt": "guarda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f65716b3-e7c4-4240-b01b-3d771894cc70", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "341b8689-f950-49c5-9640-16886ac1afbd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5557b63-6ba0-4d3b-81df-bdb2aa5c2193", + "DeletedAt": null, + "LexemeForm": { + "seh": "oni" + }, + "CitationForm": { + "seh": "muoni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42c30da5-0ade-4f3e-a11d-8d7c275ab9ed", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5557b63-6ba0-4d3b-81df-bdb2aa5c2193", + "Definition": {}, + "Gloss": { + "en": "reward", + "pt": "galada\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "31834ac9-b990-4b44-abbe-4ec84259a48e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "42c30da5-0ade-4f3e-a11d-8d7c275ab9ed", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "94200ce4-e4ce-43f0-9fda-0d6101ee7c49", + "DeletedAt": null, + "LexemeForm": { + "seh": "rope" + }, + "CitationForm": { + "seh": "murope" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a5dace3-e179-4e9c-9cd8-49f8b26a382d", + "Order": 1, + "DeletedAt": null, + "EntryId": "94200ce4-e4ce-43f0-9fda-0d6101ee7c49", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "segundo sementeira do ano, april-maio, depois de premeira cheia do rios", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "autumn", + "pt": "octono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c546f566-1262-421c-ae93-4538bff64e75", + "DeletedAt": null, + "LexemeForm": { + "seh": "mus" + }, + "CitationForm": { + "seh": "musa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31fd829f-9a38-48f3-be66-5673df90f25d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c546f566-1262-421c-ae93-4538bff64e75", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ask for a girl\u0027s hand in marriage, give condolences,", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "propose", + "pt": "propor casamento" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ceecc71d-2295-4591-bb0b-55ffcf4bd61d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "31fd829f-9a38-48f3-be66-5673df90f25d", + "DeletedAt": null + } + ] + }, + { + "Id": "62b1a7ca-26cd-4c6a-94ce-3db720f3a146", + "Order": 2, + "DeletedAt": null, + "EntryId": "c546f566-1262-421c-ae93-4538bff64e75", + "Definition": { + "en": { + "Spans": [ + { + "Text": "requirement to have relations with brother of one\u0027s dead husband with option to remain married", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "marry in-law", + "pt": "casar cunhado" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06e398d6-a16f-42c5-855d-790622cb6ec1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": { + "seh": "muti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "388e6630-6231-4ea8-86a6-1a98d2d01126", + "Order": 1, + "DeletedAt": null, + "EntryId": "06e398d6-a16f-42c5-855d-790622cb6ec1", + "Definition": {}, + "Gloss": { + "en": "tree", + "pt": "arvora" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "0ee5b933-f1ab-485f-894a-51fe239cb726", + "Name": { + "en": "Tree" + }, + "Code": "1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "531af868-b5fb-41c2-ba50-764458f9102f", + "Name": { + "en": "Bush, shrub" + }, + "Code": "1.5.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3079e659-8dc4-4280-b44c-024b91868ca2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:15; Wordlist; Orth; Nya; Sapa\u0303o", + "Ws": "en" + } + ] + }, + "SenseId": "388e6630-6231-4ea8-86a6-1a98d2d01126", + "DeletedAt": null + } + ] + }, + { + "Id": "c4d3b653-3207-4b86-942e-080107bd75c3", + "Order": 2, + "DeletedAt": null, + "EntryId": "06e398d6-a16f-42c5-855d-790622cb6ec1", + "Definition": {}, + "Gloss": { + "en": "plant", + "pt": "planta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "661721b0-a4cd-4a11-b949-02e59bc569bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "muts" + }, + "CitationForm": { + "seh": "mutsa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d404c710-b362-43d5-b616-7b1e72686914", + "Order": 1, + "DeletedAt": null, + "EntryId": "661721b0-a4cd-4a11-b949-02e59bc569bc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to ask a visitor to report how things are going", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pedir relato\u0301rio", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "request news", + "pt": "pedir relato\u0301rio" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0cec00c3-d005-4645-84df-79184ae4d768", + "DeletedAt": null, + "LexemeForm": { + "seh": "yy" + }, + "CitationForm": { + "seh": "muya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "99e2fd45-de4f-443f-83d9-cd97bdf26699", + "Order": 1, + "DeletedAt": null, + "EntryId": "0cec00c3-d005-4645-84df-79184ae4d768", + "Definition": {}, + "Gloss": { + "en": "wind", + "pt": "vento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4", + "Name": { + "en": "Wind" + }, + "Code": "1.1.3.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "05e05a33-3018-47aa-8e7a-d263b93bd01c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Muya wa Mulengi wampita nkati mwa ntima mwace.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "O espi\u0301rito de Deus entrou dentro do corac\u0327a\u0303o dele.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "99e2fd45-de4f-443f-83d9-cd97bdf26699", + "DeletedAt": null + } + ] + }, + { + "Id": "a8047ab7-12d6-478e-9278-7743d479ec39", + "Order": 2, + "DeletedAt": null, + "EntryId": "0cec00c3-d005-4645-84df-79184ae4d768", + "Definition": {}, + "Gloss": { + "en": "air", + "pt": "ar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "935c0a9c-8294-4ed7-8dac-6c9b6addd09e", + "DeletedAt": null, + "LexemeForm": { + "seh": "mw" + }, + "CitationForm": { + "seh": "mwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "076b345f-c4d7-4b07-885a-532a69eb125d", + "Order": 1, + "DeletedAt": null, + "EntryId": "935c0a9c-8294-4ed7-8dac-6c9b6addd09e", + "Definition": {}, + "Gloss": { + "en": "drink", + "pt": "beber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "6de42a33-35b2-49c6-b2c4-fa9c0c5094f0", + "Name": { + "en": "Drink" + }, + "Code": "5.2.2.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "58a95cff-ad56-422b-9e4c-af7f09e59415", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "076b345f-c4d7-4b07-885a-532a69eb125d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49860b06-c3d1-447b-aec1-ceebd38bde45", + "DeletedAt": null, + "LexemeForm": { + "seh": "adia" + }, + "CitationForm": { + "seh": "mwadia" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ba8a7d2-70af-4f14-a5ad-278d876ca7d6", + "Order": 1, + "DeletedAt": null, + "EntryId": "49860b06-c3d1-447b-aec1-ceebd38bde45", + "Definition": {}, + "Gloss": { + "en": "dugout canoe", + "pt": "canoa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e9aa27c2-75f4-4973-a2be-78b92dcc7b87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5ba8a7d2-70af-4f14-a5ad-278d876ca7d6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06180070-be38-46d4-9efe-f00644614b6f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ala" + }, + "CitationForm": { + "seh": "mwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cfc7cb6e-8204-4830-89ef-aa7830363a26", + "Order": 1, + "DeletedAt": null, + "EntryId": "06180070-be38-46d4-9efe-f00644614b6f", + "Definition": {}, + "Gloss": { + "en": "stone", + "pt": "pedra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "0f07adb7-4387-4723-9800-8362e825ad45", + "Name": { + "en": "Rock" + }, + "Code": "1.2.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fe807ca3-5cb9-43ba-93ec-c2def7b023d6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "cfc7cb6e-8204-4830-89ef-aa7830363a26", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c3cc6b53-9a30-458e-a0df-4a2c14c33dc3", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwal" + }, + "CitationForm": { + "seh": "mwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9fce6360-d80f-49b6-a498-d3d726f75294", + "Order": 1, + "DeletedAt": null, + "EntryId": "c3cc6b53-9a30-458e-a0df-4a2c14c33dc3", + "Definition": {}, + "Gloss": { + "en": "divorce", + "pt": "divorciar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5fca6ff9-85cd-4fe5-9a1a-509f372fc580", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9fce6360-d80f-49b6-a498-d3d726f75294", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c5359cee-a11e-49a3-9cbf-719b6079c4f7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwalan" + }, + "CitationForm": { + "seh": "mwalana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3ff43d51-b217-43f3-ab1c-0cb615a286e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c5359cee-a11e-49a3-9cbf-719b6079c4f7", + "Definition": {}, + "Gloss": { + "en": "divorce", + "pt": "divorciar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efdd4f64-e2f2-4358-bc72-8ad120fde978", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3ff43d51-b217-43f3-ab1c-0cb615a286e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77a4dd31-8594-4797-aa7d-82cb30ae6e9b", + "DeletedAt": null, + "LexemeForm": { + "seh": "amyali" + }, + "CitationForm": { + "seh": "mwali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa7a8c63-d69a-4759-87d8-34238f762bfd", + "Order": 1, + "DeletedAt": null, + "EntryId": "77a4dd31-8594-4797-aa7d-82cb30ae6e9b", + "Definition": {}, + "Gloss": { + "en": "girl", + "pt": "rapariga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "262c6b1b-90f6-442e-a3c3-1e16c396a4aa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:26", + "Ws": "en" + } + ] + }, + "SenseId": "aa7a8c63-d69a-4759-87d8-34238f762bfd", + "DeletedAt": null + } + ] + }, + { + "Id": "e9979cef-9619-4a0f-a40e-0f5fee9c7abc", + "Order": 2, + "DeletedAt": null, + "EntryId": "77a4dd31-8594-4797-aa7d-82cb30ae6e9b", + "Definition": {}, + "Gloss": { + "en": "virgin", + "pt": "donzela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "be5f54c0-b77f-4b8c-995a-a2d4bb57fce3", + "DeletedAt": null, + "LexemeForm": { + "seh": "ambo" + }, + "CitationForm": { + "seh": "mwambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cee4d065-378c-4326-aced-688a7ff09338", + "Order": 1, + "DeletedAt": null, + "EntryId": "be5f54c0-b77f-4b8c-995a-a2d4bb57fce3", + "Definition": {}, + "Gloss": { + "en": "law", + "pt": "lei" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "DeletedAt": null, + "LexemeForm": { + "seh": "ana" + }, + "CitationForm": { + "seh": "mwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "53786682-eef8-4218-90af-5487843ce2b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "Definition": {}, + "Gloss": { + "en": "child", + "pt": "crianc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3996b5d-e6b2-4498-b717-0ac11fa0d787", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Yana ana ana.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Yana has children.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Yana tem crianc\u0327as.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "53786682-eef8-4218-90af-5487843ce2b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "0a23a42b-20f0-4b5c-9950-19c84787010a", + "MaybeId": "0a23a42b-20f0-4b5c-9950-19c84787010a", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "ComponentSenseId": null, + "ComponentHeadword": "mwana" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91bdbf5e-249c-40e1-a7b5-f1b342601a14", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwana wa mamuna" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "4f26b963-72b1-4641-982e-ed005da28c13", + "Order": 1, + "DeletedAt": null, + "EntryId": "91bdbf5e-249c-40e1-a7b5-f1b342601a14", + "Definition": {}, + "Gloss": { + "en": "son", + "pt": "filho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "48e561e2-fe23-499a-8000-da2f081b6532", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4f26b963-72b1-4641-982e-ed005da28c13", + "DeletedAt": null + } + ] + }, + { + "Id": "86d323e5-7bc2-49b4-8fdd-6f71388040e6", + "Order": 2, + "DeletedAt": null, + "EntryId": "91bdbf5e-249c-40e1-a7b5-f1b342601a14", + "Definition": {}, + "Gloss": { + "en": "husband\u0027s son", + "pt": "filho de marido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ana-cinthu" + }, + "CitationForm": { + "seh": "mwana-cinthu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "89941ef6-3dc0-4209-8c58-663a48ff909f", + "Order": 1, + "DeletedAt": null, + "EntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "Definition": {}, + "Gloss": { + "en": "owner", + "pt": "dono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "489e9793-4a92-4562-9bcb-a1f297eec6b7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mwana-cinthu nyumba", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "dono de casa", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "89941ef6-3dc0-4209-8c58-663a48ff909f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "0a23a42b-20f0-4b5c-9950-19c84787010a", + "MaybeId": "0a23a42b-20f0-4b5c-9950-19c84787010a", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "ComponentSenseId": null, + "ComponentHeadword": "mwana" + }, + { + "Id": "bc019346-e8d9-49ad-839d-b7fa2b28f0e4", + "MaybeId": "bc019346-e8d9-49ad-839d-b7fa2b28f0e4", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "ComponentSenseId": null, + "ComponentHeadword": "cinthu" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "25fc79e8-41f2-450f-8970-d8f79d028816", + "DeletedAt": null, + "LexemeForm": { + "seh": "ana-mobvi" + }, + "CitationForm": { + "seh": "mwana-mobvi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ab0f6a4-dddc-453f-b697-9b81d146dd74", + "Order": 1, + "DeletedAt": null, + "EntryId": "25fc79e8-41f2-450f-8970-d8f79d028816", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a person who always accompanies another, side kick", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "adjunct", + "pt": "adjunto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96320fc1-0114-456d-a552-533c53f64b68", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0ab0f6a4-dddc-453f-b697-9b81d146dd74", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9ec35eb-e24f-437e-833e-0f35fc3d8684", + "DeletedAt": null, + "LexemeForm": { + "seh": "anambwa" + }, + "CitationForm": { + "seh": "mwanambwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6824a970-23bb-4beb-b27f-9eac8bffec68", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9ec35eb-e24f-437e-833e-0f35fc3d8684", + "Definition": {}, + "Gloss": { + "en": "dog", + "pt": "ca\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26fa18cb-f9e6-409f-8498-8158e014530e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "6824a970-23bb-4beb-b27f-9eac8bffec68", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a36c167-d91b-41a3-9052-001d4e25de67", + "DeletedAt": null, + "LexemeForm": { + "seh": "anakati" + }, + "CitationForm": { + "seh": "mwanankati" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "415d29e4-86f1-4212-95db-6a46fe5f3113", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a36c167-d91b-41a3-9052-001d4e25de67", + "Definition": {}, + "Gloss": { + "en": "messenger", + "pt": "mensageiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f1da3cfc-e43c-4a11-8d4f-7ccc1d5ffb51", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "415d29e4-86f1-4212-95db-6a46fe5f3113", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3e3514a5-0934-4aeb-b116-9f835fa1f485", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwanyik" + }, + "CitationForm": { + "seh": "mwanyika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "995cf936-0b6c-4adf-944b-e4df71b077c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "3e3514a5-0934-4aeb-b116-9f835fa1f485", + "Definition": {}, + "Gloss": { + "en": "greet", + "pt": "cumprimentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ccd1516b-d20e-4ad4-be22-444f0bae05ac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "995cf936-0b6c-4adf-944b-e4df71b077c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5325b505-35a9-42dd-9f05-c0768594d6b4", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwaz" + }, + "CitationForm": { + "seh": "mwaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "66eb9ca3-95dd-4fe1-9094-63afa7c3e680", + "Order": 1, + "DeletedAt": null, + "EntryId": "5325b505-35a9-42dd-9f05-c0768594d6b4", + "Definition": {}, + "Gloss": { + "en": "spread", + "pt": "esprelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "714f2180-3214-49bf-a801-fcb69f75d129", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "66eb9ca3-95dd-4fe1-9094-63afa7c3e680", + "DeletedAt": null + } + ] + }, + { + "Id": "18d57b4e-3f2e-4610-97f7-aba495ff2487", + "Order": 2, + "DeletedAt": null, + "EntryId": "5325b505-35a9-42dd-9f05-c0768594d6b4", + "Definition": {}, + "Gloss": { + "en": "broadcast news", + "pt": "divulgar noticias" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75f22a1d-3ed3-4173-9db1-53d413f9c301", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwazik" + }, + "CitationForm": { + "seh": "mwazika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "852e2a11-565d-4805-968f-190fd8762284", + "Order": 1, + "DeletedAt": null, + "EntryId": "75f22a1d-3ed3-4173-9db1-53d413f9c301", + "Definition": {}, + "Gloss": { + "en": "spread", + "pt": "esprelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bb8923d6-98ee-4e86-8360-2f2927df0d3e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "852e2a11-565d-4805-968f-190fd8762284", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "144ea68c-0d63-43fe-9b16-aadb666c6ba7", + "DeletedAt": null, + "LexemeForm": { + "seh": "endamberi" + }, + "CitationForm": { + "seh": "mwendamberi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "34c3242c-a674-4917-8e84-9e6a2accb8c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "144ea68c-0d63-43fe-9b16-aadb666c6ba7", + "Definition": {}, + "Gloss": { + "en": "whirlpool", + "pt": "redemoinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "be5af033-4860-46e3-8c8c-598746ccbe21", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "34c3242c-a674-4917-8e84-9e6a2accb8c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c0731683-a8fc-4433-b8c0-cba14ad4ea29", + "DeletedAt": null, + "LexemeForm": { + "seh": "endo" + }, + "CitationForm": { + "seh": "mwendo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88565280-c9db-42a1-8127-41bff919d2c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c0731683-a8fc-4433-b8c0-cba14ad4ea29", + "Definition": {}, + "Gloss": { + "en": "leg", + "pt": "perna" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16914b17-4b50-4163-97af-45ef1eb095c3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "88565280-c9db-42a1-8127-41bff919d2c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a8e2566-6b79-4f4a-be7e-4fbc94a76464", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwenemo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cb3d7dff-ae38-4b65-a5ac-008a70a561ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a8e2566-6b79-4f4a-be7e-4fbc94a76464", + "Definition": {}, + "Gloss": { + "en": "this very one", + "pt": "aquele mesmo" + }, + "PartOfSpeech": { + "Id": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "Name": { + "en": "Demonstrative6", + "pt": "Demonstrativo6" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "01f5804e-4fdc-473b-99c7-310a0be8b454", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwenikir" + }, + "CitationForm": { + "seh": "mwenikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "60410caf-4e30-421d-8379-d51dd28fba3e", + "Order": 1, + "DeletedAt": null, + "EntryId": "01f5804e-4fdc-473b-99c7-310a0be8b454", + "Definition": {}, + "Gloss": { + "en": "iluminate", + "pt": "illuminar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3101b654-cb18-42ff-90df-122863370043", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "60410caf-4e30-421d-8379-d51dd28fba3e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56627373-12c9-47ff-a42f-60efeaf94525", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwenye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc62d271-7625-47f5-8066-fc4fde24cf79", + "Order": 1, + "DeletedAt": null, + "EntryId": "56627373-12c9-47ff-a42f-60efeaf94525", + "Definition": {}, + "Gloss": { + "en": "muslim", + "pt": "muc\u0327ulmano" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ab8f5391-ad8b-42dc-a43c-22590a09ce77", + "Name": { + "en": "Islam" + }, + "Code": "4.9.7.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b3bc1f11-3a21-480e-ab43-11408ac28f1b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bc62d271-7625-47f5-8066-fc4fde24cf79", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad4706fa-233c-4931-9f84-a350317c6c22", + "DeletedAt": null, + "LexemeForm": { + "seh": "ezi" + }, + "CitationForm": { + "seh": "mwezi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b91c9f15-752a-43da-91b7-c3cc29b2633c", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad4706fa-233c-4931-9f84-a350317c6c22", + "Definition": {}, + "Gloss": { + "en": "moon", + "pt": "lua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "af70f8c3-357c-425c-82d2-698004ca687a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b91c9f15-752a-43da-91b7-c3cc29b2633c", + "DeletedAt": null + } + ] + }, + { + "Id": "0092d1f9-866f-4644-a648-bdc723461976", + "Order": 2, + "DeletedAt": null, + "EntryId": "ad4706fa-233c-4931-9f84-a350317c6c22", + "Definition": {}, + "Gloss": { + "en": "month", + "pt": "me\u0302s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e62ac7c-176f-480d-be1f-e6cc11fef4ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "imbi" + }, + "CitationForm": { + "seh": "mwimbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6ebf8305-6707-4317-ac40-0f30a3f592fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e62ac7c-176f-480d-be1f-e6cc11fef4ab", + "Definition": {}, + "Gloss": { + "en": "singer", + "pt": "cantor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e427aabb-ab53-4e46-b422-9e642dc76b7a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb; Moreira:14", + "Ws": "en" + } + ] + }, + "SenseId": "6ebf8305-6707-4317-ac40-0f30a3f592fc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0106b97-e8e0-493e-b9a1-21291e44fb56", + "DeletedAt": null, + "LexemeForm": { + "seh": "inji" + }, + "CitationForm": { + "seh": "mwinji" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b424532-f191-4a43-ab9b-9750458c38f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0106b97-e8e0-493e-b9a1-21291e44fb56", + "Definition": {}, + "Gloss": { + "en": "crowd", + "pt": "multida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9f0c511f-b3b5-4831-b9e2-d7316e0c9d91", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b424532-f191-4a43-ab9b-9750458c38f8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd10091a-0474-449b-80de-25ff205a9444", + "DeletedAt": null, + "LexemeForm": { + "seh": "dikhwa" + }, + "CitationForm": { + "seh": "n\u0027dikhwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a780e1c6-949e-467a-bd6a-17181cdec72c", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd10091a-0474-449b-80de-25ff205a9444", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild coconut tree", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "coqueiro bravo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "coconut tree", + "pt": "coqueiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90a0f3af-b788-4b24-b91f-7e3a1df82c5c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:15; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a780e1c6-949e-467a-bd6a-17181cdec72c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f876006-1922-49b7-83f7-4f954b77f1bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "kanwa" + }, + "CitationForm": { + "seh": "n\u0027kanwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e82993d5-549f-41b6-8844-105962d58f45", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f876006-1922-49b7-83f7-4f954b77f1bd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "mouth, refers to the interior part of the mouth", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "mouth inside", + "pt": "boca detro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "47fe87de-1a03-4613-9491-53b5209f2ee7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "e82993d5-549f-41b6-8844-105962d58f45", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35dcf61a-a85e-4a21-8852-43dd8cf37b74", + "DeletedAt": null, + "LexemeForm": { + "seh": "khole" + }, + "CitationForm": { + "seh": "n\u0027khole" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fde0980-a087-4c10-9cc6-d3672722d1cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "35dcf61a-a85e-4a21-8852-43dd8cf37b74", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small.cloth used for clothing before pants became popular", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pano.pequeno que vestiu homens", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "loin cloth", + "pt": "tanga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7c7f5444-3578-4be1-bc4a-62afab1af391", + "DeletedAt": null, + "LexemeForm": { + "seh": "khondo" + }, + "CitationForm": { + "seh": "n\u0027khondo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2493ddcf-62d9-425a-8879-e3817c075560", + "Order": 1, + "DeletedAt": null, + "EntryId": "7c7f5444-3578-4be1-bc4a-62afab1af391", + "Definition": { + "en": { + "Spans": [ + { + "Text": "animal trail", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "caminho de animal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trail", + "pt": "caminho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fd1e60a3-01a0-44bf-966d-cc4728353ebc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2493ddcf-62d9-425a-8879-e3817c075560", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f406f180-d12b-49ba-ab78-b296638b19eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "khundu" + }, + "CitationForm": { + "seh": "n\u0027khundu-n\u0027khundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "75f63458-61f3-435a-9a56-b4dcc4e4c57e", + "Order": 1, + "DeletedAt": null, + "EntryId": "f406f180-d12b-49ba-ab78-b296638b19eb", + "Definition": {}, + "Gloss": { + "en": "side by side", + "pt": "lado a lado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "146ced19-5712-4550-b442-89ce02a200b7", + "Order": 2, + "DeletedAt": null, + "EntryId": "f406f180-d12b-49ba-ab78-b296638b19eb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the immediate shore of the river", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "river bank", + "pt": "margem de rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "928741b5-bff6-4dd1-be37-ec6e7a4eb6ca", + "Name": { + "en": "Island, shore" + }, + "Code": "1.3.1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75975d1d-61e4-4342-8ab6-17817c07b523", + "DeletedAt": null, + "LexemeForm": { + "seh": "thambo" + }, + "CitationForm": { + "seh": "n\u0027thambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "306efdb8-0e89-4f71-9456-4980caf881ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "75975d1d-61e4-4342-8ab6-17817c07b523", + "Definition": {}, + "Gloss": { + "en": "necklace", + "pt": "corda\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "410a3d81-290f-416b-8012-3aa16eaa9e55", + "Name": { + "en": "Women\u0027s clothing" + }, + "Code": "5.3.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c7cfa06d-6564-4228-9648-0165b3540c54", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya \u0026 Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "306efdb8-0e89-4f71-9456-4980caf881ea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13ee2e0e-64bc-48cd-beb1-24ad04d67fcb", + "DeletedAt": null, + "LexemeForm": { + "seh": "thiko" + }, + "CitationForm": { + "seh": "n\u0027thiko" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc8c21cf-b752-4ba0-abed-a80e4bd1759c", + "Order": 1, + "DeletedAt": null, + "EntryId": "13ee2e0e-64bc-48cd-beb1-24ad04d67fcb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large wooden spoon used to prepare corn porridge", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "meixedoura usado na preparac\u0327a\u0303o de massa de milho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "spoon", + "pt": "meixedoura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e159802b-c7af-477b-b572-569f92018cb0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "dc8c21cf-b752-4ba0-abed-a80e4bd1759c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "479c5226-cf86-4769-b41f-fd4e633eac27", + "DeletedAt": null, + "LexemeForm": { + "seh": "thunzi" + }, + "CitationForm": { + "seh": "n\u0027thunzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "30970938-00cf-4d44-b45f-b92256f4d132", + "Order": 1, + "DeletedAt": null, + "EntryId": "479c5226-cf86-4769-b41f-fd4e633eac27", + "Definition": {}, + "Gloss": { + "en": "shadow", + "pt": "sombra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "31a1f81e-793e-46a9-aeea-f3b45bf5feb6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "30970938-00cf-4d44-b45f-b92256f4d132", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d7de38a8-10a7-458f-802b-6eec1ef2378f", + "DeletedAt": null, + "LexemeForm": { + "seh": "n\u0027tsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a7dfa8c-5794-43fa-90a2-1efdbaee7873", + "Order": 1, + "DeletedAt": null, + "EntryId": "d7de38a8-10a7-458f-802b-6eec1ef2378f", + "Definition": {}, + "Gloss": { + "en": "in the bush", + "pt": "no mato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "681dcfd8-824e-49f3-a0ed-ca68f31ee706", + "DeletedAt": null, + "LexemeForm": { + "seh": "na" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "81181c3d-cf69-40a1-89d4-d3ab0077528a", + "Order": 1, + "DeletedAt": null, + "EntryId": "681dcfd8-824e-49f3-a0ed-ca68f31ee706", + "Definition": { + "en": { + "Spans": [ + { + "Text": "nonpast", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "na\u0303o passado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NONPST", + "pt": "NONPST" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9f64c8e1-7682-44eb-967a-5dc788f9d680", + "DeletedAt": null, + "LexemeForm": { + "seh": "n" + }, + "CitationForm": { + "seh": "na" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6fc6c873-5cc0-47ee-a8c4-f82e24e7e666", + "Order": 1, + "DeletedAt": null, + "EntryId": "9f64c8e1-7682-44eb-967a-5dc788f9d680", + "Definition": {}, + "Gloss": { + "en": "have", + "pt": "ter" + }, + "PartOfSpeech": { + "Id": "dbf8cf00-ef63-466a-bfb1-472e1fdae57d", + "Name": { + "en": "Irregular Verb - na" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "dbf8cf00-ef63-466a-bfb1-472e1fdae57d", + "SemanticDomains": [ + { + "Id": "24398eec-edd1-449a-ad36-d609be24a79e", + "Name": { + "en": "Have, be with" + }, + "Code": "7.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "DeletedAt": null, + "LexemeForm": { + "seh": "na" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84e5150e-3043-4652-9f64-849cf192fee4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "and", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "e", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "with", + "pt": "com" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [ + { + "Id": "24398eec-edd1-449a-ad36-d609be24a79e", + "Name": { + "en": "Have, be with" + }, + "Code": "7.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "393c2fff-0f76-4684-86cc-c7f196472086", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cifupi na phiri", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "close to the mountain", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "perto de montanha", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "sulo2 007", + "Ws": "en" + } + ] + }, + "SenseId": "84e5150e-3043-4652-9f64-849cf192fee4", + "DeletedAt": null + }, + { + "Id": "6a62c4af-4322-4852-ba3d-b8db35fd2dea", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nyakatendewa na kubva cipwazo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "The cameleon, at hearing the insult...", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Camalea\u0303o ao ouvir desprezo...", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "84e5150e-3043-4652-9f64-849cf192fee4", + "DeletedAt": null + } + ] + }, + { + "Id": "68e58260-9383-41f8-bb1a-7aa551e89fac", + "Order": 2, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "\u0022and\u0022 as a connector between verb pharses or clauses and cancels out sequentiality between events", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "e", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "and", + "pt": "e" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "91120e17-4e49-43c0-b416-00176448fdd2", + "Order": 3, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": {}, + "Gloss": { + "en": "of", + "pt": "de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "fee1a6ff-3d64-44fa-9515-b51e7068b1d6", + "Order": 4, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "em", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "in", + "pt": "em" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d1e7a1fe-5475-4eae-99eb-d56f7248f6c4", + "Order": 5, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "\u0022by\u0022 only with passive verbs", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "por", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "by", + "pt": "por" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "cbad219c-e1bc-479c-877c-c0017a425ac1", + "Order": 6, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "to", + "pt": "a" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "74b0cee0-db54-4703-8a36-19fe3c041154", + "MaybeId": "74b0cee0-db54-4703-8a36-19fe3c041154", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + }, + { + "Id": "5b23b091-a0bd-4eb1-83b5-6848e0d98b4c", + "MaybeId": "5b23b091-a0bd-4eb1-83b5-6848e0d98b4c", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "02f5101e-b6e2-47e5-b033-dd7197b5734b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7ff262e6-44c0-407c-bf42-49805e8b6848", + "Order": 1, + "DeletedAt": null, + "EntryId": "02f5101e-b6e2-47e5-b033-dd7197b5734b", + "Definition": {}, + "Gloss": { + "en": "four", + "pt": "quarto" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eedc3037-42a6-4bf3-bb84-856adfacd6c1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:33", + "Ws": "en" + } + ] + }, + "SenseId": "7ff262e6-44c0-407c-bf42-49805e8b6848", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "82b1d4df-c01f-48e0-a911-9f3bbbec4f2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nakati-nakati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", + "Order": 1, + "DeletedAt": null, + "EntryId": "82b1d4df-c01f-48e0-a911-9f3bbbec4f2b", + "Definition": {}, + "Gloss": { + "en": "very middle", + "pt": "meio mesmo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4a6de20-efe5-4c36-b043-b5d773a605bf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", + "DeletedAt": null + }, + { + "Id": "fe797f6b-731e-410d-9c8d-1b3ab550b08f", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndiri nakati-nakati wa nseu.", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a2d97060-90c9-4311-939c-c0322dbb9c14", + "DeletedAt": null, + "LexemeForm": { + "seh": "nana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbcb955f-a907-4e80-89ea-ef01f43eabfa", + "Order": 1, + "DeletedAt": null, + "EntryId": "a2d97060-90c9-4311-939c-c0322dbb9c14", + "Definition": { + "en": { + "Spans": [ + { + "Text": "older brother", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "irma\u0303o mais velho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "brother", + "pt": "irma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f45620d8-8728-4ec8-8b14-f1d315ce3656", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cbcb955f-a907-4e80-89ea-ef01f43eabfa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4ae7b57-44e0-4e9f-a3c2-bde040c1bf24", + "DeletedAt": null, + "LexemeForm": { + "seh": "nango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e306b70f-d7bb-402a-b7bb-ffcd6628c784", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4ae7b57-44e0-4e9f-a3c2-bde040c1bf24", + "Definition": {}, + "Gloss": { + "en": "other", + "pt": "outra" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ef2a930-59ee-493a-8db0-1bf59f345be8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e306b70f-d7bb-402a-b7bb-ffcd6628c784", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "84601dac-41aa-443a-8a1e-6f5abecba31d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cera" + }, + "CitationForm": { + "seh": "ncera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "caca5235-796e-488e-b651-93816bb5e38e", + "Order": 1, + "DeletedAt": null, + "EntryId": "84601dac-41aa-443a-8a1e-6f5abecba31d", + "Definition": {}, + "Gloss": { + "en": "a well", + "pt": "poc\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "bf6e1719-11ee-4ace-9c84-72019c01aabc", + "Name": { + "en": "Spring, well" + }, + "Code": "1.3.1.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "70c97527-7025-4c00-a1d6-4bacc964113c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:3", + "Ws": "en" + } + ] + }, + "SenseId": "caca5235-796e-488e-b651-93816bb5e38e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a2fae07-7b80-4236-8976-3890beca3866", + "DeletedAt": null, + "LexemeForm": { + "seh": "chanje" + }, + "CitationForm": { + "seh": "nchanje" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01c0dd6b-8bb7-4a5d-98e7-3f2fc550bd0e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a2fae07-7b80-4236-8976-3890beca3866", + "Definition": {}, + "Gloss": { + "en": "jealousy", + "pt": "ciu\u0301me" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6388f5a2-b775-4d5c-9367-f05cd09869cb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze (ntsanje); Alicete", + "Ws": "en" + } + ] + }, + "SenseId": "01c0dd6b-8bb7-4a5d-98e7-3f2fc550bd0e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2046477c-75f9-4e2f-8785-d05d542e3db4", + "DeletedAt": null, + "LexemeForm": { + "seh": "chichi" + }, + "CitationForm": { + "seh": "nchichi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e9831e86-8361-44fa-a4df-08394a608984", + "Order": 1, + "DeletedAt": null, + "EntryId": "2046477c-75f9-4e2f-8785-d05d542e3db4", + "Definition": {}, + "Gloss": { + "en": "root", + "pt": "raiz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fff9596b-0f84-4715-8ffb-bfc3e26741eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e9831e86-8361-44fa-a4df-08394a608984", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "39dc0d40-bee5-4d29-9767-69adab9470ca", + "DeletedAt": null, + "LexemeForm": { + "seh": "cindu" + }, + "CitationForm": { + "seh": "ncindu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aabd42d8-a97a-4377-a2fa-6240fcb9c6b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "39dc0d40-bee5-4d29-9767-69adab9470ca", + "Definition": {}, + "Gloss": { + "en": "palm tree", + "pt": "palmeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5b90873-e85e-4e41-a80d-ef8140244d8d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "aabd42d8-a97a-4377-a2fa-6240fcb9c6b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2c88689c-920e-4ef7-85a2-783413fdb514", + "DeletedAt": null, + "LexemeForm": { + "seh": "cira" + }, + "CitationForm": { + "seh": "ncira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4a4e6088-2f32-4bb8-a4cc-c5a0b66d9778", + "Order": 1, + "DeletedAt": null, + "EntryId": "2c88689c-920e-4ef7-85a2-783413fdb514", + "Definition": {}, + "Gloss": { + "en": "tail", + "pt": "cauda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ff67fb1f-c994-477c-b7f4-d452fbde2890", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4a4e6088-2f32-4bb8-a4cc-c5a0b66d9778", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0b972822-7375-4b44-8e59-4575b82317c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "citi" + }, + "CitationForm": { + "seh": "nciti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b52cc4bc-7dd7-4336-893f-071ed4fabd7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0b972822-7375-4b44-8e59-4575b82317c7", + "Definition": {}, + "Gloss": { + "en": "creator", + "pt": "criador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "136f608a-4d70-4e3f-bc46-87d55ffbd966", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "b52cc4bc-7dd7-4336-893f-071ed4fabd7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7e5fb6f3-74ff-4ac6-b806-a39fe2392ec3", + "DeletedAt": null, + "LexemeForm": { + "seh": "citwi" + }, + "CitationForm": { + "seh": "ncitwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "867f42cd-6511-458c-8659-c84de78e21f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "7e5fb6f3-74ff-4ac6-b806-a39fe2392ec3", + "Definition": {}, + "Gloss": { + "en": "creature", + "pt": "criatura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3017365-bb6d-4ed0-b5e7-14463031ca1a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32 (says rational creature)", + "Ws": "en" + } + ] + }, + "SenseId": "867f42cd-6511-458c-8659-c84de78e21f9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7c0502b-0783-4b13-a8b7-511dd3442fef", + "DeletedAt": null, + "LexemeForm": { + "seh": "combo" + }, + "CitationForm": { + "seh": "ncombo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9998867c-65bf-4126-aecb-73c98e6864a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7c0502b-0783-4b13-a8b7-511dd3442fef", + "Definition": {}, + "Gloss": { + "en": "navel", + "pt": "umbigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1594e83e-7938-4f24-a48b-e609f228d179", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "9998867c-65bf-4126-aecb-73c98e6864a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "df122a69-ceb1-4dd8-89a7-7f5a00ee5799", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunu" + }, + "CitationForm": { + "seh": "ncunu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "33fa5883-44e0-4bf6-9181-5ae1dbbbdd17", + "Order": 1, + "DeletedAt": null, + "EntryId": "df122a69-ceb1-4dd8-89a7-7f5a00ee5799", + "Definition": {}, + "Gloss": { + "en": "waist", + "pt": "cintura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bd3971f0-a441-43af-a3ed-49b0a26b3053", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "33fa5883-44e0-4bf6-9181-5ae1dbbbdd17", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c28306ee-a238-472f-8f7d-22c413ca438f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndalama" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cb806a3e-0460-41d5-87e0-519fb87d80cd", + "Order": 1, + "DeletedAt": null, + "EntryId": "c28306ee-a238-472f-8f7d-22c413ca438f", + "Definition": {}, + "Gloss": { + "en": "money", + "pt": "dineiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bb41b153-8231-4111-a216-542e1ea8351e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cb806a3e-0460-41d5-87e0-519fb87d80cd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c6ce14d-a0da-4d03-84b9-0c6ebcb8d405", + "DeletedAt": null, + "LexemeForm": { + "seh": "dani" + }, + "CitationForm": { + "seh": "ndani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5c6f03eb-38ca-403c-abce-77d6572100b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c6ce14d-a0da-4d03-84b9-0c6ebcb8d405", + "Definition": {}, + "Gloss": { + "en": "enemy", + "pt": "inimigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e864226-1a8e-421c-9a5e-aa6fe58ac6bf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5c6f03eb-38ca-403c-abce-77d6572100b1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6fb58a21-1e45-45b6-a325-8d35afbd4d8a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dawa" + }, + "CitationForm": { + "seh": "ndawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea84d2b7-4063-4074-a75c-c8d9e267d3e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "6fb58a21-1e45-45b6-a325-8d35afbd4d8a", + "Definition": {}, + "Gloss": { + "en": "court case", + "pt": "milando" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "07a296dc-118d-47c0-a85f-a6176026a1a2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ea84d2b7-4063-4074-a75c-c8d9e267d3e6", + "DeletedAt": null + } + ] + }, + { + "Id": "7178a762-8c87-45db-b944-e7edd9e93ddb", + "Order": 2, + "DeletedAt": null, + "EntryId": "6fb58a21-1e45-45b6-a325-8d35afbd4d8a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sin, cause of guilt", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sin", + "pt": "pecado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b38b335c-3ac4-4c41-931e-cf7e9dfa8b4d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndekha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cd9690f9-7c5e-48a5-b8fb-1c5b1a47e90c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b38b335c-3ac4-4c41-931e-cf7e9dfa8b4d", + "Definition": {}, + "Gloss": { + "en": "alone", + "pt": "sozinho" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cc83747c-ec97-41e3-ba92-2dc7e717664c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cd9690f9-7c5e-48a5-b8fb-1c5b1a47e90c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f2655a45-88f7-4403-915e-f18bbf7b99e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndendemez" + }, + "CitationForm": { + "seh": "ndendemeza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24539709-eea2-44ec-9baa-f90a11eb703b", + "Order": 1, + "DeletedAt": null, + "EntryId": "f2655a45-88f7-4403-915e-f18bbf7b99e4", + "Definition": {}, + "Gloss": { + "en": "straighten", + "pt": "endireitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "647cce06-5531-4fa3-94b8-bcd53ede85b6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "24539709-eea2-44ec-9baa-f90a11eb703b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cbd57fd-e988-4cc6-a710-64f485453351", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndi" + }, + "CitationForm": { + "seh": "ndi" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a7282af1-7f78-4f10-ba25-238fedd5fb74", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cbd57fd-e988-4cc6-a710-64f485453351", + "Definition": {}, + "Gloss": { + "en": "it is", + "pt": "e\u0301" + }, + "PartOfSpeech": { + "Id": "748af620-8cd0-4364-a951-c234306f5b9f", + "Name": { + "en": "Copula Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d5d21dd-3c8c-4bf1-bc44-514edb792ff0", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "2e3443cd-d974-4c03-b809-9aef9f1919ed", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d5d21dd-3c8c-4bf1-bc44-514edb792ff0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "I", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "eu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1S", + "pt": "1S" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0e74b4cc-9f2b-4d56-bf46-76a022bb6782", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndiko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc447c6a-13f0-48ef-a0c3-9ad940af245c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0e74b4cc-9f2b-4d56-bf46-76a022bb6782", + "Definition": {}, + "Gloss": { + "en": "calice", + "pt": "ca\u0301lice" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bc29cedb-ee67-4713-b33d-9cbc40e13f9f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "dc447c6a-13f0-48ef-a0c3-9ad940af245c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aaed74ac-a322-484e-ab89-19f36cf44bdb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndimo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0cba0865-daa8-453e-9d82-08da268cea8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "aaed74ac-a322-484e-ab89-19f36cf44bdb", + "Definition": {}, + "Gloss": { + "en": "it is true", + "pt": "e\u0301 verdade" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ce4ee16-957b-45c9-9747-68f8aa316bb5", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndimo mwene", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "0cba0865-daa8-453e-9d82-08da268cea8e", + "DeletedAt": null + }, + { + "Id": "e1ed7d45-066a-4037-9f91-a44cdd59c72d", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "e\u0301 verdade", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "0cba0865-daa8-453e-9d82-08da268cea8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a52acf59-1273-4e0d-a0ff-ed2837200c36", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndimu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6008c4e3-3fc0-496c-be1b-22cc04fcc6ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "a52acf59-1273-4e0d-a0ff-ed2837200c36", + "Definition": {}, + "Gloss": { + "en": "lemon tree", + "pt": "limoneira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl mindimu", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d73ebfcc-b2b5-44e6-9e11-4fe4c37d0ed4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndimu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ba2a787f-ed2a-40f6-a418-225c50d3fc52", + "Order": 1, + "DeletedAt": null, + "EntryId": "d73ebfcc-b2b5-44e6-9e11-4fe4c37d0ed4", + "Definition": {}, + "Gloss": { + "en": "lemon", + "pt": "lima\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "85531f36-c472-4f09-8d69-93a0d2b133af", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ba2a787f-ed2a-40f6-a418-225c50d3fc52", + "DeletedAt": null + } + ] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl mandimu", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0c54cd8d-cae0-4fc7-a945-19fecb4df8c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndoko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "30851df2-373e-469a-886a-83495b238da9", + "Order": 1, + "DeletedAt": null, + "EntryId": "0c54cd8d-cae0-4fc7-a945-19fecb4df8c3", + "Definition": {}, + "Gloss": { + "en": "go!", + "pt": "va!" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2a9a9a7-899b-4875-a5e6-337c8ac249a9", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndoto" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ac662c72-e719-47cf-b6a3-a20bfce8186a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2a9a9a7-899b-4875-a5e6-337c8ac249a9", + "Definition": {}, + "Gloss": { + "en": "dream", + "pt": "sonho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "276baad4-8611-44e6-823f-9d1f8e65c787", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ac662c72-e719-47cf-b6a3-a20bfce8186a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebd49c9d-1458-4039-9db5-b2ab7cdbe92b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndui" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86b544d8-af64-4fdd-8677-5c137f6bdd25", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebd49c9d-1458-4039-9db5-b2ab7cdbe92b", + "Definition": {}, + "Gloss": { + "en": "ground nut", + "pt": "amendoim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c8f94049-e3e6-4a8a-b2b6-004035f5d9ba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "86b544d8-af64-4fdd-8677-5c137f6bdd25", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06e9dfad-56a3-4bc1-b8f1-b6a75cf84202", + "DeletedAt": null, + "LexemeForm": { + "seh": "nduli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", + "Order": 1, + "DeletedAt": null, + "EntryId": "06e9dfad-56a3-4bc1-b8f1-b6a75cf84202", + "Definition": {}, + "Gloss": { + "en": "after", + "pt": "depois" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16461b12-2b9b-4b52-953f-ed8ecfb5f342", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ali kupi mwana? Ali nduli mwako", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Onde esta\u0301 a crianc\u0327a? Est atra\u0301s de ti.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", + "DeletedAt": null + }, + { + "Id": "92cec1e9-0287-42e6-b5ef-88a55f54fa56", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sogulani ndinabwera nduli mwanu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Adiate, hei de vir depois de si.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", + "DeletedAt": null + } + ] + }, + { + "Id": "0e99aea0-3a09-40af-ba14-2fe5d0f42961", + "Order": 2, + "DeletedAt": null, + "EntryId": "06e9dfad-56a3-4bc1-b8f1-b6a75cf84202", + "Definition": {}, + "Gloss": { + "en": "behind", + "pt": "atra\u0301s" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "20b519ac-b133-4ff6-8449-bb635ffd1291", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzakazi" + }, + "CitationForm": { + "seh": "ndzakazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dbc383e0-acd4-458e-86b1-db9668dac4eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "20b519ac-b133-4ff6-8449-bb635ffd1291", + "Definition": {}, + "Gloss": { + "en": "slave", + "pt": "escravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "97353a06-97a7-448c-98de-cc514b51d87b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dbc383e0-acd4-458e-86b1-db9668dac4eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f22d51a4-26ae-4fe5-986a-0f5e2c909cba", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzeru" + }, + "CitationForm": { + "seh": "ndzeru" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2e84850b-05d1-4de0-8db5-4bfeef18f8f3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f22d51a4-26ae-4fe5-986a-0f5e2c909cba", + "Definition": { + "en": { + "Spans": [ + { + "Text": "judgement, intelligence", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "juizo, intelige\u0302ncia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "judgement", + "pt": "juizo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "36d62308-9d1a-451c-948a-0bf12f82dabc", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ana ndzeru zikulu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ele tem grande inteligencia.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2 011", + "Ws": "en" + } + ] + }, + "SenseId": "2e84850b-05d1-4de0-8db5-4bfeef18f8f3", + "DeletedAt": null + } + ] + }, + { + "Id": "a639ec9c-35db-45f5-b3f5-85293483b4cd", + "Order": 2, + "DeletedAt": null, + "EntryId": "f22d51a4-26ae-4fe5-986a-0f5e2c909cba", + "Definition": {}, + "Gloss": { + "en": "idea", + "pt": "ideia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8372a911-eb4a-4f96-b2dc-96cde5602f50", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzice" + }, + "CitationForm": { + "seh": "ndzice" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50757f29-2ed9-4987-ad65-7822e66355ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "8372a911-eb4a-4f96-b2dc-96cde5602f50", + "Definition": { + "en": { + "Spans": [ + { + "Text": "unmarried person, spinster, batchelor, widow, widower", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pessoa na\u0303o casada, solteirona, solteiro, viuva, viuvo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "unmarried", + "pt": "na\u0303o casada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00497afe-61bf-455a-8fe8-16aed326dec6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14 also says bride; bridegroom", + "Ws": "en" + } + ] + }, + "SenseId": "50757f29-2ed9-4987-ad65-7822e66355ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5f59c83f-81a6-4b6b-8094-b9cc20fd10ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzidzi" + }, + "CitationForm": { + "seh": "ndzidzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce84b386-6ca6-461e-99b0-8df1e879e369", + "Order": 1, + "DeletedAt": null, + "EntryId": "5f59c83f-81a6-4b6b-8094-b9cc20fd10ef", + "Definition": {}, + "Gloss": { + "en": "time", + "pt": "altura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "afc34986-449b-41ac-9b58-2719f3cebc9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo006; Sulo2:22; Moreira:24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ce84b386-6ca6-461e-99b0-8df1e879e369", + "DeletedAt": null + } + ] + }, + { + "Id": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", + "Order": 2, + "DeletedAt": null, + "EntryId": "5f59c83f-81a6-4b6b-8094-b9cc20fd10ef", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "tempo, hora", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "time", + "pt": "tempo" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ec8dbf93-3d6f-40bf-b500-f230f82f1e2c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndzidzi wanji uno?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Que hora sa\u0303o?", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c825f160-d38b-4842-8954-c0b969cde116", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzinda" + }, + "CitationForm": { + "seh": "ndzinda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ee429f51-e92f-4d59-9a87-05531b6c7aab", + "Order": 1, + "DeletedAt": null, + "EntryId": "c825f160-d38b-4842-8954-c0b969cde116", + "Definition": {}, + "Gloss": { + "en": "city", + "pt": "cidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b536622c-80a3-4b31-9d22-4ed2fb76324d", + "Name": { + "en": "City" + }, + "Code": "4.6.7.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "8472a200-756b-417f-85a8-43d0dbba1399", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndzinda ukulu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "ee429f51-e92f-4d59-9a87-05531b6c7aab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71a34111-6b38-423f-9bc5-0f2422dfdbea", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzukulu" + }, + "CitationForm": { + "seh": "ndzukulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3394d689-385c-40b1-ad04-0256836a3a66", + "Order": 1, + "DeletedAt": null, + "EntryId": "71a34111-6b38-423f-9bc5-0f2422dfdbea", + "Definition": {}, + "Gloss": { + "en": "grandson", + "pt": "neto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a57ba619-6329-46d4-92a3-667095a6a75a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "3394d689-385c-40b1-ad04-0256836a3a66", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e31dcd2-dc2e-4b2f-9d57-b0e9cf994a02", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu" + }, + "CitationForm": { + "seh": "ndzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cae34553-1777-4d11-860a-c4a6b3ca12a4", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e31dcd2-dc2e-4b2f-9d57-b0e9cf994a02", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the air, at the top of (eg tree)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "in the sky", + "pt": "no ce\u0301u" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1c3f8996-362e-4ee0-af02-0dd02887f6aa", + "Name": { + "en": "Heaven, hell" + }, + "Code": "4.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aec3cdc3-221b-4cfc-b287-93d91436b926", + "DeletedAt": null, + "LexemeForm": { + "seh": "ne" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4704fd8b-646b-407d-b02e-0ad5a6c5a503", + "Order": 1, + "DeletedAt": null, + "EntryId": "aec3cdc3-221b-4cfc-b287-93d91436b926", + "Definition": {}, + "Gloss": { + "en": "not", + "pt": "na\u0308o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4e4b416-5a15-41e3-9039-c3cca7093153", + "DeletedAt": null, + "LexemeForm": { + "seh": "nee" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8947916b-0e22-4365-8336-680e98ba84fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4e4b416-5a15-41e3-9039-c3cca7093153", + "Definition": {}, + "Gloss": { + "en": "not", + "pt": "na\u0303o" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eacda214-08a3-4fed-984f-c32e99c62be6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nens" + }, + "CitationForm": { + "seh": "nensa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f0b5bd45-51b9-4280-a34a-aa993749ccad", + "Order": 1, + "DeletedAt": null, + "EntryId": "eacda214-08a3-4fed-984f-c32e99c62be6", + "Definition": {}, + "Gloss": { + "en": "be dificult", + "pt": "ser dificil" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "def76143-6036-4539-bd6f-3b5575d9a8b2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Basa ya nkumbizi isanensa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Trabalho de pastorar e\u0301 dificil.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f0b5bd45-51b9-4280-a34a-aa993749ccad", + "DeletedAt": null + } + ] + }, + { + "Id": "b718b6fb-d131-474c-9799-1a805b94c89f", + "Order": 2, + "DeletedAt": null, + "EntryId": "eacda214-08a3-4fed-984f-c32e99c62be6", + "Definition": {}, + "Gloss": { + "en": "costs dearly", + "pt": "custar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "46f77ef5-4543-4b8a-a32f-5b6448bae960", + "DeletedAt": null, + "LexemeForm": { + "seh": "net" + }, + "CitationForm": { + "seh": "neta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "169eade3-a10b-4554-9230-5516077a8f53", + "Order": 1, + "DeletedAt": null, + "EntryId": "46f77ef5-4543-4b8a-a32f-5b6448bae960", + "Definition": {}, + "Gloss": { + "en": "tire", + "pt": "cansar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2dc39f33-d145-4a66-a846-c4e68e3837e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nfangu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b4a02fc9-2ae5-4c96-ae87-ceec6845871e", + "Order": 1, + "DeletedAt": null, + "EntryId": "2dc39f33-d145-4a66-a846-c4e68e3837e2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "genet, kill small livestock and use the same bathroom, Genus Genetta", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "genet", + "pt": "gineta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7d38e076-c57a-4e3f-8fa6-e23e57829724", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "b4a02fc9-2ae5-4c96-ae87-ceec6845871e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2aacba99-22b4-4f02-ba97-b7347de36933", + "DeletedAt": null, + "LexemeForm": { + "seh": "nfofomimba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "dfad5d62-b5e7-46e0-b26e-e062147e72c5", + "Order": 1, + "DeletedAt": null, + "EntryId": "2aacba99-22b4-4f02-ba97-b7347de36933", + "Definition": { + "en": { + "Spans": [ + { + "Text": "prostrated on stomach", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "prostando-se de barriga", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "prostrated", + "pt": "prostando-se" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e22a3bc2-75e7-4e5e-8dc3-2294317201c1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "dfad5d62-b5e7-46e0-b26e-e062147e72c5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77b67f10-29cc-4624-8ed0-077784e9c95c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nfutete" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1e0627cb-c81f-4fa9-9b31-f7b364bf443c", + "Order": 1, + "DeletedAt": null, + "EntryId": "77b67f10-29cc-4624-8ed0-077784e9c95c", + "Definition": {}, + "Gloss": { + "en": "paralysis", + "pt": "paralezia" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c05dc39e-da18-49d0-a277-a7739f815c63", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1e0627cb-c81f-4fa9-9b31-f7b364bf443c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2afe57a-1cdc-4086-b9ab-e6d1488fb487", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027anga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22f12a7c-237a-4aec-be5a-9785f8839977", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2afe57a-1cdc-4086-b9ab-e6d1488fb487", + "Definition": { + "en": { + "Spans": [ + { + "Text": "traditional doctor", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "medicine-man", + "pt": "curandeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "131131c7-a132-4154-95fe-aebee8256a09", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "22f12a7c-237a-4aec-be5a-9785f8839977", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1c3896d4-90c0-4382-a316-beefea925c25", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027oma" + }, + "CitationForm": { + "seh": "ng\u0027oma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8abb551d-571b-4612-a4cd-85d065bca104", + "Order": 1, + "DeletedAt": null, + "EntryId": "1c3896d4-90c0-4382-a316-beefea925c25", + "Definition": {}, + "Gloss": { + "en": "drum", + "pt": "batuque" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3580e32b-4969-4ec8-93f9-0207d126aa06", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8abb551d-571b-4612-a4cd-85d065bca104", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c74603b3-c270-4fa4-ba9b-44cf5abedea4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ombe" + }, + "CitationForm": { + "seh": "ng\u0027ombe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df313b4b-f760-4864-a5f8-9854dff3af73", + "Order": 1, + "DeletedAt": null, + "EntryId": "c74603b3-c270-4fa4-ba9b-44cf5abedea4", + "Definition": {}, + "Gloss": { + "en": "ox", + "pt": "boi" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f26ced61-2d0d-486c-8b92-1e74b87ec5fd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "df313b4b-f760-4864-a5f8-9854dff3af73", + "DeletedAt": null + } + ] + }, + { + "Id": "33493618-0bdb-4baa-aa80-235f7009c5a0", + "Order": 2, + "DeletedAt": null, + "EntryId": "c74603b3-c270-4fa4-ba9b-44cf5abedea4", + "Definition": {}, + "Gloss": { + "en": "cow", + "pt": "vaca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c626a4f7-ae56-4318-bdef-8978b34c468f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ombo" + }, + "CitationForm": { + "seh": "ng\u0027ombo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "634a8b59-c02c-402f-8387-a6ad5cfc7917", + "Order": 1, + "DeletedAt": null, + "EntryId": "c626a4f7-ae56-4318-bdef-8978b34c468f", + "Definition": {}, + "Gloss": { + "en": "oar", + "pt": "remo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3fc2723f-f1f3-47fe-b1a2-44ffbbb96d7f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "George, Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "634a8b59-c02c-402f-8387-a6ad5cfc7917", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a17204d-f9cc-4b45-ac40-ac0937f58c07", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ona" + }, + "CitationForm": { + "seh": "ng\u0027ona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3f9fe653-77fb-4e5a-9e41-9f1da6877f9b", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a17204d-f9cc-4b45-ac40-ac0937f58c07", + "Definition": {}, + "Gloss": { + "en": "crocodile", + "pt": "crocodilo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5bee9527-2f90-40c5-84db-3c77b9ff56b7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3f9fe653-77fb-4e5a-9e41-9f1da6877f9b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "50ad4666-e760-405e-ad49-5ba870c38714", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bfb0f5db-2dcf-4720-bfe9-4f53685c2fa0", + "Order": 1, + "DeletedAt": null, + "EntryId": "50ad4666-e760-405e-ad49-5ba870c38714", + "Definition": {}, + "Gloss": { + "en": "little", + "pt": "pouco" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b9445f85-1d85-4222-bc54-822f328c8612", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "munthu ng\u0027ono; cinthu cing\u0027ono", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "bfb0f5db-2dcf-4720-bfe9-4f53685c2fa0", + "DeletedAt": null + } + ] + }, + { + "Id": "edad5197-9710-431f-b970-60c3c6ccab59", + "Order": 2, + "DeletedAt": null, + "EntryId": "50ad4666-e760-405e-ad49-5ba870c38714", + "Definition": {}, + "Gloss": { + "en": "short", + "pt": "pequeno" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c99b7977-dd4e-4e57-8809-62c65952d51e", + "Order": 3, + "DeletedAt": null, + "EntryId": "50ad4666-e760-405e-ad49-5ba870c38714", + "Definition": {}, + "Gloss": { + "en": "unimportant", + "pt": "na\u0303o important" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f3ceb132-afb4-4ac2-bc16-558aed912c7c", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f93d7fa2-5a29-4a66-96c1-8817f4800897", + "Order": 1, + "DeletedAt": null, + "EntryId": "f3ceb132-afb4-4ac2-bc16-558aed912c7c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "younger brother", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "irma\u0303o mais novo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "brother", + "pt": "irma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0e22b61b-a4a0-4a86-843b-591843c8376d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barbara\u0027s notebook; Nyzazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f93d7fa2-5a29-4a66-96c1-8817f4800897", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f240305-92b7-463e-8afe-46b08e839722", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ono-ng\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d73a4295-bd7e-486d-97d7-4d252553ad42", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f240305-92b7-463e-8afe-46b08e839722", + "Definition": {}, + "Gloss": { + "en": "very small", + "pt": "muito pequenino" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ae7f2ae2-1790-4a6b-860a-e58db88b74fd", + "DeletedAt": null, + "LexemeForm": { + "seh": "nga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7c34e18c-1e1b-4a36-a660-35e3faca1879", + "Order": 1, + "DeletedAt": null, + "EntryId": "ae7f2ae2-1790-4a6b-860a-e58db88b74fd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "my", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "meu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1S", + "pt": "1S" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e80a14e7-e9f9-4958-af5f-29d8a04c1e92", + "DeletedAt": null, + "LexemeForm": { + "seh": "nga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "2a371b75-1ed9-433b-a7a5-48bc4cebea03", + "Order": 1, + "DeletedAt": null, + "EntryId": "e80a14e7-e9f9-4958-af5f-29d8a04c1e92", + "Definition": { + "en": { + "Spans": [ + { + "Text": "if, conditional", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "se, condicional", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "COND", + "pt": "COND" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "80cb2399-8f83-43ac-a017-58b8f296719e", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0073f2a7-9b27-4e09-a640-992836a26b27", + "Order": 1, + "DeletedAt": null, + "EntryId": "80cb2399-8f83-43ac-a017-58b8f296719e", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "um pessoa na\u0303o specifica, algue\u0301m, fulano", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "someone", + "pt": "algue\u0301m" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6a83696c-e81d-4dc5-9c8f-bbd36fb8a3d8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "0073f2a7-9b27-4e09-a640-992836a26b27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b2bb6c09-3b4d-427a-b729-e6dfea2537a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "n\u0027gano" + }, + "CitationForm": { + "seh": "ngano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", + "Order": 1, + "DeletedAt": null, + "EntryId": "b2bb6c09-3b4d-427a-b729-e6dfea2537a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "physical end", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "limit do espac\u0327o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "end", + "pt": "fim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a3ad202-d2d5-4a47-ae99-b162884a6d8d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "n\u0027gano wa mapika", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "termino de corrida", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", + "DeletedAt": null + }, + { + "Id": "7d01d8f9-4a7d-47ad-ae9c-5447ce2bdc2f", + "Order": 2, + "Sentence": {}, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "fronteira de machamba", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", + "DeletedAt": null + } + ] + }, + { + "Id": "941c7da8-d6b8-43c5-801b-f2eff707378e", + "Order": 2, + "DeletedAt": null, + "EntryId": "b2bb6c09-3b4d-427a-b729-e6dfea2537a2", + "Definition": {}, + "Gloss": { + "en": "border", + "pt": "fronteira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c62abd93-3e39-406e-846d-bf31d3739105", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "n\u0027gano wa munda", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "941c7da8-d6b8-43c5-801b-f2eff707378e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16e3cb98-126e-4527-b03a-9f8a9d6ff59b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngasi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e5999ac9-691d-4b18-a0f9-3bfcece80bf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "16e3cb98-126e-4527-b03a-9f8a9d6ff59b", + "Definition": {}, + "Gloss": { + "en": "how many?", + "pt": "quantos?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7dcb8b47-52f5-442b-aee9-2bd0b6e9bdec", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Muna pifuwo pingasi?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Tem animais quantas?", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e5999ac9-691d-4b18-a0f9-3bfcece80bf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5a91c16-ee1d-4e8f-981e-8c2960bd5068", + "DeletedAt": null, + "LexemeForm": { + "seh": "gole" + }, + "CitationForm": { + "seh": "ngole" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b3aed28-7c60-4c92-a7db-dccc8c1a3c0c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5a91c16-ee1d-4e8f-981e-8c2960bd5068", + "Definition": {}, + "Gloss": { + "en": "fingernail", + "pt": "unha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7b9e93ba-129b-43a4-9c75-7e1a406d93f3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "4b3aed28-7c60-4c92-a7db-dccc8c1a3c0c", + "DeletedAt": null + } + ] + }, + { + "Id": "11febd8d-c6dc-481b-a7b7-cc2049d33e5b", + "Order": 2, + "DeletedAt": null, + "EntryId": "d5a91c16-ee1d-4e8f-981e-8c2960bd5068", + "Definition": {}, + "Gloss": { + "en": "toenail", + "pt": "unha de pe\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f3d50dc-07ed-438e-ac40-cf6b6d2df8ce", + "DeletedAt": null, + "LexemeForm": { + "seh": "golo" + }, + "CitationForm": { + "seh": "ngolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d2a9a738-926f-401e-973f-a6b8fe2c8469", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f3d50dc-07ed-438e-ac40-cf6b6d2df8ce", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tank, drum, a container for holding water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "drum", + "pt": "tambor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e4ffce8-5223-42d0-9290-baa75a11a16c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "d2a9a738-926f-401e-973f-a6b8fe2c8469", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f01d90c-0f7c-41ee-8b25-06de03415adb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngumi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd429be7-30dd-4676-93f5-e6d5bd3c74d7", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f01d90c-0f7c-41ee-8b25-06de03415adb", + "Definition": {}, + "Gloss": { + "en": "well person", + "pt": "pessoa sa\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9ff79aeb-07e5-474f-9dbc-37448a9ec799", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dd429be7-30dd-4676-93f5-e6d5bd3c74d7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba19d655-d247-4359-94b9-8c04fd3a5132", + "DeletedAt": null, + "LexemeForm": { + "seh": "gundu" + }, + "CitationForm": { + "seh": "ngundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c3791ccf-4988-4217-ad9c-b417c5a0ae43", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba19d655-d247-4359-94b9-8c04fd3a5132", + "Definition": { + "en": { + "Spans": [ + { + "Text": "squirrel", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "squirrel", + "pt": "esquilo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5db873e2-6dd8-479d-b020-b1a593367cb9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "c3791ccf-4988-4217-ad9c-b417c5a0ae43", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "515c94cc-0483-49fd-8040-258b83347961", + "DeletedAt": null, + "LexemeForm": { + "seh": "guo" + }, + "CitationForm": { + "seh": "nguo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f8441f5e-a2cc-4d41-bded-5bf5723d04e8", + "Order": 1, + "DeletedAt": null, + "EntryId": "515c94cc-0483-49fd-8040-258b83347961", + "Definition": {}, + "Gloss": { + "en": "cloth", + "pt": "tecido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b735111-82f4-4714-88a9-dcd80f1eb2d3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f8441f5e-a2cc-4d41-bded-5bf5723d04e8", + "DeletedAt": null + } + ] + }, + { + "Id": "cb86900f-db45-4b50-95fb-641a1cacb51f", + "Order": 2, + "DeletedAt": null, + "EntryId": "515c94cc-0483-49fd-8040-258b83347961", + "Definition": {}, + "Gloss": { + "en": "clothes", + "pt": "ropa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc3ac80c-c9b8-4234-8676-6258d999246c", + "DeletedAt": null, + "LexemeForm": { + "seh": "ni" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "07e57d85-0a08-40a8-b523-6abc7b1ce65b", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc3ac80c-c9b8-4234-8676-6258d999246c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "plural", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "plural", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PL", + "pt": "PL" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8155184b-a312-446e-8295-4e07b8890f34", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "07e57d85-0a08-40a8-b523-6abc7b1ce65b", + "DeletedAt": null + } + ] + }, + { + "Id": "ba2430a3-7f68-4648-ab7f-fb36dd932532", + "Order": 2, + "DeletedAt": null, + "EntryId": "fc3ac80c-c9b8-4234-8676-6258d999246c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "polite", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "bem-educado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "POLITE", + "pt": "POLITE" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cf63c773-d329-4f18-b660-877b58475994", + "DeletedAt": null, + "LexemeForm": { + "seh": "ninga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d6000cc0-db88-465a-9396-556304110322", + "Order": 1, + "DeletedAt": null, + "EntryId": "cf63c773-d329-4f18-b660-877b58475994", + "Definition": {}, + "Gloss": { + "en": "like", + "pt": "como" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00564a82-43da-472d-8ff6-740d40293d85", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d6000cc0-db88-465a-9396-556304110322", + "DeletedAt": null + } + ] + }, + { + "Id": "59e4c607-6f2a-4db2-8c4a-65c90227b5d4", + "Order": 2, + "DeletedAt": null, + "EntryId": "cf63c773-d329-4f18-b660-877b58475994", + "Definition": {}, + "Gloss": { + "en": "as as" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "59ef9703-6190-40f2-a436-3c2a1f9d3efb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ninji" + }, + "CitationForm": { + "seh": "ninji" + }, + "LiteralMeaning": {}, + "MorphType": "Phrase", + "Senses": [ + { + "Id": "925dad47-cb4b-449c-98e4-cceea3111df3", + "Order": 1, + "DeletedAt": null, + "EntryId": "59ef9703-6190-40f2-a436-3c2a1f9d3efb", + "Definition": {}, + "Gloss": { + "en": "is what?", + "pt": "e\u0301 o que?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf6f3cdd-80cf-427c-8a20-ecaa41a01644", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "925dad47-cb4b-449c-98e4-cceea3111df3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04025f77-982c-4822-a0d7-f7d55efc54c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "jala" + }, + "CitationForm": { + "seh": "njala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "18cc7ade-d219-4a9e-acf0-01aa4d9f051d", + "Order": 1, + "DeletedAt": null, + "EntryId": "04025f77-982c-4822-a0d7-f7d55efc54c2", + "Definition": {}, + "Gloss": { + "en": "hunger", + "pt": "fome" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b1a33dd-ad50-49e6-8df0-88fe3bc98601", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "18cc7ade-d219-4a9e-acf0-01aa4d9f051d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7722f8f7-d0d7-4698-80c9-a457b316d728", + "DeletedAt": null, + "LexemeForm": { + "seh": "jazi" + }, + "CitationForm": { + "seh": "njazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f19ba77-d81e-4695-97e2-64c8b4493c57", + "Order": 1, + "DeletedAt": null, + "EntryId": "7722f8f7-d0d7-4698-80c9-a457b316d728", + "Definition": {}, + "Gloss": { + "en": "lightning", + "pt": "rela\u0302mpago" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26d05eec-4851-4760-ade6-e709a93f77fa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6f19ba77-d81e-4695-97e2-64c8b4493c57", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d8e0e0a-38bf-4482-bee0-6429f843321f", + "DeletedAt": null, + "LexemeForm": { + "seh": "njipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "03557652-bd0d-4571-9ae6-08f6e2f9da4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d8e0e0a-38bf-4482-bee0-6429f843321f", + "Definition": {}, + "Gloss": { + "en": "what?", + "pt": "o que?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "be3ad213-1b22-4ba1-b77d-dcd6bb97f47c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "03557652-bd0d-4571-9ae6-08f6e2f9da4e", + "DeletedAt": null + } + ] + }, + { + "Id": "381d322a-1473-4da9-96b4-9029da3dae48", + "Order": 2, + "DeletedAt": null, + "EntryId": "4d8e0e0a-38bf-4482-bee0-6429f843321f", + "Definition": {}, + "Gloss": { + "en": "which?", + "pt": "qual?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7ef74b8-60fb-457a-a64d-d403b4e3cce0", + "DeletedAt": null, + "LexemeForm": { + "seh": "njira" + }, + "CitationForm": { + "seh": "njira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b8a598b9-d0d4-4f2f-8104-bbd334fc5693", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7ef74b8-60fb-457a-a64d-d403b4e3cce0", + "Definition": {}, + "Gloss": { + "en": "path", + "pt": "caminho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f30f0ed6-fe61-4a8a-b8f2-9209102a610a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b8a598b9-d0d4-4f2f-8104-bbd334fc5693", + "DeletedAt": null + } + ] + }, + { + "Id": "bbff3938-1a96-4945-ba82-54a48ba05b30", + "Order": 2, + "DeletedAt": null, + "EntryId": "f7ef74b8-60fb-457a-a64d-d403b4e3cce0", + "Definition": {}, + "Gloss": { + "en": "road", + "pt": "rua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b185db8d-3c4a-4f3c-860f-8bdd1e762760", + "DeletedAt": null, + "LexemeForm": { + "seh": "jiri" + }, + "CitationForm": { + "seh": "njiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "61068445-c27a-4c9c-8143-7808c5edb94e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b185db8d-3c4a-4f3c-860f-8bdd1e762760", + "Definition": { + "en": { + "Spans": [ + { + "Text": "warthog - Phacochoerus aethiopicus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "warthog", + "pt": "javalim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c7c6d6b-80ad-4fcd-8702-c8ffcd6060c1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "61068445-c27a-4c9c-8143-7808c5edb94e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "51d78a36-3960-4369-9c35-54330153a58f", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae9a251a-d0bb-44df-b71a-249fbfc73ab5", + "Order": 1, + "DeletedAt": null, + "EntryId": "51d78a36-3960-4369-9c35-54330153a58f", + "Definition": {}, + "Gloss": { + "en": "cucumber vine", + "pt": "pepineiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3d5bcff3-31b0-4efb-8467-3283724d94d9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ae9a251a-d0bb-44df-b71a-249fbfc73ab5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea9bb7f3-7f20-4d36-9b07-6f43efb2af65", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaka" + }, + "CitationForm": { + "seh": "nkaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "77484c2b-276c-43d1-9a25-da14726f62d0", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea9bb7f3-7f20-4d36-9b07-6f43efb2af65", + "Definition": {}, + "Gloss": { + "en": "milk", + "pt": "leite" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "73de014d-79c9-43e8-bf6a-cfb8fc9beb64", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "77484c2b-276c-43d1-9a25-da14726f62d0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e2ecbe0-1426-4825-9a83-e76e77538f80", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaliboxo" + }, + "CitationForm": { + "seh": "nkaliboxo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df9aa41b-00fd-45c3-97d6-b523dd11dc8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e2ecbe0-1426-4825-9a83-e76e77538f80", + "Definition": {}, + "Gloss": { + "en": "prison", + "pt": "prisa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "32e11b09-f9f9-4c2b-8463-6bc85db6eded", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "df9aa41b-00fd-45c3-97d6-b523dd11dc8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c6320fb8-1d5b-46d3-99d4-654862db621a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamwene" + }, + "CitationForm": { + "seh": "nkamwene" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5de0fd4-03ac-453b-8fa3-8de5d9c42862", + "Order": 1, + "DeletedAt": null, + "EntryId": "c6320fb8-1d5b-46d3-99d4-654862db621a", + "Definition": {}, + "Gloss": { + "en": "son-in-law", + "pt": "genro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e29cb5f-a996-42b5-9ce7-2b22694478a8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a5de0fd4-03ac-453b-8fa3-8de5d9c42862", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "456b34db-7718-48c4-86b2-42d4c7c1c2d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkasi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c5f10432-68e2-4f53-b8e0-99775f6a5b4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "456b34db-7718-48c4-86b2-42d4c7c1c2d7", + "Definition": {}, + "Gloss": { + "en": "water turtle", + "pt": "tortaruga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "44bbd93a-4bcd-4a74-876b-0dd303e25bc8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "George", + "Ws": "en" + } + ] + }, + "SenseId": "c5f10432-68e2-4f53-b8e0-99775f6a5b4c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b923248f-2755-438e-842c-df2333443bfc", + "DeletedAt": null, + "LexemeForm": { + "seh": "kate" + }, + "CitationForm": { + "seh": "nkate" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "83098d50-1738-4b23-9e81-af91ed942dc6", + "Order": 1, + "DeletedAt": null, + "EntryId": "b923248f-2755-438e-842c-df2333443bfc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bread without yeast, by extention, any bread", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pa\u0303o sem fermento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bread", + "pt": "pa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6209811d-3697-4c4a-9451-b1c578120fcd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "83098d50-1738-4b23-9e81-af91ed942dc6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "162182b2-127d-4a8c-8c3f-cbf8f60e17e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ed1379bc-8a34-4d0a-ba8c-46436283e6e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "162182b2-127d-4a8c-8c3f-cbf8f60e17e0", + "Definition": {}, + "Gloss": { + "en": "within", + "pt": "dentro de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "80ab86ad-4f1f-40ef-a7ca-2ba7057bf3f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ed1379bc-8a34-4d0a-ba8c-46436283e6e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e87ceb25-50c6-46b7-8a35-d830b0f4330e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazali" + }, + "CitationForm": { + "seh": "nkazali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "49224fa1-f421-498a-b1ae-fb1ce0465824", + "Order": 1, + "DeletedAt": null, + "EntryId": "e87ceb25-50c6-46b7-8a35-d830b0f4330e", + "Definition": {}, + "Gloss": { + "en": "married couple", + "pt": "casal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3163668-885f-4d35-b13b-4e82d07d2491", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Canting001", + "Ws": "en" + } + ] + }, + "SenseId": "49224fa1-f421-498a-b1ae-fb1ce0465824", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eb2aed24-d79b-4050-809b-ef47bfca4d2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazi" + }, + "CitationForm": { + "seh": "nkazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e535a688-81bd-4303-9087-b7001e6f7617", + "Order": 1, + "DeletedAt": null, + "EntryId": "eb2aed24-d79b-4050-809b-ef47bfca4d2e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "feminine, woman, wife", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "woman", + "pt": "mulher" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "041f3bdd-9579-4d51-b13d-fd80c85b7e20", + "Order": 1, + "Sentence": {}, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "gato feminina", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14, 26; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e535a688-81bd-4303-9087-b7001e6f7617", + "DeletedAt": null + } + ] + }, + { + "Id": "2b4cf9c3-f860-430d-bf08-fa0b5b4db0fd", + "Order": 2, + "DeletedAt": null, + "EntryId": "eb2aed24-d79b-4050-809b-ef47bfca4d2e", + "Definition": {}, + "Gloss": { + "en": "wife", + "pt": "esposa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b450f9e0-0223-40b8-bdff-43900dfa5e15", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkhabe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "Order": 1, + "DeletedAt": null, + "EntryId": "b450f9e0-0223-40b8-bdff-43900dfa5e15", + "Definition": {}, + "Gloss": { + "en": "not 1", + "pt": "na\u0303o 1" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71a1ea0c-a1d9-4e27-9cda-09131efcde21", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Wayenda xicola leru? Nkhabe, [sidaenda tayu.]", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Foste escola hoje\u0301 na\u0303o neg-fui na\u0303o", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + }, + { + "Id": "3aa1ba2f-f8ae-4388-8646-01f1142ceffe", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkhabe kucicita", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o fazer (eu na\u0303o fiz)", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + }, + { + "Id": "0087f72a-d285-41f8-bed9-f1cdb5c34e84", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkabe kucifuna [tayu] - present", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + }, + { + "Id": "60dde44c-0a0f-4ba4-ac13-7c297526dce1", + "Order": 4, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sindacifuna [tayu] - past", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e615721-be3e-4a1c-aae5-43a64464d948", + "DeletedAt": null, + "LexemeForm": { + "seh": "khadzi" + }, + "CitationForm": { + "seh": "nkhadzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "44452f74-92ff-4438-9feb-203af775465e", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e615721-be3e-4a1c-aae5-43a64464d948", + "Definition": {}, + "Gloss": { + "en": "slug", + "pt": "concha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ca1323a-5b19-4936-8f79-cc9307f1b92a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "44452f74-92ff-4438-9feb-203af775465e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fffaca2d-d708-41e4-aa29-40ec1605f909", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaka" + }, + "CitationForm": { + "seh": "nkhaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bb70b8cd-bead-40e9-a912-6f480ba3875e", + "Order": 1, + "DeletedAt": null, + "EntryId": "fffaca2d-d708-41e4-aa29-40ec1605f909", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Pangolin, a scale covered mammal", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Pangolin", + "pt": "pangolin" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68af4bf7-36c4-4fbc-b41b-55c666b6529c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "bb70b8cd-bead-40e9-a912-6f480ba3875e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "92de151b-5b71-42fd-b205-692884a37c16", + "DeletedAt": null, + "LexemeForm": { + "seh": "khalamu" + }, + "CitationForm": { + "seh": "nkhalamu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "256f16b7-b704-452b-b830-945038083837", + "Order": 1, + "DeletedAt": null, + "EntryId": "92de151b-5b71-42fd-b205-692884a37c16", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lion, scientific name: Panthera leo", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "lion", + "pt": "lea\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b7fbf40-6a37-41f3-8ef2-4cb334df75c0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "256f16b7-b704-452b-b830-945038083837", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72a316cb-a410-4e35-af3c-f8fe40525a74", + "DeletedAt": null, + "LexemeForm": { + "seh": "khambala" + }, + "CitationForm": { + "seh": "nkhambala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8ff6235e-b9c6-40f9-bf32-b229db57e9d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "72a316cb-a410-4e35-af3c-f8fe40525a74", + "Definition": {}, + "Gloss": { + "en": "rope", + "pt": "corda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90f20fe0-18b2-401d-a524-8d4f68ecba5d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; George; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8ff6235e-b9c6-40f9-bf32-b229db57e9d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c6d6e53-29ff-4ade-91b0-074d4584070a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khanga" + }, + "CitationForm": { + "seh": "nkhanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31e99354-68f6-4fa4-9f58-9c0debddd09c", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c6d6e53-29ff-4ade-91b0-074d4584070a", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "galinha de mato", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "guinea fowl", + "pt": "galinha de mato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "948b90d8-5c03-4f24-b23c-675c1b3a7078", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "31e99354-68f6-4fa4-9f58-9c0debddd09c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9da476fa-6237-4ad4-9b28-96c7f2c9f3ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "n\u0027khangaiwa" + }, + "CitationForm": { + "seh": "nkhangaiwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e5840cc6-20ef-4564-ae10-6428aafe6d41", + "Order": 1, + "DeletedAt": null, + "EntryId": "9da476fa-6237-4ad4-9b28-96c7f2c9f3ef", + "Definition": {}, + "Gloss": { + "en": "pidgen", + "pt": "pomba" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2638f5c3-41f8-4b39-a40a-755c70bc4db4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e5840cc6-20ef-4564-ae10-6428aafe6d41", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1179a131-c9f1-44d4-93fb-2ddaf8484f4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkhodolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "22bb3b03-c9de-4d51-bd30-7ce30b7041a2", + "Order": 1, + "DeletedAt": null, + "EntryId": "1179a131-c9f1-44d4-93fb-2ddaf8484f4f", + "Definition": {}, + "Gloss": { + "en": "back of head", + "pt": "nuca" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e34c661b-05e5-4356-9a30-c5f7b8fd49b2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "22bb3b03-c9de-4d51-bd30-7ce30b7041a2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc05df92-6ce9-4da6-9cf9-845ec179d5e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkhomole" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42168c00-4637-4588-99d2-3551d7ce021f", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc05df92-6ce9-4da6-9cf9-845ec179d5e4", + "Definition": {}, + "Gloss": { + "en": "cliff", + "pt": "precipi\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "70eaa064-c760-4b91-8be2-c1fd95b99e9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "42168c00-4637-4588-99d2-3551d7ce021f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aa9c1d12-7461-42d1-9e8a-e73488d9b32a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khondo" + }, + "CitationForm": { + "seh": "nkhondo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e124eab7-6dfc-425a-ada3-332b4fbd5b85", + "Order": 1, + "DeletedAt": null, + "EntryId": "aa9c1d12-7461-42d1-9e8a-e73488d9b32a", + "Definition": {}, + "Gloss": { + "en": "war", + "pt": "guerra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db4b9141-23c8-4d39-8cf3-4bf657ee68cd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e124eab7-6dfc-425a-ada3-332b4fbd5b85", + "DeletedAt": null + } + ] + }, + { + "Id": "37a98331-4024-40ae-9a5f-f2e8f7113d28", + "Order": 2, + "DeletedAt": null, + "EntryId": "aa9c1d12-7461-42d1-9e8a-e73488d9b32a", + "Definition": {}, + "Gloss": { + "en": "battle", + "pt": "batalha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ddac28e-41b1-43b3-ba6a-5afabfbf9b2f", + "DeletedAt": null, + "LexemeForm": { + "seh": "khope" + }, + "CitationForm": { + "seh": "nkhope" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b4100f7-c8a1-40b1-9b48-a152f5ea057f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ddac28e-41b1-43b3-ba6a-5afabfbf9b2f", + "Definition": {}, + "Gloss": { + "en": "face", + "pt": "cara" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e3ec003-43da-4646-9ebd-70692731b3c9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b4100f7-c8a1-40b1-9b48-a152f5ea057f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1ed60dc-dc40-43e4-a287-622f8e0c3ff3", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuku" + }, + "CitationForm": { + "seh": "nkhuku" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c43a5b2-f283-4e9f-bc26-8a4cbcb666ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1ed60dc-dc40-43e4-a287-622f8e0c3ff3", + "Definition": {}, + "Gloss": { + "en": "chicken", + "pt": "galinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ad58f185-202c-42a8-8471-42755aceb4b8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5(fowl); Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2c43a5b2-f283-4e9f-bc26-8a4cbcb666ab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29698b20-50c5-414d-b3c6-ad7f579c8212", + "DeletedAt": null, + "LexemeForm": { + "seh": "khumba" + }, + "CitationForm": { + "seh": "nkhumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "36d939f0-1c27-43d4-ae1c-93dd6dbf721d", + "Order": 1, + "DeletedAt": null, + "EntryId": "29698b20-50c5-414d-b3c6-ad7f579c8212", + "Definition": {}, + "Gloss": { + "en": "pig", + "pt": "porco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b66626a-609c-461e-92bd-ab42b04af3a3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque says nkhamba", + "Ws": "en" + } + ] + }, + "SenseId": "36d939f0-1c27-43d4-ae1c-93dd6dbf721d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "220e0d3a-a457-49d2-9812-fafe539c5bd5", + "DeletedAt": null, + "LexemeForm": { + "seh": "khunguni" + }, + "CitationForm": { + "seh": "nkhunguni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8b0b5a08-d690-415f-bc4e-f66f5f76884c", + "Order": 1, + "DeletedAt": null, + "EntryId": "220e0d3a-a457-49d2-9812-fafe539c5bd5", + "Definition": {}, + "Gloss": { + "en": "bed bug", + "pt": "percevejo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f658de4f-ddc3-4040-a92b-3c17a9b0cced", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8b0b5a08-d690-415f-bc4e-f66f5f76884c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab3ff4f4-eb2c-4eb2-aeef-11a654aa9d6b", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuni" + }, + "CitationForm": { + "seh": "nkhuni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d7c1ad3e-fa9d-4da0-b819-ce5c82060463", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab3ff4f4-eb2c-4eb2-aeef-11a654aa9d6b", + "Definition": {}, + "Gloss": { + "en": "firewood", + "pt": "lenha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f9dc34c8-4b05-4665-be4a-fe8f3903fab9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "d7c1ad3e-fa9d-4da0-b819-ce5c82060463", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f03e85a-34f6-4645-9f7a-3d7ec4d41232", + "DeletedAt": null, + "LexemeForm": { + "seh": "khunza" + }, + "CitationForm": { + "seh": "nkhunza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "79166c0b-9275-4425-8cf4-94fd058f41d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f03e85a-34f6-4645-9f7a-3d7ec4d41232", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a small basket used to measure flour", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "basket small", + "pt": "cesta pequena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "708bee99-a3d3-4d30-b9bc-59d901ab4f0a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "79166c0b-9275-4425-8cf4-94fd058f41d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "82862c8d-9424-4e91-95b4-d24fa650eb06", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwale" + }, + "CitationForm": { + "seh": "nkhwale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ebcd115-fbd1-468d-883d-51b754651a08", + "Order": 1, + "DeletedAt": null, + "EntryId": "82862c8d-9424-4e91-95b4-d24fa650eb06", + "Definition": {}, + "Gloss": { + "en": "partridge", + "pt": "perdiz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1cf49f2b-0fec-477b-9232-206e5e78ed2c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,16", + "Ws": "en" + } + ] + }, + "SenseId": "7ebcd115-fbd1-468d-883d-51b754651a08", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "179c24e4-fb64-44a5-9145-4e404546df06", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwazi" + }, + "CitationForm": { + "seh": "nkhwazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ecfc1d9c-8d25-475a-8881-a12e26ca80b3", + "Order": 1, + "DeletedAt": null, + "EntryId": "179c24e4-fb64-44a5-9145-4e404546df06", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "guia que come peixe", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "fishhawk", + "pt": "guia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b5e69030-b92d-4b9f-a900-3e52819f251b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "ecfc1d9c-8d25-475a-8881-a12e26ca80b3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18829274-4ddc-478e-8913-65e2e9058d81", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwizi" + }, + "CitationForm": { + "seh": "nkhwizi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35baece7-ece9-448f-aa11-2c2d6752992f", + "Order": 1, + "DeletedAt": null, + "EntryId": "18829274-4ddc-478e-8913-65e2e9058d81", + "Definition": { + "en": { + "Spans": [ + { + "Text": "shrew", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "shrew", + "pt": "animal tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86844cc9-bd7e-4ccb-a081-d18d13f825e6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "35baece7-ece9-448f-aa11-2c2d6752992f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b3e2a6ef-0d7a-412a-82a7-93650300b137", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4d43343e-235c-47a8-963e-8ed7a1923e55", + "Order": 1, + "DeletedAt": null, + "EntryId": "b3e2a6ef-0d7a-412a-82a7-93650300b137", + "Definition": {}, + "Gloss": { + "en": "hemorroids", + "pt": "hemorro\u0301ides" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "70f96d60-34b7-44d7-b882-0edad0533113", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Mauricio; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4d43343e-235c-47a8-963e-8ed7a1923e55", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3ca7c7ad-c8c9-4cc8-aa6d-fe08222181ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "kono" + }, + "CitationForm": { + "seh": "nkono" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8125329e-2b09-4073-b9d2-566190f5f940", + "Order": 1, + "DeletedAt": null, + "EntryId": "3ca7c7ad-c8c9-4cc8-aa6d-fe08222181ff", + "Definition": { + "en": { + "Spans": [ + { + "Text": "arm (includes hand)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "arm", + "pt": "brac\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d714e0e7-46fc-4571-a88d-a206de719592", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira26", + "Ws": "en" + } + ] + }, + "SenseId": "8125329e-2b09-4073-b9d2-566190f5f940", + "DeletedAt": null + } + ] + }, + { + "Id": "af077c3d-81fb-440f-9bc9-28fa60edf42b", + "Order": 2, + "DeletedAt": null, + "EntryId": "3ca7c7ad-c8c9-4cc8-aa6d-fe08222181ff", + "Definition": {}, + "Gloss": { + "en": "bull", + "pt": "touro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8e72771-f29c-4062-a9e1-cd23fd7e8ffb", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkono-nkono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ef06b58-d563-41f4-b376-9ad16943b667", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8e72771-f29c-4062-a9e1-cd23fd7e8ffb", + "Definition": {}, + "Gloss": { + "en": "right side", + "pt": "a\u0300 direito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a38a158-803a-4810-bbed-25fa1423fb5e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0ef06b58-d563-41f4-b376-9ad16943b667", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ba72117-7f91-426a-a4d1-242d2783f151", + "DeletedAt": null, + "LexemeForm": { + "seh": "kondzi" + }, + "CitationForm": { + "seh": "nkonzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72479316-4b29-4461-8617-689a52c54e8d", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ba72117-7f91-426a-a4d1-242d2783f151", + "Definition": {}, + "Gloss": { + "en": "healer", + "pt": "o que cura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a44536eb-10d6-4562-b2b2-d566d5a7a8f9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "72479316-4b29-4461-8617-689a52c54e8d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "01852e43-3920-49fa-9552-0609a3026243", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkucano" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f4b02198-cc6f-42b9-b379-87670671b181", + "Order": 1, + "DeletedAt": null, + "EntryId": "01852e43-3920-49fa-9552-0609a3026243", + "Definition": {}, + "Gloss": { + "en": "day after tomorrow", + "pt": "depois de amanha" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "43fdca13-26b9-4a2b-8599-3529ea19300c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Moreira p25 (nkuca)", + "Ws": "en" + } + ] + }, + "SenseId": "f4b02198-cc6f-42b9-b379-87670671b181", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ddf24ca1-40c5-456f-b97b-35d813516e33", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkudz" + }, + "CitationForm": { + "seh": "nkudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1b4adbf5-c01a-4e04-92f6-5c8b793281e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "ddf24ca1-40c5-456f-b97b-35d813516e33", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "engrandecer em fama", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "become great", + "pt": "engrandecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "99b1527f-3ce1-4ec2-aa42-040059535e3d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1b4adbf5-c01a-4e04-92f6-5c8b793281e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "269593e9-597a-4753-9769-e9d470ed75d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "kulo" + }, + "CitationForm": { + "seh": "nkulo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "36456952-2f14-41c9-9495-eb9f1487b8fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "269593e9-597a-4753-9769-e9d470ed75d3", + "Definition": {}, + "Gloss": { + "en": "river", + "pt": "rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4153416a-784d-4f7c-a664-2640f7979a14", + "Name": { + "en": "River" + }, + "Code": "1.3.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "5a27fb12-9726-4ed0-9d4f-fae6bacbe2e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "36456952-2f14-41c9-9495-eb9f1487b8fe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21195759-1f0a-4185-b82e-1ad7a191fa22", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumba" + }, + "CitationForm": { + "seh": "nkumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14a9995f-76c2-4c3c-847a-c62b2248db58", + "Order": 1, + "DeletedAt": null, + "EntryId": "21195759-1f0a-4185-b82e-1ad7a191fa22", + "Definition": {}, + "Gloss": { + "en": "pig", + "pt": "porco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7888ac74-045d-455d-a3fa-2ce54e2b60a3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "14a9995f-76c2-4c3c-847a-c62b2248db58", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3157cb06-8ea5-488e-91ac-cef9b11f637e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbi" + }, + "CitationForm": { + "seh": "nkumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ade16bb8-0425-4ff0-9a24-8076659a7882", + "Order": 1, + "DeletedAt": null, + "EntryId": "3157cb06-8ea5-488e-91ac-cef9b11f637e", + "Definition": {}, + "Gloss": { + "en": "herd", + "pt": "mandada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e12ab888-3fd8-49a0-a4ee-e595834b3f31", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ade16bb8-0425-4ff0-9a24-8076659a7882", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfb4bca2-1bf5-45e1-a339-33d76af2e8be", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbidzi" + }, + "CitationForm": { + "seh": "nkumbidzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb77ce64-c8af-435a-ac39-07b05d2972d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfb4bca2-1bf5-45e1-a339-33d76af2e8be", + "Definition": {}, + "Gloss": { + "en": "shepherd", + "pt": "pastor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7af0059-072a-4d55-be89-b51a7c7d73f9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "fb77ce64-c8af-435a-ac39-07b05d2972d1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkuz" + }, + "CitationForm": { + "seh": "nkuza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0448ef5d-878b-498a-9d1d-93fe68eadca9", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "make grow", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "make grow", + "pt": "fazer crecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "117e3433-c049-4b92-b0e7-770a8502d48a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0448ef5d-878b-498a-9d1d-93fe68eadca9", + "DeletedAt": null + } + ] + }, + { + "Id": "836479c2-ab88-4892-81d9-91e29ecf5dc2", + "Order": 2, + "DeletedAt": null, + "EntryId": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "raise a child", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "criar crianc\u0327a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "raise", + "pt": "criar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "64fb2069-f0dc-4c51-affe-8e6ed5f660ab", + "Order": 3, + "DeletedAt": null, + "EntryId": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "magnify", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "magnificar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "magnify", + "pt": "magnificar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "90adecc0-fa11-4a93-be1b-6362ec6cbdb3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nomwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f93ba876-786d-4e5d-92b1-efc5bd29d173", + "Order": 1, + "DeletedAt": null, + "EntryId": "90adecc0-fa11-4a93-be1b-6362ec6cbdb3", + "Definition": {}, + "Gloss": { + "en": "seven", + "pt": "sete" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c5d80e09-7b92-4abc-8785-5cd78cedf14f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "f93ba876-786d-4e5d-92b1-efc5bd29d173", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8869feb4-b6ac-46a3-accd-f201b20d1cfa", + "DeletedAt": null, + "LexemeForm": { + "seh": "noz" + }, + "CitationForm": { + "seh": "noza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f4ee7520-0ff3-432a-a66f-8bbf6e0d14a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "8869feb4-b6ac-46a3-accd-f201b20d1cfa", + "Definition": {}, + "Gloss": { + "en": "sharpen", + "pt": "afiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26d127ab-09b3-42a6-a69e-4c172074cf90", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndoko kanoze mpeni.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Vai afiar faca.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "f4ee7520-0ff3-432a-a66f-8bbf6e0d14a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0934279f-70f1-463a-8046-dae18be1e38a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sala" + }, + "CitationForm": { + "seh": "nsala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f121b1d7-df23-4725-809b-477f508a3d18", + "Order": 1, + "DeletedAt": null, + "EntryId": "0934279f-70f1-463a-8046-dae18be1e38a", + "Definition": {}, + "Gloss": { + "en": "insanity", + "pt": "loucura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a583e52e-8bd3-4de7-9694-e380c69d8cbd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f121b1d7-df23-4725-809b-477f508a3d18", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adf7a985-644b-4787-a9bf-3136567c5a42", + "DeletedAt": null, + "LexemeForm": { + "seh": "sambo" + }, + "CitationForm": { + "seh": "nsambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef0ec71a-ffef-46be-8306-f1bfdac5e28d", + "Order": 1, + "DeletedAt": null, + "EntryId": "adf7a985-644b-4787-a9bf-3136567c5a42", + "Definition": {}, + "Gloss": { + "en": "custom", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8bf2870f-fc69-4fc1-be90-c0c6ae0b8dbb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ef0ec71a-ffef-46be-8306-f1bfdac5e28d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "59c0f0f4-f763-41de-8ac7-84ba48b22e35", + "DeletedAt": null, + "LexemeForm": { + "seh": "sambvu" + }, + "CitationForm": { + "seh": "nsambvu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97120ba0-66d8-4012-8c14-169f1d59b0e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "59c0f0f4-f763-41de-8ac7-84ba48b22e35", + "Definition": {}, + "Gloss": { + "en": "fig tree", + "pt": "figueira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1711394-0bad-43c4-ad3f-399f14e89959", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "97120ba0-66d8-4012-8c14-169f1d59b0e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16d8a838-b229-4042-91d3-ba65ec772520", + "DeletedAt": null, + "LexemeForm": { + "seh": "sana" + }, + "CitationForm": { + "seh": "nsana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cd22832b-fb54-4642-9d51-084ef52d6a3c", + "Order": 1, + "DeletedAt": null, + "EntryId": "16d8a838-b229-4042-91d3-ba65ec772520", + "Definition": {}, + "Gloss": { + "en": "back bone", + "pt": "coluna vertebral" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a80f12aa-c30d-4892-978a-b076985742d5", + "Name": { + "en": "Torso" + }, + "Code": "2.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f12a5029-e04d-482e-904a-bc2bf802fbc7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "cd22832b-fb54-4642-9d51-084ef52d6a3c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da5db379-e070-4b03-9b2c-acdfefcb4387", + "DeletedAt": null, + "LexemeForm": { + "seh": "sana" + }, + "CitationForm": { + "seh": "nsana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "28534efc-ce0d-4350-9559-b0547178deea", + "Order": 1, + "DeletedAt": null, + "EntryId": "da5db379-e070-4b03-9b2c-acdfefcb4387", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tree dassie, about the size of a rat, has no tail, not to be confused w/ nsenzi (cane rat) which has a tail and is bigger, tree dassie Dendrohyrax arboreus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "tree dassie", + "pt": "rato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d993fad-702c-4eef-85bc-71567edfa7a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a4eb22b0-f699-4eef-8156-c514c3071eec", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d993fad-702c-4eef-85bc-71567edfa7a7", + "Definition": {}, + "Gloss": { + "en": "fast", + "pt": "depressa" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b682872-76d2-4803-8ac5-4a7f72194484", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "hasafamba tayu mwansanga ninga sulo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "NEG-he-PRESENT-walk-VF not fast-VFIN as...as rabbit", + "Ws": "en" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2 006;Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a4eb22b0-f699-4eef-8156-c514c3071eec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "807276f4-b3bf-4dd5-a17c-869dc52a4649", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsanga-nsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "879cc03d-9848-46a6-ba1e-ec3d9de38e7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "807276f4-b3bf-4dd5-a17c-869dc52a4649", + "Definition": {}, + "Gloss": { + "en": "very fast", + "pt": "muito depressa" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5104bb86-8c29-4e28-9a30-48a5d7d06945", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "879cc03d-9848-46a6-ba1e-ec3d9de38e7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d642f8d-480a-49bc-8214-7d0a52803475", + "DeletedAt": null, + "LexemeForm": { + "seh": "sangani" + }, + "CitationForm": { + "seh": "nsangani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cd62410-e96b-493f-8296-5b403542952b", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d642f8d-480a-49bc-8214-7d0a52803475", + "Definition": {}, + "Gloss": { + "en": "proverb", + "pt": "prove\u0301rbio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0feafe15-e65b-487f-98ca-a6741e8fcc3e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8cd62410-e96b-493f-8296-5b403542952b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dc1c3df4-b24e-4112-ba97-02316d798ac8", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanganiko" + }, + "CitationForm": { + "seh": "nsanganiko" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc33f8eb-6b18-4198-b799-51af781eb949", + "Order": 1, + "DeletedAt": null, + "EntryId": "dc1c3df4-b24e-4112-ba97-02316d798ac8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "divining meeting, a meetings where leaders try to find out why someone got sick", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "reunia\u0303o de divinhar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "meeting", + "pt": "reunia\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "8e88ed6a-000d-400a-8cd8-7b3cc7f1818c", + "Name": { + "en": "Traditional medicine" + }, + "Code": "2.5.7.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "46623476-8474-47ba-b16a-aa89151fc815", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cc33f8eb-6b18-4198-b799-51af781eb949", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eb57b246-6f53-4e92-83c3-dd2840b2cf87", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanje" + }, + "CitationForm": { + "seh": "nsanje" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e47855c9-9760-478c-9e97-851e893540a6", + "Order": 1, + "DeletedAt": null, + "EntryId": "eb57b246-6f53-4e92-83c3-dd2840b2cf87", + "Definition": {}, + "Gloss": { + "en": "parable", + "pt": "para\u0301bola" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1e306cef-bcfb-4449-8b24-493e95b092ad", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e47855c9-9760-478c-9e97-851e893540a6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "10e03b4f-f0d7-44aa-b94e-c683234fbbe0", + "DeletedAt": null, + "LexemeForm": { + "seh": "sapato" + }, + "CitationForm": { + "seh": "nsapato" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d580baf8-e5f3-4c90-bbbc-5ee1b78e7b2e", + "Order": 1, + "DeletedAt": null, + "EntryId": "10e03b4f-f0d7-44aa-b94e-c683234fbbe0", + "Definition": {}, + "Gloss": { + "en": "shoe", + "pt": "sapato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6731281-ea99-4232-b9dd-285419fad6ab", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d580baf8-e5f3-4c90-bbbc-5ee1b78e7b2e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61f9964d-e748-4e7a-8026-479ab20ae14d", + "DeletedAt": null, + "LexemeForm": { + "seh": "sapo" + }, + "CitationForm": { + "seh": "nsapo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6adddc4c-c9b5-40a1-bd9e-f3a784a9f8bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "61f9964d-e748-4e7a-8026-479ab20ae14d", + "Definition": {}, + "Gloss": { + "en": "fruit", + "pt": "fruto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57fd4b99-0e3e-4a33-88e3-dffc8927d8f5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6adddc4c-c9b5-40a1-bd9e-f3a784a9f8bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75cdb613-eb3f-4c71-a874-a32e02aabdbe", + "DeletedAt": null, + "LexemeForm": { + "seh": "sawawa" + }, + "CitationForm": { + "seh": "nsawawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a9f862a5-44a1-4dbb-a58c-43bbfe24b43b", + "Order": 1, + "DeletedAt": null, + "EntryId": "75cdb613-eb3f-4c71-a874-a32e02aabdbe", + "Definition": {}, + "Gloss": { + "en": "louse", + "pt": "piolho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2db4f6b7-95b5-41b7-b590-530595706d2c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a9f862a5-44a1-4dbb-a58c-43bbfe24b43b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5947b8b-17c4-4205-a47f-d47b365adc8c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sekese" + }, + "CitationForm": { + "seh": "nsekese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6c78a046-71b7-498f-b3ea-e48b920eab7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5947b8b-17c4-4205-a47f-d47b365adc8c", + "Definition": {}, + "Gloss": { + "en": "tree type", + "pt": "arvora tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7765dc54-c4da-4bc1-a531-9719890f375e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6c78a046-71b7-498f-b3ea-e48b920eab7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "00f99de8-333b-4c51-a306-a6d54b58723a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sengere" + }, + "CitationForm": { + "seh": "nsengere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "368b3592-de73-4b0b-a65d-654e61cec4ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "00f99de8-333b-4c51-a306-a6d54b58723a", + "Definition": {}, + "Gloss": { + "en": "bamboo", + "pt": "bambu\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1aeea11d-bad4-40bf-b3af-5b26f88b925a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "368b3592-de73-4b0b-a65d-654e61cec4ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c135beb8-f267-4b72-9648-64c6dd203930", + "DeletedAt": null, + "LexemeForm": { + "seh": "senzi" + }, + "CitationForm": { + "seh": "nsenzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94bb8014-0932-47e3-a9e3-bc6cac35811c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c135beb8-f267-4b72-9648-64c6dd203930", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Cane rat, eats suger cane", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ratazana", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rat", + "pt": "ratazana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1fc57911-b7da-445e-b543-7b8e5e949f03", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "94bb8014-0932-47e3-a9e3-bc6cac35811c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3cb8518f-8fd7-4c9a-b3f8-5d2eda416436", + "DeletedAt": null, + "LexemeForm": { + "seh": "seru" + }, + "CitationForm": { + "seh": "nseru" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2d75b87d-a82c-452f-9b8d-2b62f54547f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "3cb8518f-8fd7-4c9a-b3f8-5d2eda416436", + "Definition": { + "en": { + "Spans": [ + { + "Text": "court case", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "caso de tribunal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "case", + "pt": "caso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "85214614-ab45-4805-9014-092750d47511", + "Name": { + "en": "Trial" + }, + "Code": "4.7.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fa8567b2-a282-4e5f-9006-05b65e0be5ef", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2d75b87d-a82c-452f-9b8d-2b62f54547f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5b15daa-a40c-4ab6-bc70-a200c35e1d7d", + "DeletedAt": null, + "LexemeForm": { + "seh": "seu" + }, + "CitationForm": { + "seh": "nseu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9ff4d93-0056-4ed5-b596-c2a754e15795", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5b15daa-a40c-4ab6-bc70-a200c35e1d7d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "street, paved or not", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "street", + "pt": "estrada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f9b4ce01-a1d3-46af-84e1-e596f6a9c1d1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f9ff4d93-0056-4ed5-b596-c2a754e15795", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35e35524-ee4f-4924-8e84-d6b754c7cf2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sika" + }, + "CitationForm": { + "seh": "nsika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14e0886b-48f4-4a78-94bc-3ee0ab625a34", + "Order": 1, + "DeletedAt": null, + "EntryId": "35e35524-ee4f-4924-8e84-d6b754c7cf2e", + "Definition": {}, + "Gloss": { + "en": "market place", + "pt": "mercado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "55d3be12-12a8-4246-b441-8cae8a3b3ef0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "14e0886b-48f4-4a78-94bc-3ee0ab625a34", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "333e7a30-6f26-471b-9658-fce82d3d4b17", + "DeletedAt": null, + "LexemeForm": { + "seh": "singano" + }, + "CitationForm": { + "seh": "nsingano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1bfd809b-9c02-4c32-b618-cd50e06769af", + "Order": 1, + "DeletedAt": null, + "EntryId": "333e7a30-6f26-471b-9658-fce82d3d4b17", + "Definition": { + "en": { + "Spans": [ + { + "Text": "neddle for sewing, medical injections, repair fishing nets", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "neddle", + "pt": "agulha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "124c3bbd-7848-4f2d-8aff-28a8416195fd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1bfd809b-9c02-4c32-b618-cd50e06769af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0f392c3-0823-4896-8d91-3d683de702b5", + "DeletedAt": null, + "LexemeForm": { + "seh": "sinzo" + }, + "CitationForm": { + "seh": "nsinzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7987d576-84a1-49c9-86f4-8b1933683d4f", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0f392c3-0823-4896-8d91-3d683de702b5", + "Definition": {}, + "Gloss": { + "en": "distance", + "pt": "dista\u0302ncia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ae8b6811-07b9-4f90-b260-9449dfdbd1aa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "7987d576-84a1-49c9-86f4-8b1933683d4f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1c574f5-cf21-404e-9b94-fcda93d00fc2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sisi" + }, + "CitationForm": { + "seh": "nsisi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d415fe28-d9e0-4c91-ba73-a4179d2edbe2", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1c574f5-cf21-404e-9b94-fcda93d00fc2", + "Definition": {}, + "Gloss": { + "en": "pity", + "pt": "pena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "269b17bb-43ff-4045-a4ba-38774b792ea2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nsisi zikulu maningi zidacita imwe", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "a grande misericordia que fez", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d415fe28-d9e0-4c91-ba73-a4179d2edbe2", + "DeletedAt": null + } + ] + }, + { + "Id": "4db5aa57-a073-428b-b732-689c302aede4", + "Order": 2, + "DeletedAt": null, + "EntryId": "b1c574f5-cf21-404e-9b94-fcda93d00fc2", + "Definition": {}, + "Gloss": { + "en": "compassion", + "pt": "compaxa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "681cf4ab-2e0f-4ec6-933b-382e8c6e5359", + "DeletedAt": null, + "LexemeForm": { + "seh": "situ" + }, + "CitationForm": { + "seh": "nsitu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b8858cb-989e-41b3-a6fc-79f04fd8dcc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "681cf4ab-2e0f-4ec6-933b-382e8c6e5359", + "Definition": {}, + "Gloss": { + "en": "forest", + "pt": "floresta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "025da6f4-b1b6-423a-8c0f-b324f531a6f1", + "Name": { + "en": "Plant" + }, + "Code": "1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a12bd5de-301c-4a7c-92cf-2f4fd9dad174", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "0b8858cb-989e-41b3-a6fc-79f04fd8dcc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a160f54c-b664-4792-bae7-a0cf30b1921f", + "DeletedAt": null, + "LexemeForm": { + "seh": "sodzi" + }, + "CitationForm": { + "seh": "nsodzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab4edb17-b51d-4258-b349-4bdfd1dff7d6", + "Order": 1, + "DeletedAt": null, + "EntryId": "a160f54c-b664-4792-bae7-a0cf30b1921f", + "Definition": {}, + "Gloss": { + "en": "hunter", + "pt": "cac\u0327ador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "121e8396-40c1-460d-8bf0-7f5c58b46d1e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ab4edb17-b51d-4258-b349-4bdfd1dff7d6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c2633d33-0cb9-4315-82be-058803862559", + "DeletedAt": null, + "LexemeForm": { + "seh": "sodzi" + }, + "CitationForm": { + "seh": "nsodzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5daf8137-2e36-4e03-bd23-7b41707adcde", + "Order": 1, + "DeletedAt": null, + "EntryId": "c2633d33-0cb9-4315-82be-058803862559", + "Definition": {}, + "Gloss": { + "en": "tear", + "pt": "la\u0301grima" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2043d0fb-e82a-4c6e-b6c8-8c042dc1a45d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26 Ort", + "Ws": "en" + } + ] + }, + "SenseId": "5daf8137-2e36-4e03-bd23-7b41707adcde", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "caa170d3-6942-4e87-b6d2-4577bc5d73ea", + "DeletedAt": null, + "LexemeForm": { + "seh": "soka" + }, + "CitationForm": { + "seh": "nsoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3cd74405-3950-4399-872f-dc1ca7d328df", + "Order": 1, + "DeletedAt": null, + "EntryId": "caa170d3-6942-4e87-b6d2-4577bc5d73ea", + "Definition": {}, + "Gloss": { + "en": "group", + "pt": "grupo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7c8e26b-a3ab-4764-97b5-45d513209452", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3cd74405-3950-4399-872f-dc1ca7d328df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ef66d14-cb42-412e-a51d-0c6f60471e7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "solo" + }, + "CitationForm": { + "seh": "nsolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab5b910f-08b2-4b66-93fd-596b2858cc56", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ef66d14-cb42-412e-a51d-0c6f60471e7f", + "Definition": {}, + "Gloss": { + "en": "head", + "pt": "cabec\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d2bf7e56-dbc3-4089-896c-797fef5948af", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,15; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ab5b910f-08b2-4b66-93fd-596b2858cc56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a4434311-f71d-4d69-9a62-e35d65214560", + "DeletedAt": null, + "LexemeForm": { + "seh": "sonkhano" + }, + "CitationForm": { + "seh": "nsonkhano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b80953f-959c-4364-bbec-484c1626a7c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "a4434311-f71d-4d69-9a62-e35d65214560", + "Definition": {}, + "Gloss": { + "en": "reunion", + "pt": "reunia\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c68f4982-0d61-46e9-8aa7-80a2eea8277f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0b80953f-959c-4364-bbec-484c1626a7c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8ae3cdb5-b324-404f-a8be-299c1cde277c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sonkho" + }, + "CitationForm": { + "seh": "nsonkho" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "19791fae-9fdc-4d6f-a48f-07875c335123", + "Order": 1, + "DeletedAt": null, + "EntryId": "8ae3cdb5-b324-404f-a8be-299c1cde277c", + "Definition": {}, + "Gloss": { + "en": "tax", + "pt": "imposto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8a7e617-0844-42a6-a5d1-a65080d99a02", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "19791fae-9fdc-4d6f-a48f-07875c335123", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4600ec8-5db9-48b2-a2b3-f9691ca822e1", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsua" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "2806737d-be15-4e31-b771-1dd0ce799341", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4600ec8-5db9-48b2-a2b3-f9691ca822e1", + "Definition": {}, + "Gloss": { + "en": "island", + "pt": "ilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e720efa8-7f67-4cae-84ce-985050987da7", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsunga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "851805bb-5ca7-4f6e-9f1d-1ee3e47880a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "e720efa8-7f67-4cae-84ce-985050987da7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a liquid form of yeast made from cimera used in making beer", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "fermento para cerveja", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "yeast liquid", + "pt": "fermento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86e982e6-c8b6-466a-bd2b-46e54f58ed62", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Silva", + "Ws": "en" + } + ] + }, + "SenseId": "851805bb-5ca7-4f6e-9f1d-1ee3e47880a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a5ccdd3-da6c-477b-ba26-89b22ec94419", + "DeletedAt": null, + "LexemeForm": { + "seh": "supai" + }, + "CitationForm": { + "seh": "nsupai" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a865c6d4-b15e-4fd4-9493-24405b7f5e5d", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a5ccdd3-da6c-477b-ba26-89b22ec94419", + "Definition": {}, + "Gloss": { + "en": "police", + "pt": "poli\u0301cia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "41187dba-ae36-469b-8956-b3528a38f3ea", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a865c6d4-b15e-4fd4-9493-24405b7f5e5d", + "DeletedAt": null + } + ] + }, + { + "Id": "6d230db6-8a2f-4132-9e49-1187bf3ff03e", + "Order": 2, + "DeletedAt": null, + "EntryId": "3a5ccdd3-da6c-477b-ba26-89b22ec94419", + "Definition": {}, + "Gloss": { + "en": "militia", + "pt": "mili\u0301cia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7bc078e5-c6d0-49ab-92ea-9bbb09ce3849", + "DeletedAt": null, + "LexemeForm": { + "seh": "suwa" + }, + "CitationForm": { + "seh": "nsuwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6860e918-e83d-43eb-8424-6b9e630b92fd", + "Order": 1, + "DeletedAt": null, + "EntryId": "7bc078e5-c6d0-49ab-92ea-9bbb09ce3849", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ball of corn porrige which is then dipped into the sauce in traditional table manners", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "bolo de massa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "porridge", + "pt": "massa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88875471-9160-4daa-9b1c-4a31f74d826a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6860e918-e83d-43eb-8424-6b9e630b92fd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1527e86f-556a-43b3-b0ce-accb94a0bb5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "suwo" + }, + "CitationForm": { + "seh": "nsuwo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5f151b0e-769b-43ea-8a62-ef105f427854", + "Order": 1, + "DeletedAt": null, + "EntryId": "1527e86f-556a-43b3-b0ce-accb94a0bb5d", + "Definition": {}, + "Gloss": { + "en": "door", + "pt": "porta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cdaa5bdd-c511-43eb-887c-b97fda77e455", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5f151b0e-769b-43ea-8a62-ef105f427854", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ecd9b33-540a-4fc8-af96-2fbddd4353f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7bd437c5-f64a-42c2-8e0e-3bc9abcb0cc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ecd9b33-540a-4fc8-af96-2fbddd4353f5", + "Definition": {}, + "Gloss": { + "en": "gravy", + "pt": "molho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f700bb92-59a3-4fbc-b962-8ac81899daf2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7bd437c5-f64a-42c2-8e0e-3bc9abcb0cc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "154e2689-3db4-40f0-bdf5-499db13ea4ce", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d3819b6-d016-41a6-941c-99244adac796", + "Order": 1, + "DeletedAt": null, + "EntryId": "154e2689-3db4-40f0-bdf5-499db13ea4ce", + "Definition": { + "en": { + "Spans": [ + { + "Text": "far in the interior", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "muito dentro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "far in", + "pt": "muito dentro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c36698cb-9f3a-42ea-a851-eb95895b0ec9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p25", + "Ws": "en" + } + ] + }, + "SenseId": "1d3819b6-d016-41a6-941c-99244adac796", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56eade68-7255-47e1-af7f-782188254223", + "DeletedAt": null, + "LexemeForm": { + "seh": "tambo" + }, + "CitationForm": { + "seh": "ntambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bab5b338-8f1e-4850-8077-ab3a1edd6b4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "56eade68-7255-47e1-af7f-782188254223", + "Definition": {}, + "Gloss": { + "en": "clouds", + "pt": "nuvens" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5423eb63-d96c-4945-be25-4b6005db9f10", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze \u0026 Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "bab5b338-8f1e-4850-8077-ab3a1edd6b4e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ce70c34c-410c-4278-87c8-fdff2d4e351e", + "DeletedAt": null, + "LexemeForm": { + "seh": "tanda" + }, + "CitationForm": { + "seh": "ntanda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "feddbc06-ceaa-4395-9e93-23220f990226", + "Order": 1, + "DeletedAt": null, + "EntryId": "ce70c34c-410c-4278-87c8-fdff2d4e351e", + "Definition": {}, + "Gloss": { + "en": "cross", + "pt": "crux" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e085855-76de-4f1e-92e5-9e6a842f3e32", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "feddbc06-ceaa-4395-9e93-23220f990226", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "230bce5f-1835-4a68-829d-a69e515e4f9f", + "DeletedAt": null, + "LexemeForm": { + "seh": "tanga" + }, + "CitationForm": { + "seh": "ntanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f8b04c28-6bd1-4988-8de5-5f02c4a769c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "230bce5f-1835-4a68-829d-a69e515e4f9f", + "Definition": {}, + "Gloss": { + "en": "pumpkin vine", + "pt": "aboboreira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2b52ece2-5ac7-4360-8e06-8585fa3f4a61", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f8b04c28-6bd1-4988-8de5-5f02c4a769c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c575d8f-8aa2-4a9a-84b2-627d939dc499", + "DeletedAt": null, + "LexemeForm": { + "seh": "temo" + }, + "CitationForm": { + "seh": "ntemo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ffe085a6-ebcc-4a15-8564-f006328b0d33", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c575d8f-8aa2-4a9a-84b2-627d939dc499", + "Definition": {}, + "Gloss": { + "en": "traditional law", + "pt": "lei tradicinal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3706fd08-5b98-4729-8d77-9b5bbe42f229", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ffe085a6-ebcc-4a15-8564-f006328b0d33", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16cffb0a-7f0e-401f-a035-c467a974074b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tenda" + }, + "CitationForm": { + "seh": "ntenda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "100834ce-ed34-4f91-b36d-ef47034ec7b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "16cffb0a-7f0e-401f-a035-c467a974074b", + "Definition": {}, + "Gloss": { + "en": "sick person", + "pt": "doente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8aa0bacd-d06d-48df-bc9b-7633ff841efa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "100834ce-ed34-4f91-b36d-ef47034ec7b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72675443-a294-4dab-b502-1419834323a1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tendere" + }, + "CitationForm": { + "seh": "ntendere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d974749d-666b-4d63-9b8d-156ad768e9b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "72675443-a294-4dab-b502-1419834323a1", + "Definition": {}, + "Gloss": { + "en": "peace", + "pt": "paz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "678ebf00-2516-48ea-9519-7d65e2026498", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisafunadi ntendere m\u0027Mosambiki.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Mesmo quero paz em Moc\u0327ambique.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d974749d-666b-4d63-9b8d-156ad768e9b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75803e82-5565-4905-ab83-ec777636c870", + "DeletedAt": null, + "LexemeForm": { + "seh": "tengo" + }, + "CitationForm": { + "seh": "ntengo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "659a1576-f97c-4613-baec-9e6c64986014", + "Order": 1, + "DeletedAt": null, + "EntryId": "75803e82-5565-4905-ab83-ec777636c870", + "Definition": {}, + "Gloss": { + "en": "number", + "pt": "nu\u0301mero" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4b27c44b-1a6e-4238-8940-8938ee56ae2a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "659a1576-f97c-4613-baec-9e6c64986014", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e96b1074-d2fc-400d-b283-f9f2e8af8dca", + "DeletedAt": null, + "LexemeForm": { + "seh": "tete" + }, + "CitationForm": { + "seh": "ntete" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c95f1739-469b-4753-b871-afe192303f69", + "Order": 1, + "DeletedAt": null, + "EntryId": "e96b1074-d2fc-400d-b283-f9f2e8af8dca", + "Definition": {}, + "Gloss": { + "en": "cane", + "pt": "canisa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "401670ea-4c2d-4507-829c-30b72f6acb90", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c95f1739-469b-4753-b871-afe192303f69", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8ca39043-9d1a-4bae-93e1-a5823d8ae6cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthalaunda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "90c935cb-79d1-4644-ad82-74d34cca515c", + "Order": 1, + "DeletedAt": null, + "EntryId": "8ca39043-9d1a-4bae-93e1-a5823d8ae6cc", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "area, zona", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "area", + "pt": "area" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b61c1ac3-cf65-43d5-8b00-88d356fe65f8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "90c935cb-79d1-4644-ad82-74d34cca515c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8cf523f3-caa0-416b-9b58-318edd2ca3d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "authambi" + }, + "CitationForm": { + "seh": "nthambi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cfcb6cb-208e-40dc-ba97-89d7832abeab", + "Order": 1, + "DeletedAt": null, + "EntryId": "8cf523f3-caa0-416b-9b58-318edd2ca3d1", + "Definition": {}, + "Gloss": { + "en": "liar", + "pt": "mentirosos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f3afd86-b9e0-4e5a-b80c-ac809d050200", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8cfcb6cb-208e-40dc-ba97-89d7832abeab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30323a8a-405a-4ad3-82b3-9086dfdbc10b", + "DeletedAt": null, + "LexemeForm": { + "seh": "thawi" + }, + "CitationForm": { + "seh": "nthawi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "495e4687-518a-4bd8-8c2b-66a69dd4b275", + "Order": 1, + "DeletedAt": null, + "EntryId": "30323a8a-405a-4ad3-82b3-9086dfdbc10b", + "Definition": {}, + "Gloss": { + "en": "branch", + "pt": "ramo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5e88847-1098-4c07-b205-f9278648f4cf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "495e4687-518a-4bd8-8c2b-66a69dd4b275", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49cc9257-90c7-4fe0-a9e0-2c8d72aa5e2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "thembe" + }, + "CitationForm": { + "seh": "nthembe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2fdb0790-644f-4d6f-a123-4d88a0f842ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "49cc9257-90c7-4fe0-a9e0-2c8d72aa5e2b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "animal skin alone, after it is taken off the body", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "animal skin", + "pt": "pele de animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3adbb8a1-163e-4e4f-a9c5-4cfe052f8eca", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2fdb0790-644f-4d6f-a123-4d88a0f842ea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b053eb5d-836a-462b-a2dc-ad19ef0c5bab", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthenda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07568c02-2000-430b-a0c7-41e626dc39f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "b053eb5d-836a-462b-a2dc-ad19ef0c5bab", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a sickness specific", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "uma doenc\u0327a specifica", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "a sickness", + "pt": "uma doenc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cea724a6-3356-43a9-bc16-5fb5fffdc165", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthenga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "11486f77-4bb3-4882-a1c0-045fb45d216b", + "Order": 1, + "DeletedAt": null, + "EntryId": "cea724a6-3356-43a9-bc16-5fb5fffdc165", + "Definition": {}, + "Gloss": { + "en": "feather", + "pt": "pena de ave" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aa29b0fc-e491-40ae-8493-4b6bf59cb212", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "11486f77-4bb3-4882-a1c0-045fb45d216b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0a60edba-1656-448b-83f8-fe9cc27b5282", + "DeletedAt": null, + "LexemeForm": { + "seh": "thete" + }, + "CitationForm": { + "seh": "nthete" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8ecaca7b-0fd8-4dda-bc35-3d914fd897a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "0a60edba-1656-448b-83f8-fe9cc27b5282", + "Definition": {}, + "Gloss": { + "en": "grasshopper", + "pt": "gafanhoto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7dcc92e-9b13-4ad2-beaf-8d1be861372b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8ecaca7b-0fd8-4dda-bc35-3d914fd897a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "52c7195d-4ddc-41ec-81cc-5fd560039e4e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thonga" + }, + "CitationForm": { + "seh": "nthonga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "688c63ab-91b6-43f2-821f-71d3ec409900", + "Order": 1, + "DeletedAt": null, + "EntryId": "52c7195d-4ddc-41ec-81cc-5fd560039e4e", + "Definition": {}, + "Gloss": { + "en": "noise", + "pt": "barulho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4d215a1-f5b2-460f-9f66-1ea813550b87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:14", + "Ws": "en" + } + ] + }, + "SenseId": "688c63ab-91b6-43f2-821f-71d3ec409900", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "977d1248-a6b7-4398-be8a-e89de0e3913e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumbi" + }, + "CitationForm": { + "seh": "nthumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3dc4981b-71d2-4d87-9ba3-b3be486eca63", + "Order": 1, + "DeletedAt": null, + "EntryId": "977d1248-a6b7-4398-be8a-e89de0e3913e", + "Definition": {}, + "Gloss": { + "en": "tomb", + "pt": "tu\u0301mulo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1177e519-43dc-4758-b121-e94d46df06d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3dc4981b-71d2-4d87-9ba3-b3be486eca63", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "34ef8407-af64-4d17-8cc2-1cf8a542ff6e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthuyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "23541917-3a2c-44c3-ba49-8970a207eeb6", + "Order": 1, + "DeletedAt": null, + "EntryId": "34ef8407-af64-4d17-8cc2-1cf8a542ff6e", + "Definition": {}, + "Gloss": { + "en": "Suricate", + "pt": "raposa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a5706d75-ba84-43e5-a3b9-a917071b39b3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Rogerio knows as raposa", + "Ws": "en" + } + ] + }, + "SenseId": "23541917-3a2c-44c3-ba49-8970a207eeb6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4586fe24-4cb1-42b9-8c0c-ade3f8a5492b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tima" + }, + "CitationForm": { + "seh": "ntima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "566a7159-a3f7-4d7e-8878-78da37d657d7", + "Order": 1, + "DeletedAt": null, + "EntryId": "4586fe24-4cb1-42b9-8c0c-ade3f8a5492b", + "Definition": {}, + "Gloss": { + "en": "heart", + "pt": "corac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f9fd5f0e-4b16-4503-bbad-105217256ce5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "566a7159-a3f7-4d7e-8878-78da37d657d7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c0a6616-ba67-4060-80d9-c0d5bf5c7086", + "DeletedAt": null, + "LexemeForm": { + "seh": "tolo" + }, + "CitationForm": { + "seh": "ntolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "358c3a82-6cb9-4f98-9279-411ed528fb86", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c0a6616-ba67-4060-80d9-c0d5bf5c7086", + "Definition": {}, + "Gloss": { + "en": "bagage", + "pt": "bagagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f2bc9d9-f930-43c1-abd7-707827d0e2ee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "358c3a82-6cb9-4f98-9279-411ed528fb86", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3495b0d4-1bd5-4d38-b617-57e86ad7b5d8", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntondono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3b4c5a61-8b47-4c5d-8616-070fb2a66296", + "Order": 1, + "DeletedAt": null, + "EntryId": "3495b0d4-1bd5-4d38-b617-57e86ad7b5d8", + "Definition": {}, + "Gloss": { + "en": "three days after", + "pt": "tre\u0302s dias depois" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "704d083d-5ef6-4f87-a67e-2037dbdcf0e8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p25 (says:ntondo)", + "Ws": "en" + } + ] + }, + "SenseId": "3b4c5a61-8b47-4c5d-8616-070fb2a66296", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba01aa6b-ad84-43ba-92d7-d8876cf02e6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "tongi" + }, + "CitationForm": { + "seh": "ntongi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "05060894-c1ca-462e-8fb4-008eb27df73b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba01aa6b-ad84-43ba-92d7-d8876cf02e6a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "an authority, a judge", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "an authority", + "pt": "um autoridade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd7d0c9c-791e-4c34-b9ed-ebddad8f9724", + "Name": { + "en": "Judge, render a verdict" + }, + "Code": "4.7.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7ab9fdcd-dc86-4f11-bfff-0d3a9a389b6b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "05060894-c1ca-462e-8fb4-008eb27df73b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2846c365-b52c-4a90-a25c-0bf63af135be", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanza" + }, + "CitationForm": { + "seh": "ntsanza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "999ab06c-80a3-4baf-998e-63a288376c10", + "Order": 1, + "DeletedAt": null, + "EntryId": "2846c365-b52c-4a90-a25c-0bf63af135be", + "Definition": {}, + "Gloss": { + "en": "nest", + "pt": "ninho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7cd3d60e-6222-4dc9-8ec6-a01a9287a9b2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "999ab06c-80a3-4baf-998e-63a288376c10", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a895c7e0-22f9-41a3-a888-f1707bd773a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsekese" + }, + "CitationForm": { + "seh": "ntsekese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cabdee9b-7858-4dde-876a-7efda599239c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a895c7e0-22f9-41a3-a888-f1707bd773a2", + "Definition": {}, + "Gloss": { + "en": "tree type", + "pt": "arvora tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f9043803-da4f-40fc-ba41-4974996d0461", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsekese" + }, + "CitationForm": { + "seh": "ntsekese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fde8ceed-ce62-404a-b0ff-89f51bfe846a", + "Order": 1, + "DeletedAt": null, + "EntryId": "f9043803-da4f-40fc-ba41-4974996d0461", + "Definition": { + "en": { + "Spans": [ + { + "Text": "chicken that lays eggs", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "pullet", + "pt": "frango" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "1618fc66-e12c-4d04-8dd2-bb583bbd69eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "fde8ceed-ce62-404a-b0ff-89f51bfe846a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8cd98155-a0d4-4170-b766-0460c17ab946", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsembe" + }, + "CitationForm": { + "seh": "ntsembe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aac9e30b-ddff-43c7-a81b-ab10fde04118", + "Order": 1, + "DeletedAt": null, + "EntryId": "8cd98155-a0d4-4170-b766-0460c17ab946", + "Definition": { + "en": { + "Spans": [ + { + "Text": "victim of a sacrifice", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "a sacrifice", + "pt": "um sacrifi\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cc6d53dc-3a76-4479-b615-65689f1f2147", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5 (says also host)", + "Ws": "en" + } + ] + }, + "SenseId": "aac9e30b-ddff-43c7-a81b-ab10fde04118", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b9021548-9a9c-410c-9be0-28741c8610c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsengwa" + }, + "CitationForm": { + "seh": "ntsengwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad2de11b-1f83-49d6-b52e-7e4f608bfd6d", + "Order": 1, + "DeletedAt": null, + "EntryId": "b9021548-9a9c-410c-9be0-28741c8610c0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "an open basket made of reed used to carry food", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "basket open", + "pt": "cesta aberta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f9b73b19-876c-40c6-9305-063b89c75936", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ad2de11b-1f83-49d6-b52e-7e4f608bfd6d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0240b39e-7c46-43e3-ba95-b7377da4b36b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsikana" + }, + "CitationForm": { + "seh": "ntsikana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b8db0515-daaa-4a7c-a992-5d59faa5ac10", + "Order": 1, + "DeletedAt": null, + "EntryId": "0240b39e-7c46-43e3-ba95-b7377da4b36b", + "Definition": {}, + "Gloss": { + "en": "girl", + "pt": "rapariga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "344d6007-dc7e-4e9c-a8ed-14909053ffd1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:26", + "Ws": "en" + } + ] + }, + "SenseId": "b8db0515-daaa-4a7c-a992-5d59faa5ac10", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "673db415-bbdb-4866-88fa-be37082d02df", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsiku" + }, + "CitationForm": { + "seh": "ntsiku" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "12147f94-e581-4f63-bac4-cde9ed2a0828", + "Order": 1, + "DeletedAt": null, + "EntryId": "673db415-bbdb-4866-88fa-be37082d02df", + "Definition": {}, + "Gloss": { + "en": "day", + "pt": "dia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1dc0b4bd-e7bd-49bf-969d-8b5fb79b4414", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsima" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3021e436-8d59-431a-923e-6675fef9338c", + "Order": 1, + "DeletedAt": null, + "EntryId": "1dc0b4bd-e7bd-49bf-969d-8b5fb79b4414", + "Definition": {}, + "Gloss": { + "en": "corn meal", + "pt": "massa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5218845-e760-402d-8aff-a092e2a38dbb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3021e436-8d59-431a-923e-6675fef9338c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4ef85e38-27a4-4ba0-b1aa-5b647f5baae3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsogoleri" + }, + "CitationForm": { + "seh": "ntsogoleri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "635276eb-6ed8-4b78-8c27-204adecdf03c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4ef85e38-27a4-4ba0-b1aa-5b647f5baae3", + "Definition": {}, + "Gloss": { + "en": "leader", + "pt": "lider" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "902cfcbe-6e42-4e55-b2a5-9146702fc16b", + "Name": { + "en": "Guide" + }, + "Code": "7.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecf9ebd7-f991-41df-98cd-bcf1254d5d0b", + "Name": { + "en": "Go first" + }, + "Code": "7.2.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "185e434d-9c17-4b50-8957-7a16cf35c433", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "635276eb-6ed8-4b78-8c27-204adecdf03c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2a378802-8cf5-44fa-bd31-3e16fdf9e496", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsorri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8431ffc5-7a7a-4959-b414-4f5b8a4f5af9", + "Order": 1, + "DeletedAt": null, + "EntryId": "2a378802-8cf5-44fa-bd31-3e16fdf9e496", + "Definition": {}, + "Gloss": { + "en": "pullet", + "pt": "frango" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "09643d26-5604-4c2e-a8f3-e8bc40572cfc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "8431ffc5-7a7a-4959-b414-4f5b8a4f5af9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1bf1e09-8292-4ee1-b2d0-25a8299983c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsuwa" + }, + "CitationForm": { + "seh": "ntsuwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b113ea41-e7b3-4a5d-a5bc-221da8935393", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1bf1e09-8292-4ee1-b2d0-25a8299983c6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "game of stones in holes, Mancala, Wari", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "un jogo tradicional com pedras e baracos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "game", + "pt": "jogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a3d95c6a-4b0b-4af0-aca8-addd042becd2", + "Name": { + "en": "Play, fun" + }, + "Code": "4.2.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "57d3b11f-c7d1-417f-8e88-c02efe57d0e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b113ea41-e7b3-4a5d-a5bc-221da8935393", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cedec827-0443-4c44-92fa-9538230131f1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tumwi" + }, + "CitationForm": { + "seh": "ntumwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e97eb2cc-192e-4975-923f-3c1a6de8df0e", + "Order": 1, + "DeletedAt": null, + "EntryId": "cedec827-0443-4c44-92fa-9538230131f1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "messenger, sent one, angel, gives or does what was sent for", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "messengeiro, enviado, anjo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "messenger", + "pt": "messengeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "8d266c98-9db3-4d3e-b204-956aa848ffa5", + "Name": { + "en": "Communication devices" + }, + "Code": "3.5.9.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "6ce178a3-7def-4590-b4df-4bc84459166c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "e97eb2cc-192e-4975-923f-3c1a6de8df0e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "becf491a-a26b-460e-aca6-9cb5ba7bc4cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "tunda" + }, + "CitationForm": { + "seh": "ntunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4f8b6ad-d902-4e14-947e-696ffdc396ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "becf491a-a26b-460e-aca6-9cb5ba7bc4cc", + "Definition": {}, + "Gloss": { + "en": "dry land", + "pt": "terra seca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90b8cbaf-1f02-4455-818e-8d72ff51a593", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ntunda unango wa bara", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "outra lado de mar", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "a4f8b6ad-d902-4e14-947e-696ffdc396ec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9b49e45-e8a0-4028-a578-fcf5d40e19a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntundu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "19498627-ef76-4992-af1a-a69edcd03198", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9b49e45-e8a0-4028-a578-fcf5d40e19a4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a group of people who are of a different ethnic group", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "groupo differente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "group", + "pt": "groupo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "23372178-5acd-483f-b4dd-502e2ede59e6", + "DeletedAt": null, + "LexemeForm": { + "seh": "tundo" + }, + "CitationForm": { + "seh": "ntuntho" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e3029014-e00b-4144-a33c-cf8c91c5ed5b", + "Order": 1, + "DeletedAt": null, + "EntryId": "23372178-5acd-483f-b4dd-502e2ede59e6", + "Definition": {}, + "Gloss": { + "en": "types", + "pt": "especia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2dd8f4ef-54ed-4413-8594-c4eb12f01c3d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu acita mituntho yonsene ya pinyama.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Deus fez todas as especias de animais.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e3029014-e00b-4144-a33c-cf8c91c5ed5b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "51b9eb6e-ba89-4b3a-91c3-44579e74eab6", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntunzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff10bede-29cb-4bd1-96bc-c5dd503f8ed6", + "Order": 1, + "DeletedAt": null, + "EntryId": "51b9eb6e-ba89-4b3a-91c3-44579e74eab6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spirit of the dead", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "espi\u0301rito do morto", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "spirit", + "pt": "espi\u0301rito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1cb79293-d4f7-4990-9f50-3bb595744f61", + "Name": { + "en": "Soul, spirit" + }, + "Code": "3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f6c81fb-02a4-415f-a363-fb11cc6b9254", + "Name": { + "en": "Supernatural being" + }, + "Code": "4.9.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fb089b3c-6dd0-4eb6-83c6-61588e95cc9c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "ff10bede-29cb-4bd1-96bc-c5dd503f8ed6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d5470b7-d6c7-4103-b8fa-126060a95ac6", + "DeletedAt": null, + "LexemeForm": { + "seh": "tupo" + }, + "CitationForm": { + "seh": "ntupo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4f6c11e-9abb-4bc2-9303-66945fb7e2f7", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d5470b7-d6c7-4103-b8fa-126060a95ac6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "clan name, praise name", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "clan name", + "pt": "nome de cla\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a781d57d-174d-47a6-b6a1-ae635a13df84", + "Name": { + "en": "Family, clan" + }, + "Code": "4.1.9.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "6db5c091-8624-4935-b142-a2ad3131e4fa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a4f6c11e-9abb-4bc2-9303-66945fb7e2f7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4faa1169-875a-4f42-8aea-0c30581350cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "nu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b486f62d-fbef-46de-978f-e8882a8964e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "4faa1169-875a-4f42-8aea-0c30581350cf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "your", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "vossa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2P", + "pt": "2P" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb0168f7-fa1e-4300-b9f5-da9ce65ec872", + "DeletedAt": null, + "LexemeForm": { + "seh": "numph" + }, + "CitationForm": { + "seh": "numpha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e191820-913b-4f14-b6ad-c445e44c0a92", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb0168f7-fa1e-4300-b9f5-da9ce65ec872", + "Definition": {}, + "Gloss": { + "en": "jump", + "pt": "saltar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "872e14a4-1cff-4f0d-915f-c3f867e0a28a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8e191820-913b-4f14-b6ad-c445e44c0a92", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32440709-e7da-4ac2-8de1-a87fecaedaff", + "DeletedAt": null, + "LexemeForm": { + "seh": "nungu" + }, + "CitationForm": { + "seh": "nungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f7a5db1-0591-4c48-af24-9f9eb2bffca3", + "Order": 1, + "DeletedAt": null, + "EntryId": "32440709-e7da-4ac2-8de1-a87fecaedaff", + "Definition": { + "en": { + "Spans": [ + { + "Text": "porcupine", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "porcupine", + "pt": "porco-espinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1cebb71f-d0ec-47e1-9cf5-188c5ce81d27", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "6f7a5db1-0591-4c48-af24-9f9eb2bffca3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5b3febe7-3f43-4e6f-b40b-34f42e5fa01d", + "DeletedAt": null, + "LexemeForm": { + "seh": "nunkh" + }, + "CitationForm": { + "seh": "nunkha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "80a94d07-3222-4db9-8c81-dc0b5d0f72a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "5b3febe7-3f43-4e6f-b40b-34f42e5fa01d", + "Definition": {}, + "Gloss": { + "en": "smell", + "pt": "cheirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe8bd76c-c1ac-42d7-b8e7-424f0c49af6f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "80a94d07-3222-4db9-8c81-dc0b5d0f72a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8299a1ca-500a-48e5-868a-dfd07d1099bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "nya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "6502591c-41f0-45ea-8126-df8a747c1ee5", + "Order": 1, + "DeletedAt": null, + "EntryId": "8299a1ca-500a-48e5-868a-dfd07d1099bb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "-er", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Nominalizer", + "pt": "nominalizador" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "124ea6a8-2a7c-4344-8b59-9a2f44f0871c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nyakufamba nyamatanya", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "6502591c-41f0-45ea-8126-df8a747c1ee5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3510001d-d4a8-40a5-a373-2d0341ded6c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyabasa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e81ec0f7-ef1b-469d-a6a3-6f6dcd5a4b13", + "Order": 1, + "DeletedAt": null, + "EntryId": "3510001d-d4a8-40a5-a373-2d0341ded6c3", + "Definition": {}, + "Gloss": { + "en": "worker", + "pt": "trabalhador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ab692c3-0831-4c55-9010-002aff120a53", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e81ec0f7-ef1b-469d-a6a3-6f6dcd5a4b13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "529949ad-beb7-413a-a981-29aa2fd2ed3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyacinthu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78303856-fbc9-49b6-9fb8-487990aacddd", + "Order": 1, + "DeletedAt": null, + "EntryId": "529949ad-beb7-413a-a981-29aa2fd2ed3c", + "Definition": {}, + "Gloss": { + "en": "owner", + "pt": "dono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6895f4b-56c5-4478-8834-c56eaba94b44", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "78303856-fbc9-49b6-9fb8-487990aacddd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fe5c64e5-9fe6-4b8f-9373-4b2787831758", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyadzedze" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c2c9938c-a798-43e6-a720-5fbb815afaab", + "Order": 1, + "DeletedAt": null, + "EntryId": "fe5c64e5-9fe6-4b8f-9373-4b2787831758", + "Definition": {}, + "Gloss": { + "en": "bad luck", + "pt": "azar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ad0338ba-5d36-4599-8357-748dcf2cf500", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c2c9938c-a798-43e6-a720-5fbb815afaab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "66b58f34-8893-4a3b-b44d-690b88a29dc6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyadzis" + }, + "CitationForm": { + "seh": "nyadzisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b0a57d5-c230-42a6-89ca-56f677db2e3d", + "Order": 1, + "DeletedAt": null, + "EntryId": "66b58f34-8893-4a3b-b44d-690b88a29dc6", + "Definition": {}, + "Gloss": { + "en": "shame", + "pt": "envergonhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6d9db7ff-682b-4139-a36f-1e1c9208b653", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0b0a57d5-c230-42a6-89ca-56f677db2e3d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d169edb-a7d9-49d4-9704-383108e2f6c4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyagrinya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "81cd6c56-0d05-45fa-b101-f42183055887", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d169edb-a7d9-49d4-9704-383108e2f6c4", + "Definition": {}, + "Gloss": { + "en": "slave girl", + "pt": "scravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b39d3116-9c70-4e71-8694-6e7eb4ceb85d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:20 says servant girl; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "81cd6c56-0d05-45fa-b101-f42183055887", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2098fe21-5936-4c3a-a66e-0faa7fb4245e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakalemalema" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "55a92fd8-0ced-486d-ad63-a44033517c10", + "Order": 1, + "DeletedAt": null, + "EntryId": "2098fe21-5936-4c3a-a66e-0faa7fb4245e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "bat", + "pt": "morcego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c4f48d5e-6779-4176-8ea7-463eb12d2e70", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "55a92fd8-0ced-486d-ad63-a44033517c10", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c6ea6e29-547d-499d-a585-169497a3f186", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakapheru\u0301-pheru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "706da4f3-c698-4f9c-a850-aa18ebd8af13", + "Order": 1, + "DeletedAt": null, + "EntryId": "c6ea6e29-547d-499d-a585-169497a3f186", + "Definition": {}, + "Gloss": { + "en": "butterfly", + "pt": "borboleta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d74b2158-c3a8-430a-af84-54ea6dbfd7fc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "706da4f3-c698-4f9c-a850-aa18ebd8af13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c466764-5b3c-4166-b7d1-bd178fdc5eb5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakatangale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98a8489b-53d8-4498-8c4d-39db5a3351a0", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c466764-5b3c-4166-b7d1-bd178fdc5eb5", + "Definition": {}, + "Gloss": { + "en": "flute", + "pt": "flouta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "91ddf495-a28b-4a32-90dc-6f997d0cd069", + "Name": { + "en": "Musical instrument" + }, + "Code": "4.2.3.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "564bcbe5-b22a-4ba6-87b3-698f34706bae", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "98a8489b-53d8-4498-8c4d-39db5a3351a0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aa95cb4d-2a46-44b3-af55-587793bf988c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakatendewa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b2ccc71-e17b-4b23-83ce-c55d93d405e8", + "Order": 1, + "DeletedAt": null, + "EntryId": "aa95cb4d-2a46-44b3-af55-587793bf988c", + "Definition": {}, + "Gloss": { + "en": "chameleon", + "pt": "camalea\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "17950350-c0b5-40b4-921b-f9f7a85ec7f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "6b2ccc71-e17b-4b23-83ce-c55d93d405e8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6898396e-eb4c-4d33-924c-989e78fe6c81", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakhonbze" + }, + "CitationForm": { + "seh": "nyakhobze" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65226cdb-93f2-4c6e-9d8a-46efc17f30ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "6898396e-eb4c-4d33-924c-989e78fe6c81", + "Definition": { + "en": { + "Spans": [ + { + "Text": "an animal like a gazelle", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "animal type", + "pt": "tipo animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "983e3762-985e-404e-849b-4ebcc7d13ca6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "65226cdb-93f2-4c6e-9d8a-46efc17f30ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cc07acd6-130f-4504-b02c-0219b3008728", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakucerenga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c55a5fd1-efd5-4069-afde-a04f621c695f", + "Order": 1, + "DeletedAt": null, + "EntryId": "cc07acd6-130f-4504-b02c-0219b3008728", + "Definition": {}, + "Gloss": { + "en": "poor person", + "pt": "pobre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a5cefc6-f6f7-491b-8264-1ef7ee347c11", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c55a5fd1-efd5-4069-afde-a04f621c695f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a50c356d-8742-4aa7-99c5-b733f7bc1bee", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakucherenga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b50cb098-aec2-47aa-9a3c-79dc42f5140e", + "Order": 1, + "DeletedAt": null, + "EntryId": "a50c356d-8742-4aa7-99c5-b733f7bc1bee", + "Definition": {}, + "Gloss": { + "en": "poor person", + "pt": "pessoa pobre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aff5fc33-3937-472a-954c-b6b72e28d0e5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b50cb098-aec2-47aa-9a3c-79dc42f5140e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b0b9def-5194-44ec-af26-d270483dfc19", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakucinga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a899604f-eb0f-49aa-bcee-ff35bfb31929", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b0b9def-5194-44ec-af26-d270483dfc19", + "Definition": {}, + "Gloss": { + "en": "barber", + "pt": "barbeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b3b96835-bf84-4b2c-81de-5b927c3a87b8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "a899604f-eb0f-49aa-bcee-ff35bfb31929", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "848c98f2-6d5e-4ad8-a63a-ee0c8c0eafc2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakudalo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "77e42cbd-8448-4559-90e9-43b6afbef901", + "Order": 1, + "DeletedAt": null, + "EntryId": "848c98f2-6d5e-4ad8-a63a-ee0c8c0eafc2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "traditional prophet", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "profeta tradicional", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "prophet", + "pt": "profeta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "41851d93-b323-450b-8341-686d9f1eee41", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "77e42cbd-8448-4559-90e9-43b6afbef901", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b9988df-225c-48f4-ac5f-59744fb3972e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakufunza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88be5194-7358-4a16-93c0-b40ed7081384", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b9988df-225c-48f4-ac5f-59744fb3972e", + "Definition": {}, + "Gloss": { + "en": "student", + "pt": "estudante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ea5ac30-ea3a-4447-87e0-112b868a5430", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "88be5194-7358-4a16-93c0-b40ed7081384", + "DeletedAt": null + } + ] + }, + { + "Id": "12466f00-d0d2-47b3-8500-e63420d61e83", + "Order": 2, + "DeletedAt": null, + "EntryId": "4b9988df-225c-48f4-ac5f-59744fb3972e", + "Definition": {}, + "Gloss": { + "en": "discipulo", + "pt": "discipulo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c3ce4d0b-fafd-4e6c-b76d-180fd351e719", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakukumba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57c4f23c-09e7-48b6-8652-ce1d91acaeaf", + "Order": 1, + "DeletedAt": null, + "EntryId": "c3ce4d0b-fafd-4e6c-b76d-180fd351e719", + "Definition": {}, + "Gloss": { + "en": "ploughman", + "pt": "cavador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2c66e9c8-0ad0-4109-86a1-62545fd44d69", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "57c4f23c-09e7-48b6-8652-ce1d91acaeaf", + "DeletedAt": null + } + ] + }, + { + "Id": "fc1d89f8-d156-485e-8a87-1e52f5ff4f54", + "Order": 2, + "DeletedAt": null, + "EntryId": "c3ce4d0b-fafd-4e6c-b76d-180fd351e719", + "Definition": {}, + "Gloss": { + "en": "quarry-man", + "pt": "cabouqueiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9d860d31-9e48-4b78-abca-a4957c8570d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakulamala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ac1edb2-e1c0-4132-af39-a8f05581d963", + "Order": 1, + "DeletedAt": null, + "EntryId": "9d860d31-9e48-4b78-abca-a4957c8570d0", + "Definition": {}, + "Gloss": { + "en": "lame", + "pt": "coxo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bf82e80b-ee9f-42b0-9a1f-d9b9f65da9b1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1ac1edb2-e1c0-4132-af39-a8f05581d963", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0f5bd4c-8cc3-4fd7-a2b7-30f8b5a17f02", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakulima" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b91e4033-75fb-44ad-b0ed-76c4684e4933", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0f5bd4c-8cc3-4fd7-a2b7-30f8b5a17f02", + "Definition": {}, + "Gloss": { + "en": "farmer", + "pt": "lavrador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e43d6d85-4ef0-4a69-bc73-b196ef1dc9a9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "b91e4033-75fb-44ad-b0ed-76c4684e4933", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5c8f8918-db6b-47ef-9e95-00c7979889c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakulotera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5a8385e0-a9bf-4d95-9f19-75704214b093", + "Order": 1, + "DeletedAt": null, + "EntryId": "5c8f8918-db6b-47ef-9e95-00c7979889c2", + "Definition": {}, + "Gloss": { + "en": "seer", + "pt": "adivinhador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ee14b08-c8f3-42f7-b6b9-7e7d28e46d1c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5a8385e0-a9bf-4d95-9f19-75704214b093", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "53f5e2c2-e32c-474b-b769-c95ab8b021dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakumana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e9e4898-3e17-40ce-8fb9-bd603c82474a", + "Order": 1, + "DeletedAt": null, + "EntryId": "53f5e2c2-e32c-474b-b769-c95ab8b021dd", + "Definition": {}, + "Gloss": { + "en": "selfish one", + "pt": "guloso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da87b64e-ac4e-4dee-9616-2a629e4fa625", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakunyengerera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "85ae067e-bdc2-41bc-838a-e6859e16ad51", + "Order": 1, + "DeletedAt": null, + "EntryId": "da87b64e-ac4e-4dee-9616-2a629e4fa625", + "Definition": {}, + "Gloss": { + "en": "deceiver", + "pt": "enganador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "256dc80d-5f22-4451-a71f-0cc8e2b31c53", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "85ae067e-bdc2-41bc-838a-e6859e16ad51", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33d655c6-8898-4f6a-a64a-b9a85d851c60", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakupulumusa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "53c8b485-af48-4e9f-8caa-bcec1e7fe66a", + "Order": 1, + "DeletedAt": null, + "EntryId": "33d655c6-8898-4f6a-a64a-b9a85d851c60", + "Definition": {}, + "Gloss": { + "en": "savior", + "pt": "salvador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21abd2a7-b72b-40da-97ee-6ba7dcf04f79", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "53c8b485-af48-4e9f-8caa-bcec1e7fe66a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6652a08a-8461-4345-acf2-0b1ed3068d84", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakutongi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88185ef7-0946-4133-88a3-00efb760e4e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "6652a08a-8461-4345-acf2-0b1ed3068d84", + "Definition": {}, + "Gloss": { + "en": "leader", + "pt": "dirigente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f1335146-7975-42ee-b779-b8f7b7b5e883", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "88185ef7-0946-4133-88a3-00efb760e4e1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ace5e592-4cb8-4fe4-b3ea-a9c70d1d9d41", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakwawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e2394edc-16a7-4558-ab4f-163a80a8b095", + "Order": 1, + "DeletedAt": null, + "EntryId": "ace5e592-4cb8-4fe4-b3ea-a9c70d1d9d41", + "Definition": {}, + "Gloss": { + "en": "ruler", + "pt": "re\u0301gulo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "5f3e44b8-e94c-49b4-9e2d-1acd93dddf75", + "Name": { + "en": "Government official" + }, + "Code": "4.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "5bae26b2-423e-4e8a-b8b6-4194e20377bb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e2394edc-16a7-4558-ab4f-163a80a8b095", + "DeletedAt": null + } + ] + }, + { + "Id": "d73db95c-3883-4848-a2b6-d6b16a9989b0", + "Order": 2, + "DeletedAt": null, + "EntryId": "ace5e592-4cb8-4fe4-b3ea-a9c70d1d9d41", + "Definition": {}, + "Gloss": { + "en": "province" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a82cddfb-3e00-4a2d-bf02-a1e4e4d617e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "yale" + }, + "CitationForm": { + "seh": "nyale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65f74be4-09d7-4350-8d36-d175af72fadb", + "Order": 1, + "DeletedAt": null, + "EntryId": "a82cddfb-3e00-4a2d-bf02-a1e4e4d617e0", + "Definition": {}, + "Gloss": { + "en": "lamp", + "pt": "candieiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c53098f-e9fe-401b-b2af-b06fda122439", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth (luz); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "65f74be4-09d7-4350-8d36-d175af72fadb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "25bf4f24-5c66-4c5c-a919-cc794317af7b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyalo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b6332ab-c4b6-43e6-a2ec-6e8803e2b524", + "Order": 1, + "DeletedAt": null, + "EntryId": "25bf4f24-5c66-4c5c-a919-cc794317af7b", + "Definition": {}, + "Gloss": { + "en": "sole of foot", + "pt": "planta de pe\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "84a1af8c-860e-443a-90bf-3aa121b8003b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0b6332ab-c4b6-43e6-a2ec-6e8803e2b524", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbd2bcd7-449f-4675-836d-745bcfa45435", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyalugwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41b1a905-20e2-468f-bf42-8f4a963112a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbd2bcd7-449f-4675-836d-745bcfa45435", + "Definition": { + "en": { + "Spans": [ + { + "Text": "leopard - Panthera pardus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "leopard", + "pt": "leopardo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "052428d3-6d26-42ee-8d4a-12c4967537ef", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque;Moreira:14; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "41b1a905-20e2-468f-bf42-8f4a963112a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3371fcfb-84d0-47cb-aeef-70d71830953c", + "DeletedAt": null, + "LexemeForm": { + "seh": "yama" + }, + "CitationForm": { + "seh": "nyama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b60d62f9-0ee8-4b1c-8a4a-d79be94424a4", + "Order": 1, + "DeletedAt": null, + "EntryId": "3371fcfb-84d0-47cb-aeef-70d71830953c", + "Definition": {}, + "Gloss": { + "en": "meat", + "pt": "carne" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "5c348090-12f4-4c83-8331-e10971bbc8d3", + "Name": { + "en": "Meat" + }, + "Code": "5.2.3.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "d54a264a-d1a7-4cb2-ae82-95a06954b179", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b60d62f9-0ee8-4b1c-8a4a-d79be94424a4", + "DeletedAt": null + } + ] + }, + { + "Id": "98e5e096-618a-48f9-a711-52c2f1fefbc0", + "Order": 2, + "DeletedAt": null, + "EntryId": "3371fcfb-84d0-47cb-aeef-70d71830953c", + "Definition": {}, + "Gloss": { + "en": "animal", + "pt": "animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "944cf5af-469e-4b03-878f-a05d34b0d9f6", + "Name": { + "en": "Animal" + }, + "Code": "1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "033baf4d-cb5c-4d66-b8c6-69b18eceddac", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyama ya m\u0027madzi" + }, + "CitationForm": { + "seh": "nyama ya m\u0027madzi" + }, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "2333b0a2-0459-4779-adf0-915c7fc632d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "033baf4d-cb5c-4d66-b8c6-69b18eceddac", + "Definition": {}, + "Gloss": { + "en": "fish", + "pt": "peixe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4dba2f05-f072-47bd-8635-5ab45c684ae2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2333b0a2-0459-4779-adf0-915c7fc632d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "414d2d64-8996-454c-858f-d790156963f4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamalonda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca489d31-36ba-4184-b468-507c8d97ec05", + "Order": 1, + "DeletedAt": null, + "EntryId": "414d2d64-8996-454c-858f-d790156963f4", + "Definition": {}, + "Gloss": { + "en": "merchant", + "pt": "comerciante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2be257b-cdd9-424e-b436-ff0a4a96f34f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ca489d31-36ba-4184-b468-507c8d97ec05", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d9675151-65bb-4ee0-bf21-fb15ad14cccc", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamalwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f95a8db0-2124-443f-bb9e-f1b842f4ee23", + "Order": 1, + "DeletedAt": null, + "EntryId": "d9675151-65bb-4ee0-bf21-fb15ad14cccc", + "Definition": {}, + "Gloss": { + "en": "enemy", + "pt": "inimigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8f973c27-f10d-41f0-bb96-95e6ff4093ff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:45", + "Ws": "en" + } + ] + }, + "SenseId": "f95a8db0-2124-443f-bb9e-f1b842f4ee23", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ca499033-105c-4ce4-95f8-725e6c0c5aab", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamawo" + }, + "CitationForm": { + "seh": "nyamaso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "793be52b-5f0e-4dfc-8e66-1ee2087be5e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "ca499033-105c-4ce4-95f8-725e6c0c5aab", + "Definition": {}, + "Gloss": { + "en": "observer", + "pt": "observador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b346b016-2958-4e02-b0c3-27788a7242fd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "793be52b-5f0e-4dfc-8e66-1ee2087be5e6", + "DeletedAt": null + } + ] + }, + { + "Id": "55a0d8b6-b407-41ea-be39-458bdb197473", + "Order": 2, + "DeletedAt": null, + "EntryId": "ca499033-105c-4ce4-95f8-725e6c0c5aab", + "Definition": {}, + "Gloss": { + "en": "inspector", + "pt": "inspector" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a52ba05-a374-4f16-992a-2f6840d54575", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamisonkho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e81f57e9-8551-4014-81be-661d69576fc9", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a52ba05-a374-4f16-992a-2f6840d54575", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "cobrador do impostos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "tax collector", + "pt": "cobrador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1d1c8a0e-441a-4732-940d-3eadbe8182ea", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e81f57e9-8551-4014-81be-661d69576fc9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da09dd6b-da20-4f79-bc4f-f76af044ff1d", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamudzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5927f31d-3bb0-4201-a042-3f46ee311c07", + "Order": 1, + "DeletedAt": null, + "EntryId": "da09dd6b-da20-4f79-bc4f-f76af044ff1d", + "Definition": {}, + "Gloss": { + "en": "house owner", + "pt": "dono de casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "51cb83f4-75fb-4d5b-94dd-b1a71375a94c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32;(says inhabitant); Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "5927f31d-3bb0-4201-a042-3f46ee311c07", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "396ad4a4-9b58-4ecf-937d-ceed777345df", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyancidwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73a9f31b-4988-40cd-ae46-ac58775ed9ff", + "Order": 1, + "DeletedAt": null, + "EntryId": "396ad4a4-9b58-4ecf-937d-ceed777345df", + "Definition": {}, + "Gloss": { + "en": "frog", + "pt": "sapo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f60708f4-2b0e-4678-be57-870d234d7da9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "73a9f31b-4988-40cd-ae46-ac58775ed9ff", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3cebff4b-17b2-447e-aaad-edf2856b9217", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyandalo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ddf80ef-f9b0-440c-aa72-ac59d78baadf", + "Order": 1, + "DeletedAt": null, + "EntryId": "3cebff4b-17b2-447e-aaad-edf2856b9217", + "Definition": { + "en": { + "Spans": [ + { + "Text": "traditional prophet", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "profeta tradicional", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "prophet", + "pt": "profeta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "147c2e58-9ae8-460f-8cab-bf04a668945d", + "Name": { + "en": "Prophecy" + }, + "Code": "4.9.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2830b72-c642-484f-9485-24682aa11ed8", + "Name": { + "en": "Omen, divination" + }, + "Code": "4.9.4.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "775fbee4-c4fd-425e-877a-cb01cc4e6d4e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7ddf80ef-f9b0-440c-aa72-ac59d78baadf", + "DeletedAt": null + } + ] + }, + { + "Id": "9ba68ba6-39f7-4b0c-a084-7574eb1425c5", + "Order": 2, + "DeletedAt": null, + "EntryId": "3cebff4b-17b2-447e-aaad-edf2856b9217", + "Definition": {}, + "Gloss": { + "en": "medium", + "pt": "me\u0301dium" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d812ff4e-aac3-4d5f-a4a6-45d87005a131", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyanfutete" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eb384ce8-1bb2-47a5-9ba6-fb1e8aa1ab92", + "Order": 1, + "DeletedAt": null, + "EntryId": "d812ff4e-aac3-4d5f-a4a6-45d87005a131", + "Definition": {}, + "Gloss": { + "en": "paralytic", + "pt": "paraletico" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c2dbe83a-d638-45ac-a6d5-5f041b9dde71", + "Name": { + "en": "Disabled" + }, + "Code": "2.5.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "026881f6-224a-45d3-9c02-b00d63b1ee04", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "eb384ce8-1bb2-47a5-9ba6-fb1e8aa1ab92", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3e8204af-c0f3-428e-baaf-b534c0c703d6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyanfuwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94bc3a57-f0e9-4554-bf68-a1e48f9c1128", + "Order": 1, + "DeletedAt": null, + "EntryId": "3e8204af-c0f3-428e-baaf-b534c0c703d6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Common molerat, has large incisors, Cyptomys hottentotus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "molerat", + "pt": "rato tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "54af375c-bb2d-4824-bb86-5225afee8cc6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "94bc3a57-f0e9-4554-bf68-a1e48f9c1128", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08c1c69c-66c0-4af2-899b-eed5a1b9396d", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyang\u0027ang\u0027a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9bf15869-a62b-46b3-97f7-6e9755eefcb9", + "Order": 1, + "DeletedAt": null, + "EntryId": "08c1c69c-66c0-4af2-899b-eed5a1b9396d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bushbaby, noted for its night cry, any of Family Lorisidae", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "galagonidae, tipo de primata pequeno e noturno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bushbaby", + "pt": "macaco tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb7e2c81-0ee8-491b-bc95-fdc9635c7194", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "9bf15869-a62b-46b3-97f7-6e9755eefcb9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d825efa-82dd-490e-9d6d-173fe7e41ae3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyang\u0027ombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d69ce9d9-b848-4d2f-ae20-139cc5c39a4f", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d825efa-82dd-490e-9d6d-173fe7e41ae3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cattle herdsman", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "criador do gado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "herdsman", + "pt": "criador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dc7858f0-6f4e-49d0-a044-64adbf7c8a90", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "d69ce9d9-b848-4d2f-ae20-139cc5c39a4f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d499f97-5535-4d31-81dc-3d9a62efc508", + "DeletedAt": null, + "LexemeForm": { + "seh": "yanga" + }, + "CitationForm": { + "seh": "nyanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea83300d-198d-4a01-a5c7-02d69e8ecb6d", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d499f97-5535-4d31-81dc-3d9a62efc508", + "Definition": {}, + "Gloss": { + "en": "horn", + "pt": "chifre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "e92bd326-f254-48d9-b4e4-49c88ee14866", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist;Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "ea83300d-198d-4a01-a5c7-02d69e8ecb6d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dbf5e159-f53c-4700-9a75-53f1bf7d58b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyangalis" + }, + "CitationForm": { + "seh": "nyangalisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86f75dd8-5f35-49b6-bad7-b56faeee989e", + "Order": 1, + "DeletedAt": null, + "EntryId": "dbf5e159-f53c-4700-9a75-53f1bf7d58b2", + "Definition": {}, + "Gloss": { + "en": "tickle", + "pt": "fazer co\u0302cegas" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ce3cc90-0840-423a-8ec8-0e813a4e0c04", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "86f75dd8-5f35-49b6-bad7-b56faeee989e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78f34f65-66e3-4c8a-a2f2-b88b51fecda4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyansala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fb899f4-3e60-4da5-ae2f-bc193922ee2b", + "Order": 1, + "DeletedAt": null, + "EntryId": "78f34f65-66e3-4c8a-a2f2-b88b51fecda4", + "Definition": {}, + "Gloss": { + "en": "insane person", + "pt": "maluco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a01a1900-fc1f-462e-ba3d-ae822711b034", + "Name": { + "en": "Mental illness" + }, + "Code": "2.5.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4bac5a6b-38fb-4c79-81f3-8912413b34eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "8fb899f4-3e60-4da5-ae2f-bc193922ee2b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0d7681f-9ac1-4356-ad16-9b55dedea127", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyantsembe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0add00b4-215f-48b4-9cd9-4a6ea9cdea9e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0d7681f-9ac1-4356-ad16-9b55dedea127", + "Definition": {}, + "Gloss": { + "en": "priest", + "pt": "sacerdote" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "9f792202-8023-4ef3-b269-5ae4b6908a0b", + "Name": { + "en": "Offering, sacrifice" + }, + "Code": "4.9.5.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "134b2ae8-afd8-40a0-be09-3b5edc84ec9a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0add00b4-215f-48b4-9cd9-4a6ea9cdea9e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2b425a5e-3e36-4be3-83b8-607e4cb27057", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyanyas" + }, + "CitationForm": { + "seh": "nyanyasa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "97adf28c-c672-4948-8fa6-9a5c480c3d28", + "Order": 1, + "DeletedAt": null, + "EntryId": "2b425a5e-3e36-4be3-83b8-607e4cb27057", + "Definition": {}, + "Gloss": { + "en": "be disgusting", + "pt": "e\u0301 nogento" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "ed7930df-e7b4-43c9-a11a-b09521276b57", + "Name": { + "en": "Smell" + }, + "Code": "2.3.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "da0003c0-33dc-4d24-ba81-c89651257327", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Njira ino isandinyanyasa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Rua este e\u0301 nogento.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "97adf28c-c672-4948-8fa6-9a5c480c3d28", + "DeletedAt": null + }, + { + "Id": "aff852f5-ed49-408d-9197-298cd0e4c9db", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Pidalonga iwe pindinyanyasa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Coisa que tu disseste na\u0303o gostei.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist says \u0022sujo\u0022; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "97adf28c-c672-4948-8fa6-9a5c480c3d28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "117cfde6-29f1-40d3-a456-87adfa7e4098", + "DeletedAt": null, + "LexemeForm": { + "seh": "yanza" + }, + "CitationForm": { + "seh": "nyanza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d8b9835-607a-4a5f-a7e0-d36258e48b85", + "Order": 1, + "DeletedAt": null, + "EntryId": "117cfde6-29f1-40d3-a456-87adfa7e4098", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large river or lake", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "river", + "pt": "rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4153416a-784d-4f7c-a664-2640f7979a14", + "Name": { + "en": "River" + }, + "Code": "1.3.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4dc0ceec-6331-4c7c-a6a3-4789f3da7f52", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "1d8b9835-607a-4a5f-a7e0-d36258e48b85", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f45d42a-bd1d-49c3-979e-3c88821a57f3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyapaketi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "74ecc498-4610-44d3-8bf1-e94e0a6bf71c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f45d42a-bd1d-49c3-979e-3c88821a57f3", + "Definition": {}, + "Gloss": { + "en": "sailor", + "pt": "marinheiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "29f49e77-8dba-498c-8f01-eec317756498", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "74ecc498-4610-44d3-8bf1-e94e0a6bf71c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bf6d2007-5e0c-4aa2-8cf3-a6bdd6ab668c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyarumbi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f1b22f18-4fff-468a-b40c-d38b79a4e1e9", + "Order": 1, + "DeletedAt": null, + "EntryId": "bf6d2007-5e0c-4aa2-8cf3-a6bdd6ab668c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "person who comes alongside at the time of death to help the family, becomes like a member of the family", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "grave digger", + "pt": "conveiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b20ff211-0b97-4c30-a961-39e5540f635b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f1b22f18-4fff-468a-b40c-d38b79a4e1e9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e10f84a4-5293-45c0-85be-529583600fa2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyasa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9a0e9e70-85ee-4730-abd3-06b24cd7f4b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "e10f84a4-5293-45c0-85be-529583600fa2", + "Definition": {}, + "Gloss": { + "en": "gazell", + "pt": "gazela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e462418-98c1-4023-9edc-299134ccf9c4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "9a0e9e70-85ee-4730-abd3-06b24cd7f4b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9f0442e0-e702-4d89-98a1-6b4cb9fe9805", + "DeletedAt": null, + "LexemeForm": { + "seh": "yati" + }, + "CitationForm": { + "seh": "nyati" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e7864414-f020-4453-a46a-a2e783a319bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "9f0442e0-e702-4d89-98a1-6b4cb9fe9805", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Cape buffalo", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Cape buffalo", + "pt": "bu\u0301falo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f6e47575-1e0f-46ad-b18e-5efc1799550e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "e7864414-f020-4453-a46a-a2e783a319bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "637142a1-200e-4496-a5e3-55c0ebc5de13", + "DeletedAt": null, + "LexemeForm": { + "seh": "yatwa" + }, + "CitationForm": { + "seh": "nyatwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ecd8c68d-5241-40e9-93df-05bf46a70474", + "Order": 1, + "DeletedAt": null, + "EntryId": "637142a1-200e-4496-a5e3-55c0ebc5de13", + "Definition": {}, + "Gloss": { + "en": "suffering", + "pt": "sofrimento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cdb0735-c4bf-4ab8-9eb1-95667fc83167", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyaunthaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87a4f889-f5e3-4a58-b4d2-851f7994fd50", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cdb0735-c4bf-4ab8-9eb1-95667fc83167", + "Definition": {}, + "Gloss": { + "en": "heir", + "pt": "herdeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "163c99fd-94f7-4bfe-a672-88fd831e6d3c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,32; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "87a4f889-f5e3-4a58-b4d2-851f7994fd50", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4bd22e9d-0246-460b-9c72-8a354ee61623", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyawance" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "713209b8-5687-42da-8a9f-0c4194df9c33", + "Order": 1, + "DeletedAt": null, + "EntryId": "4bd22e9d-0246-460b-9c72-8a354ee61623", + "Definition": {}, + "Gloss": { + "en": "cereal type", + "pt": "tipo cereal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6f57d658-bd0b-4030-80c3-ea054dcef2b6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "713209b8-5687-42da-8a9f-0c4194df9c33", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "44d51b2c-5c95-4c43-928a-3cc583e61c1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyengerer" + }, + "CitationForm": { + "seh": "nyengerera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa3dbb29-03c4-4bbd-9cae-d6d7e43d31c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "44d51b2c-5c95-4c43-928a-3cc583e61c1e", + "Definition": {}, + "Gloss": { + "en": "deceive", + "pt": "enganhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "48a06b6a-5354-48d4-8b80-39a0a450ff47", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "aa3dbb29-03c4-4bbd-9cae-d6d7e43d31c9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61673e8e-d55c-4d0d-99b4-8e8a1cef008b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyenyen" + }, + "CitationForm": { + "seh": "nyenyena" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be6b1547-a452-400b-8bfb-b4911b6f3cb9", + "Order": 1, + "DeletedAt": null, + "EntryId": "61673e8e-d55c-4d0d-99b4-8e8a1cef008b", + "Definition": {}, + "Gloss": { + "en": "chew", + "pt": "roer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb794646-1e34-4aa0-bdce-da744120084d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "be6b1547-a452-400b-8bfb-b4911b6f3cb9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a3b3d633-d4a3-4f8b-b5a0-2c301d971a99", + "DeletedAt": null, + "LexemeForm": { + "seh": "yenyezi" + }, + "CitationForm": { + "seh": "nyenyezi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c903a4d7-2f95-4fe9-908b-9878d753aba3", + "Order": 1, + "DeletedAt": null, + "EntryId": "a3b3d633-d4a3-4f8b-b5a0-2c301d971a99", + "Definition": {}, + "Gloss": { + "en": "star", + "pt": "estrela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1941734-7d28-4cee-8fc8-5cd27906fb27", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c903a4d7-2f95-4fe9-908b-9878d753aba3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0aa351f-d56e-40bb-9dbd-91c3327b7585", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyerezer" + }, + "CitationForm": { + "seh": "nyerezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2d50f802-27d2-438a-8761-fa5c754d237a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0aa351f-d56e-40bb-9dbd-91c3327b7585", + "Definition": { + "en": { + "Spans": [ + { + "Text": "think, reflect", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "think", + "pt": "pensar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b28eae3-03ff-4875-b265-125a1033e3bd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Jac; Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2d50f802-27d2-438a-8761-fa5c754d237a", + "DeletedAt": null + } + ] + }, + { + "Id": "abc99545-0202-43ed-be8f-7264687ca3e9", + "Order": 2, + "DeletedAt": null, + "EntryId": "e0aa351f-d56e-40bb-9dbd-91c3327b7585", + "Definition": {}, + "Gloss": { + "en": "remember", + "pt": "recordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "511ca549-5c45-48f2-9ceb-d4ce6d86e66b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Usanyerezera pida cita iwe?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Do you remember what you did?", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Recorda aquele que voces fez?", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "abc99545-0202-43ed-be8f-7264687ca3e9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "54039880-5aa8-45b7-9f25-98acb594db45", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyezek" + }, + "CitationForm": { + "seh": "nyezeka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1325055b-2112-4ca8-8998-c64dd7c06071", + "Order": 1, + "DeletedAt": null, + "EntryId": "54039880-5aa8-45b7-9f25-98acb594db45", + "Definition": {}, + "Gloss": { + "en": "broken", + "pt": "quebrado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "885d6bf6-6316-42bd-9e1f-97cd4e0727ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "yimbo" + }, + "CitationForm": { + "seh": "nyimbo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01066106-cffb-43a3-8bb5-c62b81b88f48", + "Order": 1, + "DeletedAt": null, + "EntryId": "885d6bf6-6316-42bd-9e1f-97cd4e0727ef", + "Definition": {}, + "Gloss": { + "en": "song", + "pt": "canc\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21b070e3-d0b0-4df4-ae76-39be4b50587b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "01066106-cffb-43a3-8bb5-c62b81b88f48", + "DeletedAt": null + } + ] + }, + { + "Id": "83979ad4-d05c-440d-8979-55584e2cd670", + "Order": 2, + "DeletedAt": null, + "EntryId": "885d6bf6-6316-42bd-9e1f-97cd4e0727ef", + "Definition": {}, + "Gloss": { + "en": "hymn", + "pt": "hino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93c20da6-1bc0-4af5-8080-b424115bc466", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyindir" + }, + "CitationForm": { + "seh": "nyindira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72f793c5-1b2c-43f0-9754-7dc192c6d153", + "Order": 1, + "DeletedAt": null, + "EntryId": "93c20da6-1bc0-4af5-8080-b424115bc466", + "Definition": {}, + "Gloss": { + "en": "trust", + "pt": "confiar 2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00860aad-7f1d-4cac-b7a8-652cc24df642", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "72f793c5-1b2c-43f0-9754-7dc192c6d153", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c074ea74-6c5a-422e-bd61-25686afa54f0", + "DeletedAt": null, + "LexemeForm": { + "seh": "yoka" + }, + "CitationForm": { + "seh": "nyoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0eab6051-3e88-4006-94c2-bf686688ff8c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c074ea74-6c5a-422e-bd61-25686afa54f0", + "Definition": {}, + "Gloss": { + "en": "snake", + "pt": "serpente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "83b27e1e-ab89-48ce-b74e-0262746b8a97", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0eab6051-3e88-4006-94c2-bf686688ff8c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6a15c1e-0d46-4e48-ba62-56f28b185b87", + "DeletedAt": null, + "LexemeForm": { + "seh": "yota" + }, + "CitationForm": { + "seh": "nyota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d7e19fe-4e89-4473-9b0d-b1daf3378f4a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6a15c1e-0d46-4e48-ba62-56f28b185b87", + "Definition": {}, + "Gloss": { + "en": "thirst", + "pt": "sede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ddae7766-de32-465c-a7be-4a2dd5efa9b4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1d7e19fe-4e89-4473-9b0d-b1daf3378f4a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aee8dece-00ea-4705-9405-384e12faee8e", + "DeletedAt": null, + "LexemeForm": { + "seh": "yumba" + }, + "CitationForm": { + "seh": "nyumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ceccd7ea-1268-4e04-a017-c929c4c6ccf6", + "Order": 1, + "DeletedAt": null, + "EntryId": "aee8dece-00ea-4705-9405-384e12faee8e", + "Definition": {}, + "Gloss": { + "en": "house", + "pt": "casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d61f48b1-920d-4bdd-9156-cc938026cf92", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ceccd7ea-1268-4e04-a017-c929c4c6ccf6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd913fd4-9c6a-4afb-bc2a-fbd6b1d70e85", + "DeletedAt": null, + "LexemeForm": { + "seh": "nzawo" + }, + "CitationForm": { + "seh": "nzace" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c910b6c-cf3c-4bd5-b975-55217a5e15f3", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd913fd4-9c6a-4afb-bc2a-fbd6b1d70e85", + "Definition": {}, + "Gloss": { + "en": "companion", + "pt": "companheiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df3324cb-61a2-4cf0-a339-922baea302e8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2c910b6c-cf3c-4bd5-b975-55217a5e15f3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9fb811ea-34bc-49a8-81c5-7993ea219da6", + "DeletedAt": null, + "LexemeForm": { + "seh": "zakazi" + }, + "CitationForm": { + "seh": "nzakazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "16f52de8-f3c0-4eb0-bb16-e5ead6689294", + "Order": 1, + "DeletedAt": null, + "EntryId": "9fb811ea-34bc-49a8-81c5-7993ea219da6", + "Definition": {}, + "Gloss": { + "en": "slave", + "pt": "escravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3cf77dea-7c50-499f-8953-deafaa30452d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "16f52de8-f3c0-4eb0-bb16-e5ead6689294", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "651b37c1-2b3c-409c-bab2-2b1193ab0c38", + "DeletedAt": null, + "LexemeForm": { + "seh": "zimu" + }, + "CitationForm": { + "seh": "nzimu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "307e4826-e570-4309-a661-0c09ce55f8ee", + "Order": 1, + "DeletedAt": null, + "EntryId": "651b37c1-2b3c-409c-bab2-2b1193ab0c38", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ancestor spirit", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "espirito de antepassado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "spirit", + "pt": "espirito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1cb79293-d4f7-4990-9f50-3bb595744f61", + "Name": { + "en": "Soul, spirit" + }, + "Code": "3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f6c81fb-02a4-415f-a363-fb11cc6b9254", + "Name": { + "en": "Supernatural being" + }, + "Code": "4.9.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c4cf426b-d3db-4e3e-929e-7aa534e217fa", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nzimwace akwata Mulungu. (Heins:98)", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Deus levou o espi\u0301rito dele.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "307e4826-e570-4309-a661-0c09ce55f8ee", + "DeletedAt": null + } + ] + }, + { + "Id": "e1fae09d-3261-4997-872c-f478b9ee9c7b", + "Order": 2, + "DeletedAt": null, + "EntryId": "651b37c1-2b3c-409c-bab2-2b1193ab0c38", + "Definition": {}, + "Gloss": { + "en": "human soul", + "pt": "alma humana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d7466b7-b566-4df9-babc-ee52ee9aab59", + "DeletedAt": null, + "LexemeForm": { + "seh": "zou" + }, + "CitationForm": { + "seh": "nzou" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3e08d5cd-0d4b-4a8d-a2da-30e0c85d4309", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d7466b7-b566-4df9-babc-ee52ee9aab59", + "Definition": {}, + "Gloss": { + "en": "elephant", + "pt": "elefante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dcf393d6-838f-4e7d-b2fd-72e59338aef1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16 ndzou; Wordlist nzou", + "Ws": "en" + } + ] + }, + "SenseId": "3e08d5cd-0d4b-4a8d-a2da-30e0c85d4309", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75361262-037f-45c6-82f8-53617a4c4566", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungu" + }, + "CitationForm": { + "seh": "nzungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "43eb9d22-183b-4e8f-8b62-76711d9d9c4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "75361262-037f-45c6-82f8-53617a4c4566", + "Definition": {}, + "Gloss": { + "en": "white person", + "pt": "pessoa branco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b9eb2cf-915d-4f70-8c01-97be5a591110", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "43eb9d22-183b-4e8f-8b62-76711d9d9c4e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "699a9535-a304-48ff-a2ba-355102edc41f", + "DeletedAt": null, + "LexemeForm": { + "seh": "o" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "7fdfd1bd-5073-4c74-8d99-a0272b0b7817", + "Order": 1, + "DeletedAt": null, + "EntryId": "699a9535-a304-48ff-a2ba-355102edc41f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "indicates the result or outcome of an action", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "action", + "pt": "acc\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "06314ba4-c1dc-4a15-b24d-c49dffed2e9e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cipwazo", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "despising", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "7fdfd1bd-5073-4c74-8d99-a0272b0b7817", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41d09df3-8c11-4be4-b1f3-485649545e2a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ombol" + }, + "CitationForm": { + "seh": "ombola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01660702-0cff-44c1-bca0-7299180d70d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "41d09df3-8c11-4be4-b1f3-485649545e2a", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "salvar pessoa duma crise", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "free", + "pt": "livrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3403fa76-8703-4476-b872-c0b7eb53eb83", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "01660702-0cff-44c1-bca0-7299180d70d3", + "DeletedAt": null + } + ] + }, + { + "Id": "c8df1ccd-8f18-4c95-a4e3-04c0f25a714e", + "Order": 2, + "DeletedAt": null, + "EntryId": "41d09df3-8c11-4be4-b1f3-485649545e2a", + "Definition": {}, + "Gloss": { + "en": "save", + "pt": "salvar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a720a295-aa60-43e3-901a-23db69fc113f", + "DeletedAt": null, + "LexemeForm": { + "seh": "on" + }, + "CitationForm": { + "seh": "ona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fe25565c-e101-47c5-b92e-2f699c7f72c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a720a295-aa60-43e3-901a-23db69fc113f", + "Definition": {}, + "Gloss": { + "en": "see", + "pt": "ver" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "119a010b-4110-4052-aa1a-c0b7d0e108d3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "fe25565c-e101-47c5-b92e-2f699c7f72c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65420ebf-20d7-4881-b799-9944cd7b881f", + "DeletedAt": null, + "LexemeForm": { + "seh": "oneka" + }, + "CitationForm": { + "seh": "onekF" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bb3908d9-79a1-4af3-a976-06db433da5a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "65420ebf-20d7-4881-b799-9944cd7b881f", + "Definition": {}, + "Gloss": { + "en": "happen", + "pt": "acontece" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b533926-c366-48bb-ae1f-c57aecdee670", + "DeletedAt": null, + "LexemeForm": { + "seh": "wongo" + }, + "CitationForm": { + "seh": "ongo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f5a038ca-f12d-4786-a7b5-76cb62c0c806", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b533926-c366-48bb-ae1f-c57aecdee670", + "Definition": {}, + "Gloss": { + "en": "brain", + "pt": "ce\u0301rebro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9bbd91e8-d4b9-4fe9-b2d1-cccf975dab99", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f5a038ca-f12d-4786-a7b5-76cb62c0c806", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "48ea4cc9-6b60-4f40-8b8e-2c25e411fc8f", + "DeletedAt": null, + "LexemeForm": { + "seh": "onsene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5f08fd4c-f27d-4990-959b-ded9fc67887f", + "Order": 1, + "DeletedAt": null, + "EntryId": "48ea4cc9-6b60-4f40-8b8e-2c25e411fc8f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "all , everyone, everything", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "toda , todo, tudo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "all", + "pt": "todo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f91e178-6f81-42b3-8fe0-eedcf226372b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5f08fd4c-f27d-4990-959b-ded9fc67887f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adf6a3e4-04ca-4f59-ae11-6127351ee694", + "DeletedAt": null, + "LexemeForm": { + "seh": "pa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "511d1db3-ef9e-4974-b86d-dd7049adc3cf", + "Order": 1, + "DeletedAt": null, + "EntryId": "adf6a3e4-04ca-4f59-ae11-6127351ee694", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "DeletedAt": null, + "LexemeForm": { + "seh": "pa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "3f732700-6604-407b-9561-5679466fd816", + "Order": 1, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "at", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "a\u0301", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3fa0cb72-e407-45bc-a90f-38adc5041151", + "Order": 2, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ea73ff7d-66be-492b-8932-ac0a9f169045", + "Order": 3, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d063c9c8-0783-4e95-815a-80c2d90a0685", + "Order": 4, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a79dae5d-2a1f-466c-91e2-16dd9ba73ea3", + "Order": 5, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "0f2ca062-34a9-4860-a750-ba6b2e746e1b", + "Order": 6, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c72f0def-ba21-4e71-b599-1fac8a7aac78", + "DeletedAt": null, + "LexemeForm": { + "seh": "dambo" + }, + "CitationForm": { + "seh": "padambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ddff3979-8797-4434-a5cd-d9cc036eec8c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c72f0def-ba21-4e71-b599-1fac8a7aac78", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area just outside of the house", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "yard", + "pt": "quintal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b2c99262-c521-4f33-855e-438f5aa5a95c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kuna munthu kudambo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Esta\u0301 alguem fora de casa.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ddff3979-8797-4434-a5cd-d9cc036eec8c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35f6824e-2c78-4cab-97b1-431276e53d06", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu" + }, + "CitationForm": { + "seh": "padzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "085bd1d5-7d44-49ce-b2f1-d99e07f27725", + "Order": 1, + "DeletedAt": null, + "EntryId": "35f6824e-2c78-4cab-97b1-431276e53d06", + "Definition": {}, + "Gloss": { + "en": "on top of", + "pt": "em cima de" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ae92e3a9-0028-4c78-849f-8ad8090d961d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "085bd1d5-7d44-49ce-b2f1-d99e07f27725", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e3b156d-fd40-4b66-87f7-2f849cf2fdc2", + "DeletedAt": null, + "LexemeForm": { + "seh": "pafupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e41243fa-94bb-4fea-9ff7-b6fd65218271", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e3b156d-fd40-4b66-87f7-2f849cf2fdc2", + "Definition": {}, + "Gloss": { + "en": "near", + "pt": "perto de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dc422def-6671-4793-a2c5-df1f6c0ba0c9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Asakala pafupi na ine.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Viva perto de mim.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "e41243fa-94bb-4fea-9ff7-b6fd65218271", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "222c6df8-a053-4535-957c-011e95da4362", + "DeletedAt": null, + "LexemeForm": { + "seh": "paka" + }, + "CitationForm": { + "seh": "paka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fdd9782e-30a8-4beb-ae64-e0b6a49d4611", + "Order": 1, + "DeletedAt": null, + "EntryId": "222c6df8-a053-4535-957c-011e95da4362", + "Definition": { + "en": { + "Spans": [ + { + "Text": "domestic cat", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "gato domestico", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "cat", + "pt": "gato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "49c878dd-277f-4bc9-b8ad-9ba192709108", + "Name": { + "en": "Cat" + }, + "Code": "6.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56ef3f06-7fb9-462e-a7d0-517f3ce1623f", + "Name": { + "en": "Carnivore" + }, + "Code": "1.6.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "eec2a28e-a8fb-4964-bfe2-70f4d57dd19f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "fdd9782e-30a8-4beb-ae64-e0b6a49d4611", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9a4d7d7-df81-42f9-9d11-0252f6237675", + "DeletedAt": null, + "LexemeForm": { + "seh": "pak" + }, + "CitationForm": { + "seh": "paka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31eae4ca-af01-4b5f-b43e-7030a1904e30", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9a4d7d7-df81-42f9-9d11-0252f6237675", + "Definition": {}, + "Gloss": { + "en": "organize", + "pt": "organizar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b547aff2-cc47-439a-8b34-9f7df414411f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "31eae4ca-af01-4b5f-b43e-7030a1904e30", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21390618-b38c-4e29-af2d-eff40efa0749", + "DeletedAt": null, + "LexemeForm": { + "seh": "paka bonga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "10bf25f6-c827-4e17-b1a8-77abcee2c7d5", + "Order": 1, + "DeletedAt": null, + "EntryId": "21390618-b38c-4e29-af2d-eff40efa0749", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild cat; African Wild Cat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cat", + "pt": "gato bravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bcde0e03-55aa-4db9-827e-e734d61fdf12", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "10bf25f6-c827-4e17-b1a8-77abcee2c7d5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "142d18ef-1d34-4cc0-9325-e8cbfa134934", + "DeletedAt": null, + "LexemeForm": { + "seh": "pakati_na_kati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b56a7877-3732-479b-981e-13bde2cf3199", + "Order": 1, + "DeletedAt": null, + "EntryId": "142d18ef-1d34-4cc0-9325-e8cbfa134934", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the very middle", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "no meio mesmo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "middle", + "pt": "no meio" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9b35c2f4-a264-4b1a-8482-d7314c20c915", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwadia walowa mbuli pakati-na-kati.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "A canoa fundou-se no meio.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "b56a7877-3732-479b-981e-13bde2cf3199", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56450014-7d28-4af1-8a01-528d36d9f4b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "paketi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a1c424c-57fe-4c5e-bbfa-4a5f46f3ad04", + "Order": 1, + "DeletedAt": null, + "EntryId": "56450014-7d28-4af1-8a01-528d36d9f4b2", + "Definition": {}, + "Gloss": { + "en": "ship", + "pt": "na\u0301vio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "155d30e6-2668-41d6-8978-99afe2083780", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2a1c424c-57fe-4c5e-bbfa-4a5f46f3ad04", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dc14a063-4beb-40be-93b8-906cc1e02ffd", + "DeletedAt": null, + "LexemeForm": { + "seh": "pakil" + }, + "CitationForm": { + "seh": "pakila" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3f9ab123-8e44-4b7d-8751-036addaa3924", + "Order": 1, + "DeletedAt": null, + "EntryId": "dc14a063-4beb-40be-93b8-906cc1e02ffd", + "Definition": {}, + "Gloss": { + "en": "embark", + "pt": "embarcar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5272912-8600-4c5b-89d4-73492e363881", + "DeletedAt": null, + "LexemeForm": { + "seh": "pakweca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "69dd5abb-75c8-43c9-a9de-e9d0a54d0f5f", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5272912-8600-4c5b-89d4-73492e363881", + "Definition": {}, + "Gloss": { + "en": "in the open", + "pt": "a\u0300 vista" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a1b2dcc-a250-46c8-8ce9-1228d9d80928", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Abisala pakweca", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Escondeu poco \u0027a vista (hid it where it could be seen)", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24 (says in public); Nyazeze says \u0027a vista", + "Ws": "en" + } + ] + }, + "SenseId": "69dd5abb-75c8-43c9-a9de-e9d0a54d0f5f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7af6916d-b7dd-4e57-92d2-f80194156e12", + "DeletedAt": null, + "LexemeForm": { + "seh": "pale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "eacb0398-8ba6-4bad-a412-7e3d0eec8026", + "Order": 1, + "DeletedAt": null, + "EntryId": "7af6916d-b7dd-4e57-92d2-f80194156e12", + "Definition": {}, + "Gloss": { + "en": "there", + "pt": "ali\u0301" + }, + "PartOfSpeech": { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2ba081c9-876c-47c3-8c95-93622922a6de", + "DeletedAt": null, + "LexemeForm": { + "seh": "pambul" + }, + "CitationForm": { + "seh": "pambula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce86d5d3-44ed-43d9-8a49-ec1fcf09b1ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "2ba081c9-876c-47c3-8c95-93622922a6de", + "Definition": {}, + "Gloss": { + "en": "separate", + "pt": "separar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c77fb145-1e73-4839-98ea-92b7a20aaa65", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ce86d5d3-44ed-43d9-8a49-ec1fcf09b1ec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5472df2-f6fd-4590-aff5-2640810b47cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "pana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1be67c1d-65da-45ae-b21e-51fd0de3c0c3", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5472df2-f6fd-4590-aff5-2640810b47cf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the presence of", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "na presenca de", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "with", + "pt": "com" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18309613-9a02-4aa8-a074-0bfa67cd6fff", + "DeletedAt": null, + "LexemeForm": { + "seh": "pandir" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "dd06cc0b-c6f0-4a06-82e1-f2148e3ed54e", + "Order": 1, + "DeletedAt": null, + "EntryId": "18309613-9a02-4aa8-a074-0bfa67cd6fff", + "Definition": { + "en": { + "Spans": [ + { + "Text": "come up out of the water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "come up", + "pt": "ascender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "not sure of definition", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65f5143a-51f8-4075-a1c5-3d53f8146237", + "DeletedAt": null, + "LexemeForm": { + "seh": "panduk" + }, + "CitationForm": { + "seh": "panduka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "af2f2f67-3c07-40eb-b0e9-a6666c9851be", + "Order": 1, + "DeletedAt": null, + "EntryId": "65f5143a-51f8-4075-a1c5-3d53f8146237", + "Definition": {}, + "Gloss": { + "en": "tear", + "pt": "rasgar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57231790-5ed8-4ea7-a85b-2b1af0146e51", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "af2f2f67-3c07-40eb-b0e9-a6666c9851be", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "76b91e5b-7325-49ae-b2a0-dbc900330ea0", + "DeletedAt": null, + "LexemeForm": { + "seh": "pandul" + }, + "CitationForm": { + "seh": "pandula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "123cfb49-e66b-4a7e-9997-0d690f191eb1", + "Order": 1, + "DeletedAt": null, + "EntryId": "76b91e5b-7325-49ae-b2a0-dbc900330ea0", + "Definition": {}, + "Gloss": { + "en": "split", + "pt": "rachar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "445af6b4-65bb-470c-af73-c6883832b4d9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "123cfb49-e66b-4a7e-9997-0d690f191eb1", + "DeletedAt": null + } + ] + }, + { + "Id": "510fd70c-f3b5-4486-a739-ea40c1013314", + "Order": 2, + "DeletedAt": null, + "EntryId": "76b91e5b-7325-49ae-b2a0-dbc900330ea0", + "Definition": {}, + "Gloss": { + "en": "tear", + "pt": "rasgar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9fbd7eee-a680-44a8-a832-2e544d3615c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "pang\u0027ono-pang\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9422102a-ec7f-49ec-a216-c9d0d99a6581", + "Order": 1, + "DeletedAt": null, + "EntryId": "9fbd7eee-a680-44a8-a832-2e544d3615c3", + "Definition": {}, + "Gloss": { + "en": "slowly", + "pt": "devagar" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9af7314-ccfb-4fe7-b5d2-2c22b6c89acc", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ddisafamba pang\u0027ono-pang\u0027ono.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ando devagar.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "9422102a-ec7f-49ec-a216-c9d0d99a6581", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "63d6139e-0347-435b-9138-63f3640381e6", + "DeletedAt": null, + "LexemeForm": { + "seh": "pang" + }, + "CitationForm": { + "seh": "panga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc18e2d7-e581-4fae-bdeb-d70406e2c2bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "63d6139e-0347-435b-9138-63f3640381e6", + "Definition": {}, + "Gloss": { + "en": "say", + "pt": "dizer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d2523d31-53b3-4587-b62b-c0d10980dc85", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cc18e2d7-e581-4fae-bdeb-d70406e2c2bc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebf9c8d1-440e-41a0-83d1-892d64cb9c61", + "DeletedAt": null, + "LexemeForm": { + "seh": "pangan" + }, + "CitationForm": { + "seh": "pangana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e18ad564-feaf-4720-86dd-505f28398a27", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebf9c8d1-440e-41a0-83d1-892d64cb9c61", + "Definition": {}, + "Gloss": { + "en": "say goodbye", + "pt": "despedir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c3ab87e7-7de0-403e-aebf-83a762c25191", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e18ad564-feaf-4720-86dd-505f28398a27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "257a2df2-04c4-4524-a893-a7686c897092", + "DeletedAt": null, + "LexemeForm": { + "seh": "panganizan" + }, + "CitationForm": { + "seh": "panganizana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "288640d4-e9da-429d-ae09-563930a2ff83", + "Order": 1, + "DeletedAt": null, + "EntryId": "257a2df2-04c4-4524-a893-a7686c897092", + "Definition": {}, + "Gloss": { + "en": "say goodbye", + "pt": "despedir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5e31b84-01a5-48da-827f-c5edffcc66d6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "288640d4-e9da-429d-ae09-563930a2ff83", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45f75244-8464-4fdb-93ec-18a5a8425189", + "DeletedAt": null, + "LexemeForm": { + "seh": "pangiz" + }, + "CitationForm": { + "seh": "pangiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50d9fda5-66fd-4161-afdc-e43a62fbf669", + "Order": 1, + "DeletedAt": null, + "EntryId": "45f75244-8464-4fdb-93ec-18a5a8425189", + "Definition": {}, + "Gloss": { + "en": "show", + "pt": "mostrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "19987244-b1aa-42ca-95f0-f0eb67c2e87f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "50d9fda5-66fd-4161-afdc-e43a62fbf669", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6efbec30-8255-4bd3-89c4-cdc5ee41d764", + "DeletedAt": null, + "LexemeForm": { + "seh": "nja" + }, + "CitationForm": { + "seh": "panja" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4e05471f-c25c-49b6-bde0-ef91ee7a87d7", + "Order": 1, + "DeletedAt": null, + "EntryId": "6efbec30-8255-4bd3-89c4-cdc5ee41d764", + "Definition": {}, + "Gloss": { + "en": "outside of", + "pt": "fora de" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f696a0aa-7975-41cf-84cd-5c4ba9b659c4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4e05471f-c25c-49b6-bde0-ef91ee7a87d7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "712b9c10-d811-49b9-82c4-e601a13c5091", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsi" + }, + "CitationForm": { + "seh": "pantsi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d761126d-b38c-44ee-99c5-fcca3c1d8595", + "Order": 1, + "DeletedAt": null, + "EntryId": "712b9c10-d811-49b9-82c4-e601a13c5091", + "Definition": { + "en": { + "Spans": [ + { + "Text": "underneath, at the bottom", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "down", + "pt": "em baixo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3fd8a580-74de-46c3-aad9-744f8951da92", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kalani pantsi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Sit down please.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Sente-se aqui.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d761126d-b38c-44ee-99c5-fcca3c1d8595", + "DeletedAt": null + } + ] + }, + { + "Id": "169ce7e6-e82d-4e74-8ac1-3c36f8882e71", + "Order": 2, + "DeletedAt": null, + "EntryId": "712b9c10-d811-49b9-82c4-e601a13c5091", + "Definition": {}, + "Gloss": { + "en": "on the ground", + "pt": "no cha\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c969339a-41d8-4f20-a745-59b5fbf99c07", + "DeletedAt": null, + "LexemeForm": { + "seh": "pedzi" + }, + "CitationForm": { + "seh": "papedzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef2a35dd-f9b5-4411-83b0-947b8f42060d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c969339a-41d8-4f20-a745-59b5fbf99c07", + "Definition": {}, + "Gloss": { + "en": "lying", + "pt": "em va\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b79582fc-1942-49ea-a62f-c669e8bb3178", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ef2a35dd-f9b5-4411-83b0-947b8f42060d", + "DeletedAt": null + } + ] + }, + { + "Id": "8785332a-5ca6-4ff9-b13a-1c8788ce703e", + "Order": 2, + "DeletedAt": null, + "EntryId": "c969339a-41d8-4f20-a745-59b5fbf99c07", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a place that has nothing", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "empty", + "pt": "vazio" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0e39c805-c796-4fe3-bafe-3c916055c9bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "papi" + }, + "CitationForm": { + "seh": "papi?" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7b954282-dabd-4a06-bfd7-4ab1d972d915", + "Order": 1, + "DeletedAt": null, + "EntryId": "0e39c805-c796-4fe3-bafe-3c916055c9bd", + "Definition": {}, + "Gloss": { + "en": "where?", + "pt": "onde?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "929b624f-dddf-402b-9a93-5e20f0b5bb5a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mandiceka papi? Mandiceka kupi?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Onde no corpo cortou-me? Em que zona de terra me cortou?", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "7b954282-dabd-4a06-bfd7-4ab1d972d915", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2ae1253b-2aa1-4c9a-bea7-f7c0f4bc46b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "parata" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d196009f-a66a-4004-9a72-cfb51309720a", + "Order": 1, + "DeletedAt": null, + "EntryId": "2ae1253b-2aa1-4c9a-bea7-f7c0f4bc46b7", + "Definition": {}, + "Gloss": { + "en": "silver", + "pt": "prata" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3860d159-d064-478c-9b07-78d3ed0bf924", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d196009f-a66a-4004-9a72-cfb51309720a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5bd31e68-8d84-44a3-b328-adfdecdf0aee", + "DeletedAt": null, + "LexemeForm": { + "seh": "paratu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "39572c63-f53e-474b-bbcb-f16a69029fd3", + "Order": 1, + "DeletedAt": null, + "EntryId": "5bd31e68-8d84-44a3-b328-adfdecdf0aee", + "Definition": {}, + "Gloss": { + "en": "plate", + "pt": "prato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf78dd6b-09f2-4ebb-89e4-1028cc77a714", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "39572c63-f53e-474b-bbcb-f16a69029fd3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7ba2ebe-9e6b-4a90-b837-7b58cb3e4609", + "DeletedAt": null, + "LexemeForm": { + "seh": "pas" + }, + "CitationForm": { + "seh": "pasa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d578529c-8a83-4ee1-b74c-6818d74f6761", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7ba2ebe-9e6b-4a90-b837-7b58cb3e4609", + "Definition": {}, + "Gloss": { + "en": "give", + "pt": "dar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a41f633-ab9c-4636-a344-bc36f60c0438", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d578529c-8a83-4ee1-b74c-6818d74f6761", + "DeletedAt": null + } + ] + }, + { + "Id": "85493eee-1e87-42b3-97f3-de8668ed9d5e", + "Order": 2, + "DeletedAt": null, + "EntryId": "f7ba2ebe-9e6b-4a90-b837-7b58cb3e4609", + "Definition": {}, + "Gloss": { + "en": "serve", + "pt": "servir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3943d4e-1e52-44c6-b245-65b5f29e1887", + "DeletedAt": null, + "LexemeForm": { + "seh": "patali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "75d60067-185b-4e4c-98a1-a0c8d39f3f31", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3943d4e-1e52-44c6-b245-65b5f29e1887", + "Definition": {}, + "Gloss": { + "en": "far away", + "pt": "muito longe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b41fddf7-8865-4981-9454-1299b039d348", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "75d60067-185b-4e4c-98a1-a0c8d39f3f31", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c4fe8236-caa5-46c1-9308-9ae6e65a395e", + "DeletedAt": null, + "LexemeForm": { + "seh": "patat" + }, + "CitationForm": { + "seh": "patata" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65861da3-3916-4daa-83ed-56289478af5e", + "Order": 1, + "DeletedAt": null, + "EntryId": "c4fe8236-caa5-46c1-9308-9ae6e65a395e", + "Definition": {}, + "Gloss": { + "en": "pillage", + "pt": "sacar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4cb3c0af-d605-4217-8594-c13decfb48d6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "65861da3-3916-4daa-83ed-56289478af5e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8a47a8c4-5002-44cf-874d-ddf630cf2bd6", + "DeletedAt": null, + "LexemeForm": { + "seh": "patsogolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7871daba-766d-4236-a452-353b1d106d6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "8a47a8c4-5002-44cf-874d-ddf630cf2bd6", + "Definition": {}, + "Gloss": { + "en": "in front of", + "pt": "frente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b36d4e25-2170-4813-9388-728cacb68c60", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7871daba-766d-4236-a452-353b1d106d6f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cffdc161-6b27-486a-9547-ce90cea6b705", + "DeletedAt": null, + "LexemeForm": { + "seh": "pember" + }, + "CitationForm": { + "seh": "pembera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "954048a2-1a8e-44cb-8203-8b52aa29c3f0", + "Order": 1, + "DeletedAt": null, + "EntryId": "cffdc161-6b27-486a-9547-ce90cea6b705", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ganhar raza\u0303o no acusac\u0327a\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "proved innocent", + "pt": "provado inocente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84", + "Name": { + "en": "Acquit" + }, + "Code": "4.7.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "6b39e8b4-6994-413c-9915-2c03ca043418", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "954048a2-1a8e-44cb-8203-8b52aa29c3f0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ed4db00-cf99-4bca-9df0-7cd8bb8dedb8", + "DeletedAt": null, + "LexemeForm": { + "seh": "penepi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d016eb89-0061-448c-aa42-5890289bb9ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ed4db00-cf99-4bca-9df0-7cd8bb8dedb8", + "Definition": {}, + "Gloss": { + "en": "this very one", + "pt": "este mesmo" + }, + "PartOfSpeech": { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6114523a-b2d9-45b7-bf31-6858624112b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "penepo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "84fb19ee-6e27-40c3-b5f4-c7cc6025d636", + "Order": 1, + "DeletedAt": null, + "EntryId": "6114523a-b2d9-45b7-bf31-6858624112b3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "at that very one or place", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "at that very place", + "pt": "ali\u0301 mesmo" + }, + "PartOfSpeech": { + "Id": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "Name": { + "en": "Demonstrative6", + "pt": "Demonstrativo6" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2976cd0f-f9a0-486b-a025-0142ab9888fb", + "DeletedAt": null, + "LexemeForm": { + "seh": "peno" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "81cc027d-824b-4fc1-9808-36d64a737ac2", + "Order": 1, + "DeletedAt": null, + "EntryId": "2976cd0f-f9a0-486b-a025-0142ab9888fb", + "Definition": {}, + "Gloss": { + "en": "or", + "pt": "ou" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f09b07d2-74c5-466c-b0f8-043214518db0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "81cc027d-824b-4fc1-9808-36d64a737ac2", + "DeletedAt": null + } + ] + }, + { + "Id": "d8a94a11-85f5-4067-88ef-1d5c78b4da4a", + "Order": 2, + "DeletedAt": null, + "EntryId": "2976cd0f-f9a0-486b-a025-0142ab9888fb", + "Definition": {}, + "Gloss": { + "en": "I don\u0027t know", + "pt": "na\u0303o sei" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "656de5b9-9346-42a1-835a-2c6ef748dfde", + "DeletedAt": null, + "LexemeForm": { + "seh": "penul" + }, + "CitationForm": { + "seh": "penula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84e0a019-cb57-458a-823e-d32007d7a545", + "Order": 1, + "DeletedAt": null, + "EntryId": "656de5b9-9346-42a1-835a-2c6ef748dfde", + "Definition": {}, + "Gloss": { + "en": "doubt", + "pt": "duvidar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "785d81bc-bb91-4c44-8c45-22633225cd61", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "84e0a019-cb57-458a-823e-d32007d7a545", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eff2c77d-7d33-419e-a904-b75012cad660", + "DeletedAt": null, + "LexemeForm": { + "seh": "pepes" + }, + "CitationForm": { + "seh": "pepesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5cadb5a3-cbd7-46b5-b4cb-ef93b8ffd14b", + "Order": 1, + "DeletedAt": null, + "EntryId": "eff2c77d-7d33-419e-a904-b75012cad660", + "Definition": {}, + "Gloss": { + "en": "blow", + "pt": "soprar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e91eb37-077a-4378-8c5f-193df49b8748", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist (phephesa); Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5cadb5a3-cbd7-46b5-b4cb-ef93b8ffd14b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "506595a3-0e16-4ffa-bb23-468da292b7b8", + "DeletedAt": null, + "LexemeForm": { + "seh": "perek" + }, + "CitationForm": { + "seh": "pereka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9462d765-6d98-4b26-9e9b-bb4a4d2ee805", + "Order": 1, + "DeletedAt": null, + "EntryId": "506595a3-0e16-4ffa-bb23-468da292b7b8", + "Definition": {}, + "Gloss": { + "en": "hand over", + "pt": "entregar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5ed68589-d763-4fa7-912f-22ce6f531434", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musapereka takhuta kuna Mulungu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "9462d765-6d98-4b26-9e9b-bb4a4d2ee805", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6970b4ee-5729-4b47-8953-96ffa37e3676", + "DeletedAt": null, + "LexemeForm": { + "seh": "pereker" + }, + "CitationForm": { + "seh": "perekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbd52040-b1d0-4c01-af17-accc2d5ae22e", + "Order": 1, + "DeletedAt": null, + "EntryId": "6970b4ee-5729-4b47-8953-96ffa37e3676", + "Definition": {}, + "Gloss": { + "en": "accompany", + "pt": "acompanhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5d542915-85b4-4834-8282-c027e3b9451d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cbd52040-b1d0-4c01-af17-accc2d5ae22e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "DeletedAt": null, + "LexemeForm": { + "seh": "pezi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", + "Order": 1, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "false", + "pt": "falso" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "22298b53-d837-4cb3-9dd7-213d684a0690", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mulungu wa pezi, a lungu a pezi, cinthu ca pezi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "deus falso, deuses falsas, coisa falsa", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazezep", + "Ws": "en" + } + ] + }, + "SenseId": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", + "DeletedAt": null + }, + { + "Id": "9fda8e92-8c0c-452c-a5e3-e5173f33135b", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", + "DeletedAt": null + } + ] + }, + { + "Id": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", + "Order": 2, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "in vain", + "pt": "em va\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3cd6d639-85da-411c-bd79-4c6074369ecf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkhabe cakudya, ndalimira pezi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o ha\u0301 comida, cultivei em va\u0303o.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", + "DeletedAt": null + } + ] + }, + { + "Id": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", + "Order": 3, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "freely", + "pt": "de grac\u0327a" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67890ef6-b55b-40c4-a498-33704a1d49d2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwapasiwa pezi, apasenimbo pezi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Receberam de grac\u0327a, de-los de grac\u0327a", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", + "DeletedAt": null + } + ] + }, + { + "Id": "d4106031-2175-4339-951b-86db166cd624", + "Order": 4, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "if not", + "pt": "sena\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "52059fd0-2ef2-4b2c-9c5b-35214da1cb40", + "DeletedAt": null, + "LexemeForm": { + "seh": "pezi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "71fcd994-9fdf-41b5-a70e-4fff1395ec6b", + "Order": 1, + "DeletedAt": null, + "EntryId": "52059fd0-2ef2-4b2c-9c5b-35214da1cb40", + "Definition": {}, + "Gloss": { + "en": "nude", + "pt": "nu\u0301" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "625f5c1d-2c59-41ca-92f5-08baf7a69a2f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Munthu ali pezi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Person is nude.", + "Ws": "pt" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Pessoa esta\u0301 nu\u0301.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "71fcd994-9fdf-41b5-a70e-4fff1395ec6b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c0cd8307-88e0-4cb0-b719-819073a90562", + "DeletedAt": null, + "LexemeForm": { + "seh": "fafa" + }, + "CitationForm": { + "seh": "pfafa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73ac71aa-df75-446e-9939-6baced57d246", + "Order": 1, + "DeletedAt": null, + "EntryId": "c0cd8307-88e0-4cb0-b719-819073a90562", + "Definition": {}, + "Gloss": { + "en": "liver", + "pt": "figado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efd5c156-2c49-429b-b06f-b91bc2aa3595", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist, George", + "Ws": "en" + } + ] + }, + "SenseId": "73ac71aa-df75-446e-9939-6baced57d246", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57297a7e-451b-4411-a575-6a36a974a626", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfigu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca4a133b-e0f9-4a56-b60f-16718a39ddae", + "Order": 1, + "DeletedAt": null, + "EntryId": "57297a7e-451b-4411-a575-6a36a974a626", + "Definition": {}, + "Gloss": { + "en": "banana", + "pt": "banana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "49084a0c-55e5-432e-8c07-a5288d9b8d31", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ca4a133b-e0f9-4a56-b60f-16718a39ddae", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad6b068f-bf71-4f91-8a17-438a194c5a2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "fua" + }, + "CitationForm": { + "seh": "pfua" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e8eff102-aef9-45bf-94e7-aa718bf94a73", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad6b068f-bf71-4f91-8a17-438a194c5a2d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a pyramidal stone used to hold pots over a cooking fire", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hearth stone", + "pt": "pedra de lar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fdc8643e-4d23-41ac-a2ea-a39de3a221fd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,19; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e8eff102-aef9-45bf-94e7-aa718bf94a73", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bb6d076-92e1-4f15-af15-2f01acba2088", + "DeletedAt": null, + "LexemeForm": { + "seh": "fufu" + }, + "CitationForm": { + "seh": "pfufu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ac4751d-c0f9-40c7-ad01-f392c2424abd", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bb6d076-92e1-4f15-af15-2f01acba2088", + "Definition": {}, + "Gloss": { + "en": "wall", + "pt": "parede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c1acbdaa-a19e-4df7-b3d8-f144e2ba879d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1ac4751d-c0f9-40c7-ad01-f392c2424abd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "412c22a5-5840-49ac-af40-2fdbb93501ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfum" + }, + "CitationForm": { + "seh": "pfuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6e831179-7140-424a-8de9-4f64dc62f902", + "Order": 1, + "DeletedAt": null, + "EntryId": "412c22a5-5840-49ac-af40-2fdbb93501ef", + "Definition": {}, + "Gloss": { + "en": "get rich", + "pt": "enriquecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "866ce198-1f8c-4d45-be89-6e97aa04cc93", + "DeletedAt": null, + "LexemeForm": { + "seh": "fumbi" + }, + "CitationForm": { + "seh": "pfumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1d4fa07-ebf9-40ab-a269-cebbd8e8e4e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "866ce198-1f8c-4d45-be89-6e97aa04cc93", + "Definition": { + "en": { + "Spans": [ + { + "Text": "dust, powder", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dust", + "pt": "po\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d6de2535-4d21-44fb-80b8-01c0e71de6d9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:13; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c1d4fa07-ebf9-40ab-a269-cebbd8e8e4e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0ffeb52b-5052-4cf5-88bf-5cde438179f2", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfung" + }, + "CitationForm": { + "seh": "pfunga" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d96c0e30-122f-4965-b2f2-7a28c5919eda", + "Order": 1, + "DeletedAt": null, + "EntryId": "0ffeb52b-5052-4cf5-88bf-5cde438179f2", + "Definition": {}, + "Gloss": { + "en": "close", + "pt": "fechar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9723cad8-6330-430b-981e-6080f0a00832", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "d96c0e30-122f-4965-b2f2-7a28c5919eda", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ac9350d1-9fdc-4819-9283-ea9a2c870488", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfungul" + }, + "CitationForm": { + "seh": "pfungula" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "722a07be-8f96-4584-896b-5d4a1be2ff09", + "Order": 1, + "DeletedAt": null, + "EntryId": "ac9350d1-9fdc-4819-9283-ea9a2c870488", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "abrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2703b1a-942f-4dfb-93cf-fa8ed1b62a9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "722a07be-8f96-4584-896b-5d4a1be2ff09", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2f6e91f0-45c8-4996-a83f-7deabec2e239", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunz" + }, + "CitationForm": { + "seh": "pfunza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f3702c7-fb24-4c15-8848-170402959bce", + "Order": 1, + "DeletedAt": null, + "EntryId": "2f6e91f0-45c8-4996-a83f-7deabec2e239", + "Definition": {}, + "Gloss": { + "en": "study", + "pt": "estudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7504741-9eaa-45a0-b5ae-17dc47c9e3f1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2f3702c7-fb24-4c15-8848-170402959bce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a83b8424-0c70-4258-8a9d-089a9aba2ac3", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunzis" + }, + "CitationForm": { + "seh": "pfunzisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ec31552-edd9-4071-9e74-ea6e4ea8cf26", + "Order": 1, + "DeletedAt": null, + "EntryId": "a83b8424-0c70-4258-8a9d-089a9aba2ac3", + "Definition": {}, + "Gloss": { + "en": "teach", + "pt": "ensinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71443fff-cc03-44fd-b5ad-892111fe45bb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7ec31552-edd9-4071-9e74-ea6e4ea8cf26", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "083fa3ea-1d1f-40a9-8d88-63722de7332f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ph" + }, + "CitationForm": { + "seh": "pha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "34c84c1d-1627-4a45-805d-8a613c39f8fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "083fa3ea-1d1f-40a9-8d88-63722de7332f", + "Definition": {}, + "Gloss": { + "en": "kill", + "pt": "matar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "b8d2fdb9-22ea-4040-8abb-aeeff0399f23", + "Name": { + "en": "Kill" + }, + "Code": "2.6.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "1770d209-608c-4385-9339-cb6ee569fefb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo037; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "34c84c1d-1627-4a45-805d-8a613c39f8fb", + "DeletedAt": null + } + ] + }, + { + "Id": "e1928272-94d5-4a99-b51c-8c79299b2b06", + "Order": 2, + "DeletedAt": null, + "EntryId": "083fa3ea-1d1f-40a9-8d88-63722de7332f", + "Definition": {}, + "Gloss": { + "en": "hurt", + "pt": "fazer doer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0ca8335-d1c8-4042-b61f-757efca05736", + "DeletedAt": null, + "LexemeForm": { + "seh": "phamir" + }, + "CitationForm": { + "seh": "phamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86c9f6ef-1382-442b-81c5-535496307803", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0ca8335-d1c8-4042-b61f-757efca05736", + "Definition": {}, + "Gloss": { + "en": "rest on", + "pt": "pousar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b238fcb0-6370-46e6-8c47-0c7219df4e16", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "86c9f6ef-1382-442b-81c5-535496307803", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "055bb251-95da-4959-92c1-aa7bab5cc7c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "panga" + }, + "CitationForm": { + "seh": "phanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "55e6af15-103c-4b41-9e10-da36ee20f5da", + "Order": 1, + "DeletedAt": null, + "EntryId": "055bb251-95da-4959-92c1-aa7bab5cc7c0", + "Definition": {}, + "Gloss": { + "en": "bandit", + "pt": "bandido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e9d59cae-b01a-43c1-84e4-595e601c3d23", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "55e6af15-103c-4b41-9e10-da36ee20f5da", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec3b3f9d-9f6a-4165-90e3-f616f9c40cbc", + "DeletedAt": null, + "LexemeForm": { + "seh": "panya" + }, + "CitationForm": { + "seh": "phanya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "49ea4ff8-7c73-4fad-950d-b3d2dec9ad8b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec3b3f9d-9f6a-4165-90e3-f616f9c40cbc", + "Definition": {}, + "Gloss": { + "en": "field rat", + "pt": "rato de campo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "602a507e-eab9-41ad-90b4-4cd82abf0d49", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "49ea4ff8-7c73-4fad-950d-b3d2dec9ad8b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72473c5b-250d-49e4-964c-7612c4ab3cdd", + "DeletedAt": null, + "LexemeForm": { + "seh": "phanz" + }, + "CitationForm": { + "seh": "phanza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "908cc39a-c4ae-4aab-a8a1-4cb2794ef409", + "Order": 1, + "DeletedAt": null, + "EntryId": "72473c5b-250d-49e4-964c-7612c4ab3cdd", + "Definition": {}, + "Gloss": { + "en": "diarrhea", + "pt": "diarreia" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "39dcb6b9-94df-45be-a128-c14c7a9dcdbd", + "Name": { + "en": "Stomach illness" + }, + "Code": "2.5.2.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ac60ca45-3128-4762-a811-ec365a24a0ff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "908cc39a-c4ae-4aab-a8a1-4cb2794ef409", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "phat" + }, + "CitationForm": { + "seh": "phata" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98c38a96-d34b-4581-aca1-17ff2dc2c62e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "Definition": {}, + "Gloss": { + "en": "take ahold", + "pt": "pegar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3a170279-8e61-41ae-ab1f-3817c343e8cf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "98c38a96-d34b-4581-aca1-17ff2dc2c62e", + "DeletedAt": null + } + ] + }, + { + "Id": "4fe54fea-afdf-4ce3-8789-da578722a5f6", + "Order": 2, + "DeletedAt": null, + "EntryId": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "Definition": {}, + "Gloss": { + "en": "grab", + "pt": "agarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c300c23f-9269-4a24-8be8-b91847605697", + "Order": 3, + "DeletedAt": null, + "EntryId": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "Definition": {}, + "Gloss": { + "en": "do", + "pt": "fazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2515b1d1-0f74-480f-804d-fe44e405034f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phataniz" + }, + "CitationForm": { + "seh": "phataniza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1665923c-551f-4e87-aa3e-a0c01859612c", + "Order": 1, + "DeletedAt": null, + "EntryId": "2515b1d1-0f74-480f-804d-fe44e405034f", + "Definition": {}, + "Gloss": { + "en": "connect", + "pt": "ligar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b444fc5-2edb-4b9b-8c09-558cdd2381d8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1665923c-551f-4e87-aa3e-a0c01859612c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45690817-2993-4cad-85b0-5bae2dddf01e", + "DeletedAt": null, + "LexemeForm": { + "seh": "paza" + }, + "CitationForm": { + "seh": "phaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f17ee35f-9e3a-47b7-8aed-0abffa9e539e", + "Order": 1, + "DeletedAt": null, + "EntryId": "45690817-2993-4cad-85b0-5bae2dddf01e", + "Definition": {}, + "Gloss": { + "en": "hoe", + "pt": "enxada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "399bacf2-a5bd-478a-a7b6-fa7e49d1656f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f17ee35f-9e3a-47b7-8aed-0abffa9e539e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2572149b-1b1d-43ab-8edc-b2918ad33499", + "DeletedAt": null, + "LexemeForm": { + "seh": "phedz" + }, + "CitationForm": { + "seh": "phedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5607b315-66cf-4c69-9cc1-54040e31e662", + "Order": 1, + "DeletedAt": null, + "EntryId": "2572149b-1b1d-43ab-8edc-b2918ad33499", + "Definition": {}, + "Gloss": { + "en": "help", + "pt": "ajudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de54033f-6a9d-48e3-b825-7ce8024a0733", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungo mbakuphedzeni.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Deus te abenc\u0327o\u0303e.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "5607b315-66cf-4c69-9cc1-54040e31e662", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8dfc98df-d122-40d9-990c-a83beede064d", + "DeletedAt": null, + "LexemeForm": { + "seh": "phek" + }, + "CitationForm": { + "seh": "pheka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4076b0ba-747a-4966-ad7e-4caa4c2cabc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "8dfc98df-d122-40d9-990c-a83beede064d", + "Definition": {}, + "Gloss": { + "en": "be wounded", + "pt": "ferir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "25d025df-a858-4e3b-afe8-c9b5823de3d1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "4076b0ba-747a-4966-ad7e-4caa4c2cabc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "611d0fe9-b361-4bb1-a07a-8037efce1d7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phemb" + }, + "CitationForm": { + "seh": "phemba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc267b94-4a33-4731-aaaf-d484830ec3d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "611d0fe9-b361-4bb1-a07a-8037efce1d7f", + "Definition": {}, + "Gloss": { + "en": "ask for", + "pt": "pedir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eaa3d8b8-c851-4474-bc62-d09fdd7d5985", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "dc267b94-4a33-4731-aaaf-d484830ec3d4", + "DeletedAt": null + }, + { + "Id": "ebfa83e0-3ad8-4615-a739-c6020769dc73", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "dc267b94-4a33-4731-aaaf-d484830ec3d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af2460ff-f65e-49ff-8e10-a47ba5f2ff98", + "DeletedAt": null, + "LexemeForm": { + "seh": "phember" + }, + "CitationForm": { + "seh": "phembera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa981b11-04ff-4af2-ae44-796234cb159b", + "Order": 1, + "DeletedAt": null, + "EntryId": "af2460ff-f65e-49ff-8e10-a47ba5f2ff98", + "Definition": {}, + "Gloss": { + "en": "pray", + "pt": "orar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6086f990-f49e-4db7-8206-ce1af2ab916f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "aa981b11-04ff-4af2-ae44-796234cb159b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5864651e-303c-46a7-afc5-b9a69060971b", + "DeletedAt": null, + "LexemeForm": { + "seh": "phembw" + }, + "CitationForm": { + "seh": "phembwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "246c0387-eb1b-44f3-9b1f-a7bdaa8df9b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "5864651e-303c-46a7-afc5-b9a69060971b", + "Definition": {}, + "Gloss": { + "en": "be requested", + "pt": "ser pedido" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f10341c4-ec1e-4829-92eb-97a4a5a6e58b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "246c0387-eb1b-44f3-9b1f-a7bdaa8df9b5", + "DeletedAt": null + } + ] + }, + { + "Id": "06977799-bc47-4b69-ac51-4e669399e821", + "Order": 2, + "DeletedAt": null, + "EntryId": "5864651e-303c-46a7-afc5-b9a69060971b", + "Definition": {}, + "Gloss": { + "en": "invite", + "pt": "convite" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "873acf26-bab1-47a3-8cf8-09e845f31c3e", + "DeletedAt": null, + "LexemeForm": { + "seh": "pesi" + }, + "CitationForm": { + "seh": "phesi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38351af5-160a-449f-b6f5-334748970449", + "Order": 1, + "DeletedAt": null, + "EntryId": "873acf26-bab1-47a3-8cf8-09e845f31c3e", + "Definition": {}, + "Gloss": { + "en": "cane", + "pt": "canic\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e68155f5-1b10-45c0-ab1c-fc9178920142", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "38351af5-160a-449f-b6f5-334748970449", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56f730bb-c2a3-47ed-97e9-c5937fdef40e", + "DeletedAt": null, + "LexemeForm": { + "seh": "phewa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f28a937-b7ad-4ce4-b967-9faad084543b", + "Order": 1, + "DeletedAt": null, + "EntryId": "56f730bb-c2a3-47ed-97e9-c5937fdef40e", + "Definition": {}, + "Gloss": { + "en": "shoulder", + "pt": "ombro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "60f1b7c4-67bb-4fbe-8efb-a0b0c3cf1a31", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2f28a937-b7ad-4ce4-b967-9faad084543b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "945ebef5-7a27-48fe-96f8-ee8bb9eb72eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "phik" + }, + "CitationForm": { + "seh": "phika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58ed32da-a923-470e-b739-1ee2521c1dbb", + "Order": 1, + "DeletedAt": null, + "EntryId": "945ebef5-7a27-48fe-96f8-ee8bb9eb72eb", + "Definition": {}, + "Gloss": { + "en": "cook", + "pt": "cozinhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "1fda68d4-5941-4695-b656-090d603a3344", + "Name": { + "en": "Food preparation" + }, + "Code": "5.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "139e7671-161a-4ba5-a8b2-6895d46d2aae", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "58ed32da-a923-470e-b739-1ee2521c1dbb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fad65192-562f-478b-b39a-6987f2b3e67e", + "DeletedAt": null, + "LexemeForm": { + "seh": "pindi" + }, + "CitationForm": { + "seh": "phindi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d0e03952-92d9-4bf5-b7ac-d63a37ee3910", + "Order": 1, + "DeletedAt": null, + "EntryId": "fad65192-562f-478b-b39a-6987f2b3e67e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "part, peice", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "part", + "pt": "pedac\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dd5ce2aa-87be-4c11-bdb6-e4f5843fbee2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d0e03952-92d9-4bf5-b7ac-d63a37ee3910", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f2a1c43-b4a2-4e3a-b204-28a56ff12df6", + "DeletedAt": null, + "LexemeForm": { + "seh": "phindudz" + }, + "CitationForm": { + "seh": "phindudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "766a0dcd-11a0-48dc-ba1e-53c6d6a63354", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f2a1c43-b4a2-4e3a-b204-28a56ff12df6", + "Definition": {}, + "Gloss": { + "en": "change", + "pt": "mudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1272ad41-c183-4b2f-89a8-b3a814d67264", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "766a0dcd-11a0-48dc-ba1e-53c6d6a63354", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2892652-cc90-4007-b0a5-e44a40783c05", + "DeletedAt": null, + "LexemeForm": { + "seh": "phinduk" + }, + "CitationForm": { + "seh": "phinduka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0e15ca96-23ed-4faa-87c8-ca7a0d64e87f", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2892652-cc90-4007-b0a5-e44a40783c05", + "Definition": {}, + "Gloss": { + "en": "change oneself", + "pt": "mudar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aaa6af45-dd3d-43c6-9a5e-ced850d5e5dd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Mount of transfiguration", + "Ws": "en" + } + ] + }, + "SenseId": "0e15ca96-23ed-4faa-87c8-ca7a0d64e87f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a662234-0a7f-4978-8b8f-d37bffac14b6", + "DeletedAt": null, + "LexemeForm": { + "seh": "phingidz" + }, + "CitationForm": { + "seh": "phingidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b64743d-8234-4efd-bee6-01929aa5925b", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a662234-0a7f-4978-8b8f-d37bffac14b6", + "Definition": {}, + "Gloss": { + "en": "dirty", + "pt": "sujar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed89614b-5248-4f0a-8741-579ca0668d8d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4b64743d-8234-4efd-bee6-01929aa5925b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f00863e-8570-4f94-9ff4-7d8b0b44f096", + "DeletedAt": null, + "LexemeForm": { + "seh": "phingidzik" + }, + "CitationForm": { + "seh": "phingidzika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc721689-3c6e-4e3d-8b48-304f1144ee8a", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f00863e-8570-4f94-9ff4-7d8b0b44f096", + "Definition": {}, + "Gloss": { + "en": "get dirty", + "pt": "sujar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "46ad1505-9049-41d8-831b-768f46f12500", + "Name": { + "en": "Clean, dirty" + }, + "Code": "5.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ab5f5c89-7ec9-49b7-b25f-31dcb7255036", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cc721689-3c6e-4e3d-8b48-304f1144ee8a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "baa4ac28-a084-4a57-b4a8-1e58278c74ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "pira" + }, + "CitationForm": { + "seh": "phira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2da1985b-4c8e-48c6-b819-be26a601b9c1", + "Order": 1, + "DeletedAt": null, + "EntryId": "baa4ac28-a084-4a57-b4a8-1e58278c74ef", + "Definition": { + "en": { + "Spans": [ + { + "Text": "various types of millet", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "mapira, milho miu\u0301do", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "millet", + "pt": "mapira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b18ddd3-c8bd-4041-be87-6c4722d53eb0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13", + "Ws": "en" + } + ] + }, + "SenseId": "2da1985b-4c8e-48c6-b819-be26a601b9c1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b479779f-689b-4e2c-949c-e5c037ae5f2f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phiramanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4b483281-d3c1-432d-a5ff-1e7df777fc23", + "Order": 1, + "DeletedAt": null, + "EntryId": "b479779f-689b-4e2c-949c-e5c037ae5f2f", + "Definition": {}, + "Gloss": { + "en": "corn", + "pt": "milho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d30c1ff4-e25d-4a9a-9cf9-4fad2c21de44", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4b483281-d3c1-432d-a5ff-1e7df777fc23", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "130c1a0e-2905-463e-a3a2-498d92f069fd", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": { + "seh": "phiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb4d0840-35ad-4b51-a991-d3caac72b07b", + "Order": 1, + "DeletedAt": null, + "EntryId": "130c1a0e-2905-463e-a3a2-498d92f069fd", + "Definition": {}, + "Gloss": { + "en": "mountain", + "pt": "montanha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae", + "Name": { + "en": "Mountain" + }, + "Code": "1.2.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fdf2d7fe-bd2c-4e17-ba24-970a6fe778bc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Moreira:19; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "fb4d0840-35ad-4b51-a991-d3caac72b07b", + "DeletedAt": null + } + ] + }, + { + "Id": "9c5ab5d0-b755-41e7-8bfc-38cf4ac7476a", + "Order": 2, + "DeletedAt": null, + "EntryId": "130c1a0e-2905-463e-a3a2-498d92f069fd", + "Definition": {}, + "Gloss": { + "en": "hill", + "pt": "monte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cafc5c7d-dc47-418f-bd2a-d0b02c05fc47", + "DeletedAt": null, + "LexemeForm": { + "seh": "phol" + }, + "CitationForm": { + "seh": "phola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a29d6ebc-5c8a-4267-93f5-7acbb56f0a82", + "Order": 1, + "DeletedAt": null, + "EntryId": "cafc5c7d-dc47-418f-bd2a-d0b02c05fc47", + "Definition": {}, + "Gloss": { + "en": "stab", + "pt": "espetar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3ccc928-91e8-4793-b791-19c685368b95", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a29d6ebc-5c8a-4267-93f5-7acbb56f0a82", + "DeletedAt": null + } + ] + }, + { + "Id": "0f025d44-7074-4e04-868e-cc0a74db6931", + "Order": 2, + "DeletedAt": null, + "EntryId": "cafc5c7d-dc47-418f-bd2a-d0b02c05fc47", + "Definition": {}, + "Gloss": { + "en": "drill", + "pt": "furar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b9f98b12-4842-4d4a-a605-39446bb747b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "phony" + }, + "CitationForm": { + "seh": "phonya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "310bbea4-dfd1-44b0-b6e5-cfb9ee73fd33", + "Order": 1, + "DeletedAt": null, + "EntryId": "b9f98b12-4842-4d4a-a605-39446bb747b7", + "Definition": {}, + "Gloss": { + "en": "break", + "pt": "quebrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8571196f-b183-43ef-a73b-cc858a334e55", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "310bbea4-dfd1-44b0-b6e5-cfb9ee73fd33", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "659569fd-078f-4200-8e5a-50e7209847d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "phop" + }, + "CitationForm": { + "seh": "phopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d741e8d-7136-465d-8d8c-f699482d7e7a", + "Order": 1, + "DeletedAt": null, + "EntryId": "659569fd-078f-4200-8e5a-50e7209847d0", + "Definition": {}, + "Gloss": { + "en": "close lid", + "pt": "tampar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88646d9b-3b72-412c-8c65-e5bf67234343", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1d741e8d-7136-465d-8d8c-f699482d7e7a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c14a0da6-6e85-4d49-ab80-b47e7fec341a", + "DeletedAt": null, + "LexemeForm": { + "seh": "pobvu" + }, + "CitationForm": { + "seh": "phovu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bfb6430-34b1-4953-ac6f-1d14a55368e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c14a0da6-6e85-4d49-ab80-b47e7fec341a", + "Definition": {}, + "Gloss": { + "en": "foam", + "pt": "espuma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00f82257-7868-4d91-a555-b433d49be043", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4bfb6430-34b1-4953-ac6f-1d14a55368e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2f3b962-9d77-41ba-85b2-941e960cda02", + "DeletedAt": null, + "LexemeForm": { + "seh": "phul" + }, + "CitationForm": { + "seh": "phula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e68fa0ae-00e9-401e-8939-1cdbcbf38a8f", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2f3b962-9d77-41ba-85b2-941e960cda02", + "Definition": {}, + "Gloss": { + "en": "spit", + "pt": "cuspir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "897f89de-a5e3-44bd-b2e9-3ce0f4ce983d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e68fa0ae-00e9-401e-8939-1cdbcbf38a8f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "53b1babb-f932-4745-abce-20d9695e2d63", + "DeletedAt": null, + "LexemeForm": { + "seh": "puli" + }, + "CitationForm": { + "seh": "phuli" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22454890-7c2d-4a3b-beaf-c7a5a4dc141d", + "Order": 1, + "DeletedAt": null, + "EntryId": "53b1babb-f932-4745-abce-20d9695e2d63", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bunch of leaves or plants", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "molho de folhas ou planta", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bunch", + "pt": "molho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0cda28d-49a8-4d9b-b8d8-950262c19369", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "22454890-7c2d-4a3b-beaf-c7a5a4dc141d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7af80b86-3062-4027-acaf-ab1ab7b811a6", + "DeletedAt": null, + "LexemeForm": { + "seh": "pute" + }, + "CitationForm": { + "seh": "phute" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98ae9c6a-49c6-4f2f-ae64-bcd03ce4e6c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "7af80b86-3062-4027-acaf-ab1ab7b811a6", + "Definition": {}, + "Gloss": { + "en": "abcess", + "pt": "abcesso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "77f0d0dc-61ee-4373-9879-35a7059bd892", + "Name": { + "en": "Tooth decay" + }, + "Code": "2.5.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2dfe7213-283d-49ad-9b49-aabaa666dac2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "98ae9c6a-49c6-4f2f-ae64-bcd03ce4e6c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b46e4739-7153-4883-b2c3-908365df67d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "putu" + }, + "CitationForm": { + "seh": "phutu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2581c234-84f5-4ef9-ae06-3be67d528c6a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b46e4739-7153-4883-b2c3-908365df67d3", + "Definition": {}, + "Gloss": { + "en": "cheek", + "pt": "buchecha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ad235e50-5075-4783-a2ac-464fc1d35e70", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "2581c234-84f5-4ef9-ae06-3be67d528c6a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a8ea8e05-9e79-4f5c-8370-9df8525166b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "phwandu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "882560fc-27d5-4ea8-add0-8335b97c5032", + "Order": 1, + "DeletedAt": null, + "EntryId": "a8ea8e05-9e79-4f5c-8370-9df8525166b1", + "Definition": {}, + "Gloss": { + "en": "feast", + "pt": "festa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71983f5c-327e-4f3f-8eee-d404c0d77360", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "882560fc-27d5-4ea8-add0-8335b97c5032", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16b421e9-006e-4374-ba54-e3e8c6493edd", + "DeletedAt": null, + "LexemeForm": { + "seh": "phwet" + }, + "CitationForm": { + "seh": "phweta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e352f748-01e6-471f-a6d1-978b74e6c6a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "16b421e9-006e-4374-ba54-e3e8c6493edd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to flee", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "fugir", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "flee", + "pt": "fugir apertado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "aa965615-5d7a-40ab-8781-cff09fa2841f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e352f748-01e6-471f-a6d1-978b74e6c6a5", + "DeletedAt": null + } + ] + }, + { + "Id": "90054694-7f6e-4674-a525-b3e59e05f58d", + "Order": 2, + "DeletedAt": null, + "EntryId": "16b421e9-006e-4374-ba54-e3e8c6493edd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "enter by means of a tight space", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "entrar pelo buraco apertado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "enter", + "pt": "entrar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "19888b08-f360-4232-9c69-57ef5c4937f2", + "DeletedAt": null, + "LexemeForm": { + "seh": "phwete" + }, + "CitationForm": { + "seh": "phwethe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5c0b6467-8c7a-48ac-af53-c5b81c079967", + "Order": 1, + "DeletedAt": null, + "EntryId": "19888b08-f360-4232-9c69-57ef5c4937f2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Diceros bicorniss (or Ceratotherium simum - not in Sena area)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rhinoceros", + "pt": "rinocerante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5d8dce6d-45ad-47dc-a38a-26331bca3df0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "5c0b6467-8c7a-48ac-af53-c5b81c079967", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "pi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "43a4b50c-b681-4e03-ad5c-1649e7daf633", + "Order": 1, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a3846ed9-9b20-4c5f-8abb-873f9ff99a17", + "Order": 2, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "fdff4835-a887-4305-952a-4089525f3e62", + "Order": 3, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "182f783d-7703-4dc6-8aaa-d4c995ec11e0", + "Order": 4, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d7932d5f-f27f-4cbb-b264-52061d0b3253", + "Order": 5, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9f3c0dec-740d-42a2-9079-59b44fb3cecd", + "DeletedAt": null, + "LexemeForm": { + "seh": "pi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "23b8a9b8-fab7-41e8-a70f-7cc7b72c94eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "9f3c0dec-740d-42a2-9079-59b44fb3cecd", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "92d8a3e5-790f-4c0d-927b-fcd64073db53", + "DeletedAt": null, + "LexemeForm": { + "seh": "pibves" + }, + "CitationForm": { + "seh": "pibvesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d6332e9-6bf8-4bc3-8ecc-bd4ef18512f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "92d8a3e5-790f-4c0d-927b-fcd64073db53", + "Definition": {}, + "Gloss": { + "en": "understand", + "pt": "compreender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "2251956c-607a-41dd-b047-c16ad95f04ef", + "Order": 2, + "DeletedAt": null, + "EntryId": "92d8a3e5-790f-4c0d-927b-fcd64073db53", + "Definition": {}, + "Gloss": { + "en": "perceive", + "pt": "perceber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eb3eb9b2-1130-402e-952a-44a20075a642", + "DeletedAt": null, + "LexemeForm": { + "seh": "pina" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "10d326c8-2805-4ecf-91c3-2d933a063863", + "Order": 1, + "DeletedAt": null, + "EntryId": "eb3eb9b2-1130-402e-952a-44a20075a642", + "Definition": {}, + "Gloss": { + "en": "again", + "pt": "outra vez" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8fa842ea-8c2d-40be-885c-30645fc695c6", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndabwera pina", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Vim outra vez", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "10d326c8-2805-4ecf-91c3-2d933a063863", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c02367d0-a6db-43f2-97d9-9daba1ffd174", + "DeletedAt": null, + "LexemeForm": { + "seh": "pingir" + }, + "CitationForm": { + "seh": "pingira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "06909499-5a12-4fdc-b48e-5805606fe878", + "Order": 1, + "DeletedAt": null, + "EntryId": "c02367d0-a6db-43f2-97d9-9daba1ffd174", + "Definition": { + "en": { + "Spans": [ + { + "Text": "put something on one\u0027s back or shoulders", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "po\u0302r uma coisa no colo ou obros", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "carry", + "pt": "carrigar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "549120da-4e82-4132-8f61-43806d226647", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "06909499-5a12-4fdc-b48e-5805606fe878", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b8e3bcc7-cf77-4537-a774-52bdca6cb280", + "DeletedAt": null, + "LexemeForm": { + "seh": "pingirir" + }, + "CitationForm": { + "seh": "pingirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6257b3a4-5c21-474e-8045-768ac98bd030", + "Order": 1, + "DeletedAt": null, + "EntryId": "b8e3bcc7-cf77-4537-a774-52bdca6cb280", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wrap around", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "amarrar sem no\u0301", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wrap around", + "pt": "amarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "408447ec-6296-4652-82e7-18fe2ea4e6d9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6257b3a4-5c21-474e-8045-768ac98bd030", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6721e1c9-772d-4a29-bab9-d6c2cf5f4107", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ec9e2a2a-4acf-4873-be17-33c22215f214", + "Order": 1, + "DeletedAt": null, + "EntryId": "6721e1c9-772d-4a29-bab9-d6c2cf5f4107", + "Definition": {}, + "Gloss": { + "en": "two", + "pt": "dois" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "35a7a244-996e-4d8b-bb97-5ec291c00863", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "ec9e2a2a-4acf-4873-be17-33c22215f214", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8e4f8eb-7a7e-46ec-89f9-cf3f23f2c20a", + "DeletedAt": null, + "LexemeForm": { + "seh": "piringan" + }, + "CitationForm": { + "seh": "piringana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9604e24e-0b32-4036-b99f-029dad305317", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8e4f8eb-7a7e-46ec-89f9-cf3f23f2c20a", + "Definition": {}, + "Gloss": { + "en": "is more than", + "pt": "ultrapassar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "80e1a2df-d3a9-4460-849d-2eece2861634", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9604e24e-0b32-4036-b99f-029dad305317", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "627688ca-a90b-4bf4-8793-1a182d1222c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "pirir" + }, + "CitationForm": { + "seh": "pirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "610b9c2f-9e5d-458f-acbc-0f024bc732fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "627688ca-a90b-4bf4-8793-1a182d1222c3", + "Definition": {}, + "Gloss": { + "en": "trust", + "pt": "confiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a316a58-6299-4e73-b15c-75a8719635ad", + "DeletedAt": null, + "LexemeForm": { + "seh": "pis" + }, + "CitationForm": { + "seh": "pisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9e3d001b-8dbd-47bd-843d-545ae2eeedc8", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a316a58-6299-4e73-b15c-75a8719635ad", + "Definition": {}, + "Gloss": { + "en": "burn", + "pt": "queimar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4c46e0d2-db36-4a60-b9e5-2618aaed37de", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Lero kwapisa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Today it is \u0022burning up\u0022.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Hoje faz calor", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "9e3d001b-8dbd-47bd-843d-545ae2eeedc8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "DeletedAt": null, + "LexemeForm": { + "seh": "pit" + }, + "CitationForm": { + "seh": "pita" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f452c5e8-330c-4323-862b-aba0ec42a2c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "Definition": {}, + "Gloss": { + "en": "enter", + "pt": "entrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b8aa36a5-4ce8-402d-9545-5f14e0b4b00e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f452c5e8-330c-4323-862b-aba0ec42a2c4", + "DeletedAt": null + }, + { + "Id": "b310f04d-3121-4ef7-aa4f-c8f83b09dfa4", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2 013; Mauricio", + "Ws": "en" + } + ] + }, + "SenseId": "f452c5e8-330c-4323-862b-aba0ec42a2c4", + "DeletedAt": null + } + ] + }, + { + "Id": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", + "Order": 2, + "DeletedAt": null, + "EntryId": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "Definition": {}, + "Gloss": { + "en": "be more than", + "pt": "ultrapassar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5325a3b6-551e-4f6e-8c14-eed70be18516", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nkulu kupita \u0022greater\u0022", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", + "DeletedAt": null + } + ] + }, + { + "Id": "198c45b5-e301-484e-ae81-fa801eb01331", + "Order": 3, + "DeletedAt": null, + "EntryId": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "Definition": {}, + "Gloss": { + "en": "except", + "pt": "sena\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b20a3f7-e1aa-4896-86b7-5c590d2b8794", + "DeletedAt": null, + "LexemeForm": { + "seh": "pokes" + }, + "CitationForm": { + "seh": "pokesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "051bfd1e-a26e-46e2-b13a-f3b00478e092", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b20a3f7-e1aa-4896-86b7-5c590d2b8794", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "tirar de forc\u0327a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "snatch", + "pt": "tirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d901e977-d417-4ebf-b430-d1a1c992216e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "051bfd1e-a26e-46e2-b13a-f3b00478e092", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8b4afd2d-617d-496a-9744-28b4f9c64cdf", + "DeletedAt": null, + "LexemeForm": { + "seh": "pokos" + }, + "CitationForm": { + "seh": "pokosa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff74f41d-6ccb-4d1a-be68-010a4320ed00", + "Order": 1, + "DeletedAt": null, + "EntryId": "8b4afd2d-617d-496a-9744-28b4f9c64cdf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "snatch, jerk out of the hand", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "arrancar na ma\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "snatch", + "pt": "agarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a1786879-7a9c-49d0-babe-802266f5da43", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ff74f41d-6ccb-4d1a-be68-010a4320ed00", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e053f7f-054b-4f2e-9d4d-2e52bd026f01", + "DeletedAt": null, + "LexemeForm": { + "seh": "pokoser" + }, + "CitationForm": { + "seh": "pokosera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b419d979-913b-4cf5-8a8d-c3982e3c2093", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e053f7f-054b-4f2e-9d4d-2e52bd026f01", + "Definition": { + "en": { + "Spans": [ + { + "Text": "take from someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "levar de alguem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "take", + "pt": "levar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7e52ebe-3822-4dd0-a4ff-087909c05127", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b419d979-913b-4cf5-8a8d-c3982e3c2093", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81a5753e-384a-43e7-bf66-d38ef77a04a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "poloz" + }, + "CitationForm": { + "seh": "poloza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f7f7d77-6064-4ce1-b6a3-f80826d62a99", + "Order": 1, + "DeletedAt": null, + "EntryId": "81a5753e-384a-43e7-bf66-d38ef77a04a8", + "Definition": {}, + "Gloss": { + "en": "weak", + "pt": "fraco" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16833983-c2b1-496a-a660-b75401d65a01", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0f7f7d77-6064-4ce1-b6a3-f80826d62a99", + "DeletedAt": null + } + ] + }, + { + "Id": "ad61964d-ef71-4857-89cb-5205ab969a8b", + "Order": 2, + "DeletedAt": null, + "EntryId": "81a5753e-384a-43e7-bf66-d38ef77a04a8", + "Definition": {}, + "Gloss": { + "en": "quiet", + "pt": "quieta" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d8c31365-5e36-4ce5-90ec-cf114527fe24", + "DeletedAt": null, + "LexemeForm": { + "seh": "pontho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a3baa2ad-79c0-41b1-9a24-e007e6d0b931", + "Order": 1, + "DeletedAt": null, + "EntryId": "d8c31365-5e36-4ce5-90ec-cf114527fe24", + "Definition": {}, + "Gloss": { + "en": "again", + "pt": "de novo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "92fef216-2ea0-4368-9323-69f315291960", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Tinaonana lini pontho?", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a3baa2ad-79c0-41b1-9a24-e007e6d0b931", + "DeletedAt": null + } + ] + }, + { + "Id": "c796903a-0d54-404a-a971-a11c1a968a61", + "Order": 2, + "DeletedAt": null, + "EntryId": "d8c31365-5e36-4ce5-90ec-cf114527fe24", + "Definition": {}, + "Gloss": { + "en": "also", + "pt": "ale\u0301m disso" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "066403f7-1807-4500-a50c-14dc5147719b", + "DeletedAt": null, + "LexemeForm": { + "seh": "pony" + }, + "CitationForm": { + "seh": "ponya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e35e3997-6b2c-4db4-81ed-13929160c341", + "Order": 1, + "DeletedAt": null, + "EntryId": "066403f7-1807-4500-a50c-14dc5147719b", + "Definition": {}, + "Gloss": { + "en": "throw", + "pt": "atirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "844e02a2-f96e-4e06-93ed-365d82e549d0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e35e3997-6b2c-4db4-81ed-13929160c341", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bda85504-a7da-4806-8796-9656e41478aa", + "DeletedAt": null, + "LexemeForm": { + "seh": "posi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c9c466d6-5256-46aa-9bb5-937c02901148", + "Order": 1, + "DeletedAt": null, + "EntryId": "bda85504-a7da-4806-8796-9656e41478aa", + "Definition": {}, + "Gloss": { + "en": "one", + "pt": "um" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e136ed1e-70b7-4211-bc0f-291705a2d047", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Tingamala kulengesa posi tinabwera piri", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Depois de countar \u0022um\u0022 chegamos a \u0022dois\u0022.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", + "DeletedAt": null + }, + { + "Id": "1f820f71-c282-4506-9e75-78d9d06ab66f", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Posi wace ng\u0027ono-ng\u0027ono, lembani posi wa nkulu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Sua \u0022um\u0022 e\u0301 muito pequeno, escreva um \u0022um\u0022 grande.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", + "DeletedAt": null + }, + { + "Id": "5000b3ec-ece5-4bfc-8c57-fb3ac122602a", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "posi yace", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "suas \u0022uns\u0022", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "991de334-0b44-49f4-b5a9-3492ab3a423c", + "DeletedAt": null, + "LexemeForm": { + "seh": "potok" + }, + "CitationForm": { + "seh": "potoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d9cb4e6f-d542-4847-9ffd-72997d708f48", + "Order": 1, + "DeletedAt": null, + "EntryId": "991de334-0b44-49f4-b5a9-3492ab3a423c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one person leaves a group for a short time", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "uma pessoa abandona ou retirar-se duma grupo durante uma altura curta", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "abandon", + "pt": "abandonar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5e917652-d4a3-4c55-bf79-0c72bd7b212e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d9cb4e6f-d542-4847-9ffd-72997d708f48", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1d1f4c34-7445-4115-8e27-d16d0d13442c", + "DeletedAt": null, + "LexemeForm": { + "seh": "psa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0a837b13-3198-4f8c-9049-c7a6b2ae0d4f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1d1f4c34-7445-4115-8e27-d16d0d13442c", + "Definition": {}, + "Gloss": { + "en": "new", + "pt": "novo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "928cc025-604d-4ba4-9fd7-7cc8b4fe5975", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nyumba ipsa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "casa nova", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0a837b13-3198-4f8c-9049-c7a6b2ae0d4f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3d41998-1cce-4773-93d7-ec7b9c6a2c5f", + "DeletedAt": null, + "LexemeForm": { + "seh": "psair" + }, + "CitationForm": { + "seh": "psaira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd0805ee-73c0-4c9d-8f0c-5b99eba335ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3d41998-1cce-4773-93d7-ec7b9c6a2c5f", + "Definition": {}, + "Gloss": { + "en": "sweep", + "pt": "varrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ceff8bfb-326b-4ee3-a3ae-7460015d35c9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dd0805ee-73c0-4c9d-8f0c-5b99eba335ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c151bfd2-4d0e-41af-8690-4a4f727ecb84", + "DeletedAt": null, + "LexemeForm": { + "seh": "psaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a1393013-96f3-4f9c-9dd4-9c3d1b95747d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c151bfd2-4d0e-41af-8690-4a4f727ecb84", + "Definition": {}, + "Gloss": { + "en": "married man", + "pt": "homen casado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4edef5b-d652-4322-9c89-48e52a22b7a8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a1393013-96f3-4f9c-9dd4-9c3d1b95747d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9430ddac-62cf-4d9d-9987-2b0dfcb43dd7", + "DeletedAt": null, + "LexemeForm": { + "seh": "psek" + }, + "CitationForm": { + "seh": "pseka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3feaedde-d34f-48b6-b61a-657a7768e7f7", + "Order": 1, + "DeletedAt": null, + "EntryId": "9430ddac-62cf-4d9d-9987-2b0dfcb43dd7", + "Definition": {}, + "Gloss": { + "en": "break", + "pt": "partir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac3c7754-dd27-4cc4-b895-be8ec1edb7fc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3feaedde-d34f-48b6-b61a-657a7768e7f7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "164147cc-4bba-4502-a602-0cfe185e5886", + "DeletedAt": null, + "LexemeForm": { + "seh": "psimo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7126b5f1-a48d-4788-8c37-e9837e25f274", + "Order": 1, + "DeletedAt": null, + "EntryId": "164147cc-4bba-4502-a602-0cfe185e5886", + "Definition": {}, + "Gloss": { + "en": "arrow", + "pt": "seta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a600ecc8-11e7-4de7-adb0-c2c751253805", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Passo", + "Ws": "en" + } + ] + }, + "SenseId": "7126b5f1-a48d-4788-8c37-e9837e25f274", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5b77cbed-fa36-4252-8887-9ecf11418d16", + "DeletedAt": null, + "LexemeForm": { + "seh": "psiru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fafade83-795b-4355-bcb8-9873dbad754f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5b77cbed-fa36-4252-8887-9ecf11418d16", + "Definition": {}, + "Gloss": { + "en": "trouble maker", + "pt": "malandro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f94922e7-e5c2-4ab8-8376-6c88fbce8916", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "fafade83-795b-4355-bcb8-9873dbad754f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57f166a3-6a90-4028-9e2a-f704190a2b36", + "DeletedAt": null, + "LexemeForm": { + "seh": "pukut" + }, + "CitationForm": { + "seh": "pukuta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aefd8f47-6a88-499f-9860-41598b0821ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "57f166a3-6a90-4028-9e2a-f704190a2b36", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "limpar (na\u0303o cha\u0303o)", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "clean", + "pt": "limpar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4fd4d60a-43f9-4054-98e7-6d0c7b5116d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "aefd8f47-6a88-499f-9860-41598b0821ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfc74aad-6b03-4967-b007-632908404ab4", + "DeletedAt": null, + "LexemeForm": { + "seh": "pulumuk" + }, + "CitationForm": { + "seh": "pulumuka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "34f2de2d-2b16-47d0-b90e-58da1e9da580", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfc74aad-6b03-4967-b007-632908404ab4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "save from death", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "salvar de morte", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "save", + "pt": "salvar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f2daba17-f3c7-4f16-94f6-f475f0a3cee4", + "Order": 2, + "DeletedAt": null, + "EntryId": "dfc74aad-6b03-4967-b007-632908404ab4", + "Definition": {}, + "Gloss": { + "en": "live", + "pt": "vivir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e5987e54-4319-40b8-af49-3222b14072dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "pulumus" + }, + "CitationForm": { + "seh": "pulumusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58670c9a-5c67-4b4b-87ef-5d221763088d", + "Order": 1, + "DeletedAt": null, + "EntryId": "e5987e54-4319-40b8-af49-3222b14072dd", + "Definition": {}, + "Gloss": { + "en": "save", + "pt": "salvar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "43e46058-ff31-49e7-94bb-e25124093253", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "58670c9a-5c67-4b4b-87ef-5d221763088d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "553a3f44-8c3c-4b34-8558-18bfdcb1bcb5", + "DeletedAt": null, + "LexemeForm": { + "seh": "pum" + }, + "CitationForm": { + "seh": "puma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7607ede7-857f-4bc2-bc8a-ffa119369041", + "Order": 1, + "DeletedAt": null, + "EntryId": "553a3f44-8c3c-4b34-8558-18bfdcb1bcb5", + "Definition": {}, + "Gloss": { + "en": "rest", + "pt": "descansar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac35aebb-4c3f-4a91-a311-b04fa97297e4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:030 ; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7607ede7-857f-4bc2-bc8a-ffa119369041", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7060b22-b932-4167-b8fb-9a52edc8bb29", + "DeletedAt": null, + "LexemeForm": { + "seh": "pwand" + }, + "CitationForm": { + "seh": "pwanda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "416479f0-f40d-42a8-9f53-0b36644f6a0e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7060b22-b932-4167-b8fb-9a52edc8bb29", + "Definition": {}, + "Gloss": { + "en": "step", + "pt": "pisar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a7d3c3cb-3445-4104-b48d-743854ab23c9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "416479f0-f40d-42a8-9f53-0b36644f6a0e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "102c6b55-e50c-4d04-9e3d-b2f7abdd9148", + "DeletedAt": null, + "LexemeForm": { + "seh": "pwaz" + }, + "CitationForm": { + "seh": "pwaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "10b12fa3-9914-416a-8fa1-d2468ad75a80", + "Order": 1, + "DeletedAt": null, + "EntryId": "102c6b55-e50c-4d04-9e3d-b2f7abdd9148", + "Definition": {}, + "Gloss": { + "en": "despise", + "pt": "desprezar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "30e230df-1f3b-4035-a1fd-86d98f89785b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2 004; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "10b12fa3-9914-416a-8fa1-d2468ad75a80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dafcf5ca-2765-4602-bfee-bf49b1c6fea7", + "DeletedAt": null, + "LexemeForm": { + "seh": "pweker" + }, + "CitationForm": { + "seh": "pwekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ccaed89-b1ea-46df-be4b-6e3783022746", + "Order": 1, + "DeletedAt": null, + "EntryId": "dafcf5ca-2765-4602-bfee-bf49b1c6fea7", + "Definition": {}, + "Gloss": { + "en": "rebuke", + "pt": "repreender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0d59adfe-d7f9-4286-ae9b-f705d3fc1e26", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0ccaed89-b1ea-46df-be4b-6e3783022746", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0eccb172-934c-4243-a93b-679f3b4eeb0b", + "DeletedAt": null, + "LexemeForm": { + "seh": "py" + }, + "CitationForm": { + "seh": "pya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b2a7e770-d42a-4824-be0e-573da2378774", + "Order": 1, + "DeletedAt": null, + "EntryId": "0eccb172-934c-4243-a93b-679f3b4eeb0b", + "Definition": {}, + "Gloss": { + "en": "burn", + "pt": "queimar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e192081-38fa-4efe-b063-fd35d7e427fc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b2a7e770-d42a-4824-be0e-573da2378774", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21fea269-aa2c-414f-885d-56197b7f955a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ringi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df21a85f-bac3-4b99-a803-11ab3cb0f03e", + "Order": 1, + "DeletedAt": null, + "EntryId": "21fea269-aa2c-414f-885d-56197b7f955a", + "Definition": {}, + "Gloss": { + "en": "boxing ring", + "pt": "circulo de box" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28584ea4-6eae-4ad7-9f7a-7c363cf7e175", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "df21a85f-bac3-4b99-a803-11ab3cb0f03e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7d967137-bd79-4289-979a-23c7a6ae4125", + "DeletedAt": null, + "LexemeForm": { + "seh": "ririm" + }, + "CitationForm": { + "seh": "ririma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32a60fd6-a381-4384-9736-388b2b757260", + "Order": 1, + "DeletedAt": null, + "EntryId": "7d967137-bd79-4289-979a-23c7a6ae4125", + "Definition": {}, + "Gloss": { + "en": "sink", + "pt": "afundar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0045604c-829f-4014-8846-c70cb4e72261", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "32a60fd6-a381-4384-9736-388b2b757260", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b03fae4d-9782-44db-8750-a5c63c617970", + "DeletedAt": null, + "LexemeForm": { + "seh": "rrw" + }, + "CitationForm": { + "seh": "rrwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "71c418ed-430e-42bb-b4b1-9b182da8db95", + "Order": 1, + "DeletedAt": null, + "EntryId": "b03fae4d-9782-44db-8750-a5c63c617970", + "Definition": {}, + "Gloss": { + "en": "marry", + "pt": "casar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "989fb78e-1e6e-474b-b466-6ff0ba208d21", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "71c418ed-430e-42bb-b4b1-9b182da8db95", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "494b1de4-0c63-4f51-804b-72f8495ee7a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "c5a022df-0a66-4888-a51f-a5e1d92cdb26", + "Order": 1, + "DeletedAt": null, + "EntryId": "494b1de4-0c63-4f51-804b-72f8495ee7a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "habtitual", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "HAB", + "pt": "HAB" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3ee1ca91-7b0a-4567-bb1f-a4fdd123eebf", + "Order": 2, + "DeletedAt": null, + "EntryId": "494b1de4-0c63-4f51-804b-72f8495ee7a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Present", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "PRES", + "pt": "PRES" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4162e425-13d8-4f02-931d-b93449e6937e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sa\u0301badu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58397013-05a0-4187-a402-4b7531a3d1f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "4162e425-13d8-4f02-931d-b93449e6937e", + "Definition": {}, + "Gloss": { + "en": "Saturday", + "pt": "sa\u0301bado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "044d8861-843b-4009-81e0-ffe421555e47", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "58397013-05a0-4187-a402-4b7531a3d1f6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "448ac2dc-1294-43b1-b008-a650f863c7d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "sabudu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "076bf5e2-f0dc-4475-b4b5-13f3a82fcd9d", + "Order": 1, + "DeletedAt": null, + "EntryId": "448ac2dc-1294-43b1-b008-a650f863c7d9", + "Definition": {}, + "Gloss": { + "en": "Saturday", + "pt": "sa\u0301budu" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e1316c0-2761-4b83-84fd-d2c17515843c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "076bf5e2-f0dc-4475-b4b5-13f3a82fcd9d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0f2db272-650b-4074-8fea-47a57db8da9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "sacul" + }, + "CitationForm": { + "seh": "sacula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "82120296-420f-4bc3-a316-ff1ef6f5823c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0f2db272-650b-4074-8fea-47a57db8da9d", + "Definition": {}, + "Gloss": { + "en": "weed a garden", + "pt": "tirar capim" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "811e8c93-d97a-4aab-bd67-268b7783ff11", + "Name": { + "en": "Tend a field" + }, + "Code": "6.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ec902f00-80a4-4b9a-885f-880a00c9a6c4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "82120296-420f-4bc3-a316-ff1ef6f5823c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5ea247c-727a-4a24-9681-52a2dd2faa0a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sak" + }, + "CitationForm": { + "seh": "saka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7bb96ac1-c93b-4075-abda-fc991a4232bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5ea247c-727a-4a24-9681-52a2dd2faa0a", + "Definition": {}, + "Gloss": { + "en": "get", + "pt": "procurar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8615178e-e881-47fc-a185-0a5cfc0ca7a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "sakha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "229f1945-8679-4417-a15f-0dc777567523", + "Order": 1, + "DeletedAt": null, + "EntryId": "8615178e-e881-47fc-a185-0a5cfc0ca7a5", + "Definition": {}, + "Gloss": { + "en": "sack", + "pt": "saco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c0a256e-2264-421e-a891-fad443bd683c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "229f1945-8679-4417-a15f-0dc777567523", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6c643c0-0382-4b29-95be-59acb133ae97", + "DeletedAt": null, + "LexemeForm": { + "seh": "sakhu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f91440d-e07b-4444-b306-820bc3c62d78", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6c643c0-0382-4b29-95be-59acb133ae97", + "Definition": {}, + "Gloss": { + "en": "sack", + "pt": "saco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7693b340-05eb-4ec0-bfb5-62e2a102f38c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "1f91440d-e07b-4444-b306-820bc3c62d78", + "DeletedAt": null + }, + { + "Id": "d3f51154-f915-4c35-b236-735537869b03", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1f91440d-e07b-4444-b306-820bc3c62d78", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3344fdf4-a13b-4c79-9ad6-6097e665fc97", + "DeletedAt": null, + "LexemeForm": { + "seh": "sakir" + }, + "CitationForm": { + "seh": "sakira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1b86fc97-a86d-4edb-a856-501eaf8b9e6c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3344fdf4-a13b-4c79-9ad6-6097e665fc97", + "Definition": {}, + "Gloss": { + "en": "get for", + "pt": "procurar para" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f2b8aef2-ec0b-4433-a929-44420f548ec4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "1b86fc97-a86d-4edb-a856-501eaf8b9e6c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bedd7ff0-a9bd-4598-9351-e23cfbce645a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sal" + }, + "CitationForm": { + "seh": "sala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9374269-8d7c-433e-a4d1-2fbc6cd04fa5", + "Order": 1, + "DeletedAt": null, + "EntryId": "bedd7ff0-a9bd-4598-9351-e23cfbce645a", + "Definition": {}, + "Gloss": { + "en": "stay", + "pt": "ficar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "957536b7-d5c2-4e7e-af36-1881c877548f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f9374269-8d7c-433e-a4d1-2fbc6cd04fa5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96c1522a-3124-4b58-9760-c97d8625a78a", + "DeletedAt": null, + "LexemeForm": { + "seh": "samb" + }, + "CitationForm": { + "seh": "samba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8aaa121c-0d62-46ec-a3f8-932b53ec00f0", + "Order": 1, + "DeletedAt": null, + "EntryId": "96c1522a-3124-4b58-9760-c97d8625a78a", + "Definition": {}, + "Gloss": { + "en": "bathe", + "pt": "banhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3dd6af88-d82b-415b-9b8b-bb98a41875d8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8aaa121c-0d62-46ec-a3f8-932b53ec00f0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af589c9c-f424-4366-a011-dba593f5c186", + "DeletedAt": null, + "LexemeForm": { + "seh": "sambirir" + }, + "CitationForm": { + "seh": "sambirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc9918ca-3931-45f2-a346-37e20a6eb6b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "af589c9c-f424-4366-a011-dba593f5c186", + "Definition": {}, + "Gloss": { + "en": "swim", + "pt": "nadar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a4465d34-89b6-4a28-9bf3-d4a227824b58", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bc9918ca-3931-45f2-a346-37e20a6eb6b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a177cc33-183c-4fec-b842-7c12e64c6a0b", + "DeletedAt": null, + "LexemeForm": { + "seh": "sandik" + }, + "CitationForm": { + "seh": "sandika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f35b7645-f5d6-4526-9ff8-cfa0a2bfff9f", + "Order": 1, + "DeletedAt": null, + "EntryId": "a177cc33-183c-4fec-b842-7c12e64c6a0b", + "Definition": {}, + "Gloss": { + "en": "correct", + "pt": "corrigir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8a93b32-3e4e-45a9-9cdb-c120cc9efc51", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f35b7645-f5d6-4526-9ff8-cfa0a2bfff9f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c19976a2-9cfa-4d19-9aed-0200bba67624", + "DeletedAt": null, + "LexemeForm": { + "seh": "sandikik" + }, + "CitationForm": { + "seh": "sandikika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3df4e095-0ab3-4e63-b349-4085ad7ea31d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c19976a2-9cfa-4d19-9aed-0200bba67624", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be disappointed, things didn\u0027t turn out as planned, so one feels sorry for an action, repent", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "be disappointed", + "pt": "disappointar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9e207aa4-adb3-43c5-b402-cbd02be726fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3df4e095-0ab3-4e63-b349-4085ad7ea31d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d263c705-f2a2-419c-a42d-8963c433b444", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanduk" + }, + "CitationForm": { + "seh": "sanduka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e5ddd13-ed8e-4e0e-ac77-f6c630ff5e1c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d263c705-f2a2-419c-a42d-8963c433b444", + "Definition": {}, + "Gloss": { + "en": "change", + "pt": "mudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "256617cf-2cdb-4161-9b33-686ff6ceeb84", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8e5ddd13-ed8e-4e0e-ac77-f6c630ff5e1c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f33b2123-3575-4dc9-9255-3d207820079d", + "DeletedAt": null, + "LexemeForm": { + "seh": "sandukir" + }, + "CitationForm": { + "seh": "sandukira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "edaca876-4e83-48b2-a21c-43f30e9ec1f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f33b2123-3575-4dc9-9255-3d207820079d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one that was a friend and now is an enemy", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "betray", + "pt": "trair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d78854b5-f5e1-44ea-9341-47264ded4889", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "edaca876-4e83-48b2-a21c-43f30e9ec1f9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b041dab2-b828-4f19-846c-bfab50de5732", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanduz" + }, + "CitationForm": { + "seh": "sanduza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9b3f4461-b2be-4678-bcd9-ef1fe0f95d6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "b041dab2-b828-4f19-846c-bfab50de5732", + "Definition": { + "en": { + "Spans": [ + { + "Text": "change turn over something that is drying", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "change", + "pt": "mudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "65004fc3-e917-4948-be71-6f58666aec90", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9b3f4461-b2be-4678-bcd9-ef1fe0f95d6f", + "DeletedAt": null + } + ] + }, + { + "Id": "6a17df72-0935-4972-8df4-37a444a3e609", + "Order": 2, + "DeletedAt": null, + "EntryId": "b041dab2-b828-4f19-846c-bfab50de5732", + "Definition": {}, + "Gloss": { + "en": "transform", + "pt": "transformar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d94eaa3-f891-43be-93b5-ca24fc443185", + "DeletedAt": null, + "LexemeForm": { + "seh": "sankhul" + }, + "CitationForm": { + "seh": "sankhula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d5594291-e8d7-448b-8c98-356280a9beff", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d94eaa3-f891-43be-93b5-ca24fc443185", + "Definition": {}, + "Gloss": { + "en": "choose", + "pt": "escolher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6564851-a738-4648-a055-83c0fab4be93", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d5594291-e8d7-448b-8c98-356280a9beff", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7caa342a-2217-4a66-b690-bcbf748db6a0", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "92b77272-33f6-4ae9-9593-8884890d1596", + "Order": 1, + "DeletedAt": null, + "EntryId": "7caa342a-2217-4a66-b690-bcbf748db6a0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "second story of a building, often but not always used to store grain.", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "elevated house", + "pt": "casa elevada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8120a626-c5bf-4cd4-94a1-e186dc21719d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Dzuwa sanza", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "por de sol", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "92b77272-33f6-4ae9-9593-8884890d1596", + "DeletedAt": null + }, + { + "Id": "01d91810-b888-4262-b131-836966e5190d", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mapiramanga ali pa sanza.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Milho esta\u0301 em cima de casa elevada.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "92b77272-33f6-4ae9-9593-8884890d1596", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7d33069-fa77-4de9-b955-8fbca0a0f335", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a7921e6-0eed-496f-8fce-251cc73f54b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7d33069-fa77-4de9-b955-8fbca0a0f335", + "Definition": {}, + "Gloss": { + "en": "branch", + "pt": "ramo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b0593e44-fa76-4751-b234-214f35ea70d8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6a7921e6-0eed-496f-8fce-251cc73f54b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "432dc2da-4831-42a0-b39e-bdae47c2bb9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sasany" + }, + "CitationForm": { + "seh": "sasanya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22d82ffc-5fb1-433d-b1d7-ea2f0cf74946", + "Order": 1, + "DeletedAt": null, + "EntryId": "432dc2da-4831-42a0-b39e-bdae47c2bb9e", + "Definition": {}, + "Gloss": { + "en": "prepare", + "pt": "arranjar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b5c6127-d8ce-4eac-b126-429d84212df9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "22d82ffc-5fb1-433d-b1d7-ea2f0cf74946", + "DeletedAt": null + } + ] + }, + { + "Id": "971be336-8e62-4ad2-97e7-47562f7cf80d", + "Order": 2, + "DeletedAt": null, + "EntryId": "432dc2da-4831-42a0-b39e-bdae47c2bb9e", + "Definition": {}, + "Gloss": { + "en": "straighten up", + "pt": "endireitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "110c0a2b-edb5-4cde-b23a-55bb6a1652f6", + "DeletedAt": null, + "LexemeForm": { + "seh": "sawasawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d3d45414-258a-41bf-b107-dc316f5eb53e", + "Order": 1, + "DeletedAt": null, + "EntryId": "110c0a2b-edb5-4cde-b23a-55bb6a1652f6", + "Definition": {}, + "Gloss": { + "en": "equal", + "pt": "igual" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "030737e9-089d-4df6-8187-9a30302ac08c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d3d45414-258a-41bf-b107-dc316f5eb53e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc31fdc8-2604-42d7-99c8-34e27ad3dac2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sek" + }, + "CitationForm": { + "seh": "seka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ce4fc2d-6488-4049-be7b-3d6685c21093", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc31fdc8-2604-42d7-99c8-34e27ad3dac2", + "Definition": {}, + "Gloss": { + "en": "laugh", + "pt": "rir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9f6c011e-714d-4cf8-ae62-de570390a443", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5ce4fc2d-6488-4049-be7b-3d6685c21093", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1cddb6ce-314a-420a-b796-ec280c1fd71c", + "DeletedAt": null, + "LexemeForm": { + "seh": "semb" + }, + "CitationForm": { + "seh": "semba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "23e2e383-ef7c-4d19-a72f-1621ef30e0ed", + "Order": 1, + "DeletedAt": null, + "EntryId": "1cddb6ce-314a-420a-b796-ec280c1fd71c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "engage, go to the girl\u0027s father and ask to marry", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "become engaged", + "pt": "namorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "99bfee17-4cb9-484c-8f81-335dd1322736", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "23e2e383-ef7c-4d19-a72f-1621ef30e0ed", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f30b367-5496-4f7a-8c6b-95711f1b69e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "senzek" + }, + "CitationForm": { + "seh": "senzeka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "28376e7b-02a2-41bb-87bd-7161ce3ac904", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f30b367-5496-4f7a-8c6b-95711f1b69e2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "children\u0027s play, noncompetative play", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "brincar de crianc\u0327as", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "play", + "pt": "brincar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "94a80045-7351-4c72-a570-d242e410c013", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyezeze; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "28376e7b-02a2-41bb-87bd-7161ce3ac904", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96241026-4980-4758-b979-574ff19c4e3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5c30367b-6a13-44e2-9d98-b41917c9eb99", + "Order": 1, + "DeletedAt": null, + "EntryId": "96241026-4980-4758-b979-574ff19c4e3c", + "Definition": {}, + "Gloss": { + "en": "eight", + "pt": "oito" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7fd37087-140b-42b2-9e86-c1c5e4d2afa2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "5c30367b-6a13-44e2-9d98-b41917c9eb99", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "43d895e7-f155-478b-b6fb-2ba65b267385", + "DeletedAt": null, + "LexemeForm": { + "seh": "si" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "91a80f4d-c929-4b7c-ab95-403544fb9b61", + "Order": 1, + "DeletedAt": null, + "EntryId": "43d895e7-f155-478b-b6fb-2ba65b267385", + "Definition": { + "en": { + "Spans": [ + { + "Text": "first person singular negative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "primeiro pessoa singular negativo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1SNEG", + "pt": "1SNEG" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d03f39d0-10ef-4d35-b13b-a965124a9230", + "DeletedAt": null, + "LexemeForm": { + "seh": "sia" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3df4ef3e-1ef2-4b5e-a41e-ebd024335c8c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d03f39d0-10ef-4d35-b13b-a965124a9230", + "Definition": {}, + "Gloss": { + "en": "leave someone", + "pt": "deixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3204f76-ce79-47c7-8c1f-4ddb81f74be0", + "DeletedAt": null, + "LexemeForm": { + "seh": "simango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41acb687-44b9-4c4d-b448-122dea15f267", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3204f76-ce79-47c7-8c1f-4ddb81f74be0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Samango monkey", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "monkey", + "pt": "macaco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b8c0a1ee-e7fc-4282-a8a1-82ce009ba838", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "41acb687-44b9-4c4d-b448-122dea15f267", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f3107da-fee5-4761-8bb3-d2b02ae5a1ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "simb" + }, + "CitationForm": { + "seh": "simba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e103ab2e-f827-4438-96bf-86ef4267e9aa", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f3107da-fee5-4761-8bb3-d2b02ae5a1ed", + "Definition": {}, + "Gloss": { + "en": "give praise", + "pt": "dar lavor" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e2068be-090c-41e9-8b43-e25ca034eb31", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e103ab2e-f827-4438-96bf-86ef4267e9aa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3ffe2c6-91ba-470a-8292-1622d94335ec", + "DeletedAt": null, + "LexemeForm": { + "seh": "simbisis" + }, + "CitationForm": { + "seh": "simbisisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d4030108-039e-48d9-a868-901c2072385d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3ffe2c6-91ba-470a-8292-1622d94335ec", + "Definition": { + "en": { + "Spans": [ + { + "Text": "complete, explain, fulfill", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "compete", + "pt": "completar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4bf93f34-5eee-4007-9e47-0ab8a0f5663a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d4030108-039e-48d9-a868-901c2072385d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "68cd4cbe-82c3-496b-bdb8-33195ac3bfde", + "DeletedAt": null, + "LexemeForm": { + "seh": "sine" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6737d4ac-143a-4729-829e-f5f8bd391e06", + "Order": 1, + "DeletedAt": null, + "EntryId": "68cd4cbe-82c3-496b-bdb8-33195ac3bfde", + "Definition": {}, + "Gloss": { + "en": "it is not", + "pt": "na\u0303o e\u0301" + }, + "PartOfSpeech": { + "Id": "748af620-8cd0-4364-a951-c234306f5b9f", + "Name": { + "en": "Copula Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd281030-363a-47ea-9e4c-96bf1bffc0a3", + "DeletedAt": null, + "LexemeForm": { + "seh": "sinyala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94ee3153-27ce-49a1-9a8a-5fc0afa329c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd281030-363a-47ea-9e4c-96bf1bffc0a3", + "Definition": {}, + "Gloss": { + "en": "prostitute", + "pt": "prostituta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9e3a735-cf26-4960-83f6-f5546eab2cdc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:20 (says half caste); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "94ee3153-27ce-49a1-9a8a-5fc0afa329c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0977c6c-e092-45a9-86b9-023cb2bee311", + "DeletedAt": null, + "LexemeForm": { + "seh": "sirir" + }, + "CitationForm": { + "seh": "sirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57bfaa1f-735b-4c81-97aa-69b2efd9b530", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0977c6c-e092-45a9-86b9-023cb2bee311", + "Definition": {}, + "Gloss": { + "en": "be greedy", + "pt": "cobic\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a49a064-ca35-400d-9062-74284af211ec", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndasirira nguwo yako.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Cobicei a tua ropa.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "57bfaa1f-735b-4c81-97aa-69b2efd9b530", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bcbe35eb-8f26-41fe-84e6-e88c179248ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "sirizw" + }, + "CitationForm": { + "seh": "sirizwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eca32c60-3044-4c43-9ba3-7192e3155034", + "Order": 1, + "DeletedAt": null, + "EntryId": "bcbe35eb-8f26-41fe-84e6-e88c179248ff", + "Definition": {}, + "Gloss": { + "en": "be upset", + "pt": "ficar chateado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c02c708b-1a28-48a1-953f-3e11507f7f96", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:41", + "Ws": "en" + } + ] + }, + "SenseId": "eca32c60-3044-4c43-9ba3-7192e3155034", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "308ec1c8-9754-4c9a-88ed-eacdf6fea89c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sitir" + }, + "CitationForm": { + "seh": "sitira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea17990f-9b07-43fe-b097-597f7e238156", + "Order": 1, + "DeletedAt": null, + "EntryId": "308ec1c8-9754-4c9a-88ed-eacdf6fea89c", + "Definition": {}, + "Gloss": { + "en": "impede", + "pt": "impedir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e69179d-c185-4f66-941d-de3afe08b79d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ea17990f-9b07-43fe-b097-597f7e238156", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05640c89-1b5b-463b-83e9-778928d23fc7", + "DeletedAt": null, + "LexemeForm": { + "seh": "siy" + }, + "CitationForm": { + "seh": "siya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "54abd687-0f45-4550-8779-511abb42721d", + "Order": 1, + "DeletedAt": null, + "EntryId": "05640c89-1b5b-463b-83e9-778928d23fc7", + "Definition": {}, + "Gloss": { + "en": "leave someone", + "pt": "deixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a93c42a8-dc8b-46a7-a83c-1501144f6507", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu wanga, Mulungu wanga, wandisiiranji?", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "54abd687-0f45-4550-8779-511abb42721d", + "DeletedAt": null + } + ] + }, + { + "Id": "32467084-7626-49a5-81ad-ffd52563622c", + "Order": 2, + "DeletedAt": null, + "EntryId": "05640c89-1b5b-463b-83e9-778928d23fc7", + "Definition": {}, + "Gloss": { + "en": "die", + "pt": "morrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cd852ab7-6c27-4366-bc22-5d44f425badf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "N\u0027tenda atisiya", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "The sick one has left us (died).", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "O doente nos deixou (morreu).", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "32467084-7626-49a5-81ad-ffd52563622c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f85e330e-dc79-447d-a5ea-979382f8beee", + "DeletedAt": null, + "LexemeForm": { + "seh": "sodz" + }, + "CitationForm": { + "seh": "sodza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "feb33bce-b6eb-4ceb-ac7d-4576e2624962", + "Order": 1, + "DeletedAt": null, + "EntryId": "f85e330e-dc79-447d-a5ea-979382f8beee", + "Definition": {}, + "Gloss": { + "en": "hunt", + "pt": "cac\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a858111f-ed4f-4a2e-98fa-47a2cecec217", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "feb33bce-b6eb-4ceb-ac7d-4576e2624962", + "DeletedAt": null + } + ] + }, + { + "Id": "b9579104-0efb-4b6b-9e41-023c12911774", + "Order": 2, + "DeletedAt": null, + "EntryId": "f85e330e-dc79-447d-a5ea-979382f8beee", + "Definition": {}, + "Gloss": { + "en": "fish", + "pt": "pescar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "570efd59-0e7d-4717-9d03-e3aa0a99fb15", + "DeletedAt": null, + "LexemeForm": { + "seh": "sogol" + }, + "CitationForm": { + "seh": "sogola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8057b6f0-b920-4858-88d2-309e1eed6b9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "570efd59-0e7d-4717-9d03-e3aa0a99fb15", + "Definition": {}, + "Gloss": { + "en": "go in front", + "pt": "adiantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "275ef75c-09ca-418a-8da6-d965f272ba00", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8057b6f0-b920-4858-88d2-309e1eed6b9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "132f1c22-92e0-4b68-838c-c20ff24aa3ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "som" + }, + "CitationForm": { + "seh": "soma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e74c118-c9ef-4a6e-8c67-13d0f309763e", + "Order": 1, + "DeletedAt": null, + "EntryId": "132f1c22-92e0-4b68-838c-c20ff24aa3ac", + "Definition": {}, + "Gloss": { + "en": "lack", + "pt": "faultar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1666decc-8f0b-49ea-acde-de80a464c2c3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8e74c118-c9ef-4a6e-8c67-13d0f309763e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "375d478e-91a5-4bf7-bfd5-a1fce8777d23", + "DeletedAt": null, + "LexemeForm": { + "seh": "son" + }, + "CitationForm": { + "seh": "sona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", + "Order": 1, + "DeletedAt": null, + "EntryId": "375d478e-91a5-4bf7-bfd5-a1fce8777d23", + "Definition": {}, + "Gloss": { + "en": "sew", + "pt": "coser" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14619413-a646-4223-b467-91556bf06e09", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndasona nguwo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eu cosi roupas.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", + "DeletedAt": null + }, + { + "Id": "f066bdff-2843-46ff-9ec5-1eac7de82d78", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nguwa nyakusoniwa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ropa cosida", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e3def7f9-5c60-4550-a87a-44c6ef539815", + "DeletedAt": null, + "LexemeForm": { + "seh": "sow" + }, + "CitationForm": { + "seh": "sowa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f752860-a94c-40e1-8e00-e21a9de5f0cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "e3def7f9-5c60-4550-a87a-44c6ef539815", + "Definition": {}, + "Gloss": { + "en": "not exist", + "pt": "ter falta" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00742720-4968-4fbc-a5ed-5a634dbe6518", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akhafamba mbuto dza kusowa anthu maningi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "he walked in a place of not many people", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "1f752860-a94c-40e1-8e00-e21a9de5f0cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "70e9e2a1-964d-417e-8385-6734f0e9b3b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "sowek" + }, + "CitationForm": { + "seh": "soweka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3638e80f-f10d-4940-870c-8e11a37c1741", + "Order": 1, + "DeletedAt": null, + "EntryId": "70e9e2a1-964d-417e-8385-6734f0e9b3b7", + "Definition": {}, + "Gloss": { + "en": "lack", + "pt": "faltar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1dcbb6f-4d8d-49dc-8ed9-e051fa5c21e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3638e80f-f10d-4940-870c-8e11a37c1741", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ba747b1-77c0-4ebe-b541-1150596df1a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "subenz" + }, + "CitationForm": { + "seh": "subenza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "56aa7d5b-4657-48a4-9279-8ae8d6b1d47d", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ba747b1-77c0-4ebe-b541-1150596df1a2", + "Definition": {}, + "Gloss": { + "en": "work", + "pt": "trabalhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5320918-183d-47cb-8d95-28425c88269c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musasubenza kupi?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "trabalha a onde?", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "56aa7d5b-4657-48a4-9279-8ae8d6b1d47d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57009cdb-cd11-451f-8340-05dce62ccb40", + "DeletedAt": null, + "LexemeForm": { + "seh": "sudzul" + }, + "CitationForm": { + "seh": "sudzula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e7918fd5-b343-4516-9e0f-47742369c08e", + "Order": 1, + "DeletedAt": null, + "EntryId": "57009cdb-cd11-451f-8340-05dce62ccb40", + "Definition": {}, + "Gloss": { + "en": "untie", + "pt": "desatar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00bc9cb8-8521-4de5-a49a-f739bc416546", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e7918fd5-b343-4516-9e0f-47742369c08e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "446538d9-1b1e-4b45-97c5-07af29dc72e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "sukun" + }, + "CitationForm": { + "seh": "sukuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31c1e263-4dbc-402f-a0f3-82d860f258f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "446538d9-1b1e-4b45-97c5-07af29dc72e9", + "Definition": {}, + "Gloss": { + "en": "pinch", + "pt": "belisca\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05139c3e-2e20-47b6-816a-59018702ee82", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist (said arranhar)", + "Ws": "en" + } + ] + }, + "SenseId": "31c1e263-4dbc-402f-a0f3-82d860f258f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8b4c2f6c-7bc3-41da-9705-8967901fdb1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sulo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8b58fac-14b5-4eb0-8a25-03a5f365ea4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "8b4c2f6c-7bc3-41da-9705-8967901fdb1e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "rabbit", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rabbit", + "pt": "coelho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d52bc50d-8279-467f-a7ed-958ef06e266e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "c8b58fac-14b5-4eb0-8a25-03a5f365ea4c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e36d67d0-39f8-4b80-9173-19cac2ff12c5", + "DeletedAt": null, + "LexemeForm": { + "seh": "sum" + }, + "CitationForm": { + "seh": "suma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f411efec-e9a4-42da-9842-8ef770cbf71a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e36d67d0-39f8-4b80-9173-19cac2ff12c5", + "Definition": {}, + "Gloss": { + "en": "complain", + "pt": "queixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1818a6fa-ddc0-44ff-96a0-6e788c97c0b3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f411efec-e9a4-42da-9842-8ef770cbf71a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1abdc28d-398c-429f-bead-7202899d3885", + "DeletedAt": null, + "LexemeForm": { + "seh": "supada" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "398a49fe-4e56-4627-ae97-cb65ba976267", + "Order": 1, + "DeletedAt": null, + "EntryId": "1abdc28d-398c-429f-bead-7202899d3885", + "Definition": {}, + "Gloss": { + "en": "machede", + "pt": "catana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f98ff9c-dcc3-4ed9-a24b-c2420a70c705", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "398a49fe-4e56-4627-ae97-cb65ba976267", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "439f88cd-0acc-42bd-acc4-db26e80c827c", + "DeletedAt": null, + "LexemeForm": { + "seh": "suzumir" + }, + "CitationForm": { + "seh": "suzumira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d06ecf71-49da-4964-9580-9579fd3f4d19", + "Order": 1, + "DeletedAt": null, + "EntryId": "439f88cd-0acc-42bd-acc4-db26e80c827c", + "Definition": {}, + "Gloss": { + "en": "peek", + "pt": "espreitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bc7f452f-898e-477a-bc7d-a18c96244169", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d06ecf71-49da-4964-9580-9579fd3f4d19", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2cd63e9-b1d2-4a3b-b26b-0e5ec67a26d6", + "DeletedAt": null, + "LexemeForm": { + "seh": "sw" + }, + "CitationForm": { + "seh": "swa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1cf49a8e-38e9-414f-b537-8f83f8b48dc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2cd63e9-b1d2-4a3b-b26b-0e5ec67a26d6", + "Definition": {}, + "Gloss": { + "en": "break", + "pt": "quebrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8335ae3a-2734-4b4e-8d08-7b19d8414721", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:4 (bsu a); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1cf49a8e-38e9-414f-b537-8f83f8b48dc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f5599cb-54e7-41bb-884d-e1aef553b0f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "taik" + }, + "CitationForm": { + "seh": "taika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "13b95c7a-e9f5-4949-a5fa-4ee19fabe2b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f5599cb-54e7-41bb-884d-e1aef553b0f5", + "Definition": {}, + "Gloss": { + "en": "get lost", + "pt": "perder-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "41878109-2f74-462f-b9d7-ce5dc0daa666", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "13b95c7a-e9f5-4949-a5fa-4ee19fabe2b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c7bed3b1-eb76-45d1-82f5-e9c8f0286af2", + "DeletedAt": null, + "LexemeForm": { + "seh": "tair" + }, + "CitationForm": { + "seh": "taira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca663076-d46e-4916-9152-fb4b1ef79f28", + "Order": 1, + "DeletedAt": null, + "EntryId": "c7bed3b1-eb76-45d1-82f5-e9c8f0286af2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "throw onto someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "deitar sobre alguem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "throw", + "pt": "deitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2ece3f3-684d-4da2-aa8b-7708a7c66795", + "DeletedAt": null, + "LexemeForm": { + "seh": "tairirw" + }, + "CitationForm": { + "seh": "tairirwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "587500c7-c9d0-4ca7-be10-38f22967b04d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2ece3f3-684d-4da2-aa8b-7708a7c66795", + "Definition": {}, + "Gloss": { + "en": "be accepted", + "pt": "ser aceite" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d265b2ee-d382-4868-b7b0-a60d83643d5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ta\u0301limba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef17635e-7bf6-4081-9faa-89b79f750a92", + "Order": 1, + "DeletedAt": null, + "EntryId": "d265b2ee-d382-4868-b7b0-a60d83643d5d", + "Definition": {}, + "Gloss": { + "en": "bed", + "pt": "cama" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0f2c3405-5b48-4c87-b13b-42c044aee3f6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef17635e-7bf6-4081-9faa-89b79f750a92", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "499207d4-cf8f-4272-9dcc-723871224c8b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tamb" + }, + "CitationForm": { + "seh": "tamba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "61ba3dff-0d4a-4f4f-a3c9-da3d0ae58cd9", + "Order": 1, + "DeletedAt": null, + "EntryId": "499207d4-cf8f-4272-9dcc-723871224c8b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "catch suffering", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "apanhar sofrimento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "suffer", + "pt": "sofrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "500414b0-0b87-4bf4-a8ec-f1a3e6331b9c", + "DeletedAt": null, + "LexemeForm": { + "seh": "tambir" + }, + "CitationForm": { + "seh": "tambira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ffa46537-54b5-4f01-a275-fce0693eea51", + "Order": 1, + "DeletedAt": null, + "EntryId": "500414b0-0b87-4bf4-a8ec-f1a3e6331b9c", + "Definition": {}, + "Gloss": { + "en": "receive", + "pt": "receber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "baba77bd-a023-4c00-b40f-3b5353a94772", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ffa46537-54b5-4f01-a275-fce0693eea51", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "907917e1-61ea-4f3d-a5fa-3295dbe4e7a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tani" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b9f6b2b3-fe70-4b2b-9d90-47d4b36194bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "907917e1-61ea-4f3d-a5fa-3295dbe4e7a7", + "Definition": {}, + "Gloss": { + "en": "how?", + "pt": "como?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c018e539-9c31-4a2a-9736-d896328ea4f4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b9f6b2b3-fe70-4b2b-9d90-47d4b36194bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "148a2e40-1bce-4854-b868-8514de1ef583", + "DeletedAt": null, + "LexemeForm": { + "seh": "tanthatu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "35b68d05-0492-4bc2-9003-a3b443d6bb08", + "Order": 1, + "DeletedAt": null, + "EntryId": "148a2e40-1bce-4854-b868-8514de1ef583", + "Definition": {}, + "Gloss": { + "en": "six", + "pt": "seis" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "536b66e9-5b56-4e3e-ba7b-8fe91daa7c87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "35b68d05-0492-4bc2-9003-a3b443d6bb08", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "409b80d2-e926-4449-911c-956d23f7daef", + "DeletedAt": null, + "LexemeForm": { + "seh": "tap" + }, + "CitationForm": { + "seh": "tapa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "daeef4ba-0630-46d0-85f7-d42aea9bdc51", + "Order": 1, + "DeletedAt": null, + "EntryId": "409b80d2-e926-4449-911c-956d23f7daef", + "Definition": {}, + "Gloss": { + "en": "scoop", + "pt": "tirar gra\u0303os" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "beef260e-a484-4292-a903-a97b671ecd68", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "daeef4ba-0630-46d0-85f7-d42aea9bdc51", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7a8f21b-4304-4e87-9721-54c4097b3767", + "DeletedAt": null, + "LexemeForm": { + "seh": "tapatw" + }, + "CitationForm": { + "seh": "tapatwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fd6925ea-62b7-484d-b7f3-3e26652c2876", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7a8f21b-4304-4e87-9721-54c4097b3767", + "Definition": {}, + "Gloss": { + "en": "be enslaved", + "pt": "ser escravo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "48331395-f0b7-4a64-b754-e4ddf699e698", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fd6925ea-62b7-484d-b7f3-3e26652c2876", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6b8a0da-b97d-4511-9562-bec2277c9c33", + "DeletedAt": null, + "LexemeForm": { + "seh": "tapik" + }, + "CitationForm": { + "seh": "tapika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2b1e6e5c-832b-4c98-bab7-3aab2e4ed099", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6b8a0da-b97d-4511-9562-bec2277c9c33", + "Definition": {}, + "Gloss": { + "en": "vomit", + "pt": "vomitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "272d4669-d22a-484f-b784-efac759790da", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2b1e6e5c-832b-4c98-bab7-3aab2e4ed099", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45f878d6-86a0-42a7-a9f2-ed74fb11f519", + "DeletedAt": null, + "LexemeForm": { + "seh": "tatu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "275e89aa-2531-4a04-8cc4-c633939186af", + "Order": 1, + "DeletedAt": null, + "EntryId": "45f878d6-86a0-42a7-a9f2-ed74fb11f519", + "Definition": {}, + "Gloss": { + "en": "three", + "pt": "tre\u0302s" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2f838722-389b-4048-9d1c-a48542f17fe3", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ana atatu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:33", + "Ws": "en" + } + ] + }, + "SenseId": "275e89aa-2531-4a04-8cc4-c633939186af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tawir" + }, + "CitationForm": { + "seh": "tawira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be445097-46a4-456d-9ce2-cd5df74eedb0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "respond", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "responder", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "respond", + "pt": "responder" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cff5fb2a-3529-4640-8d38-963abf821737", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "be445097-46a4-456d-9ce2-cd5df74eedb0", + "DeletedAt": null + } + ] + }, + { + "Id": "3ce69d12-3a32-44e4-8761-314d11d493b0", + "Order": 2, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "agree", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "concordar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "agree", + "pt": "concordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "082609f1-948d-4d7e-88a8-bdbdf9c07aa8", + "Order": 3, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "believe", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cre", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "belive", + "pt": "crer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "9de92b45-c94c-4ad6-b43a-a91c3627b415", + "Order": 4, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "trust", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "confiar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trust", + "pt": "confiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "604b2b52-bb1a-4a4f-a945-58d91f6583ff", + "Order": 5, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "accept", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "acreditar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "accept", + "pt": "acreditar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30169f43-6797-4216-950d-36b330ca2c85", + "DeletedAt": null, + "LexemeForm": { + "seh": "tay" + }, + "CitationForm": { + "seh": "taya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9db6aecc-bae4-42fe-9a51-0e6141043296", + "Order": 1, + "DeletedAt": null, + "EntryId": "30169f43-6797-4216-950d-36b330ca2c85", + "Definition": {}, + "Gloss": { + "en": "throw out", + "pt": "deitar fora" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf0d2836-5d8a-45de-9fc0-cbc294dc138c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9db6aecc-bae4-42fe-9a51-0e6141043296", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af29747d-2cc8-47e4-8d31-cd87905ab185", + "DeletedAt": null, + "LexemeForm": { + "seh": "tayu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "Order": 1, + "DeletedAt": null, + "EntryId": "af29747d-2cc8-47e4-8d31-cd87905ab185", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "na\u0303o , usado por e\u0302mfase", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "not at all", + "pt": "nada" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16c4d35c-1267-434e-8cc6-ccbe251c4a37", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "si- aweni tayu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "neg-eles(um groupo) na\u0303o", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "cc5f5926-b548-4efd-a6e0-96d501f30dec", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Wayenda xicola leru? Nkhabe, [sidaenda tayu.]", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Foste escola hoje\u0301 na\u0303o neg-fui na\u0303o", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "1e882aa3-5a06-4c43-b030-25ffe79ba369", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkhabe kucicita", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o fazer (eu na\u0303o fiz)", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "5be0c856-e85b-4d91-9bca-b4e1f97b9d50", + "Order": 4, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkabe kucifuna [tayu] - present", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "f7e5a22f-1c75-4d58-9c83-360f4411a1f6", + "Order": 5, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sindacifuna [tayu] - past", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d25cfdbe-1f0d-4dea-ab0a-0afa51f8a226", + "DeletedAt": null, + "LexemeForm": { + "seh": "tebzala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a8395899-5677-4b10-ad80-d2e54c4d5b30", + "Order": 1, + "DeletedAt": null, + "EntryId": "d25cfdbe-1f0d-4dea-ab0a-0afa51f8a226", + "Definition": {}, + "Gloss": { + "en": "father-in-law", + "pt": "sogro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5c9f4626-1c11-4da6-8100-10258a3de09b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook (tebzala)", + "Ws": "en" + } + ] + }, + "SenseId": "a8395899-5677-4b10-ad80-d2e54c4d5b30", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0635d81-8228-4ff7-8b7b-55f940d82f4b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tekeny" + }, + "CitationForm": { + "seh": "tekenya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0635d81-8228-4ff7-8b7b-55f940d82f4b", + "Definition": {}, + "Gloss": { + "en": "shake", + "pt": "mexer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ba4e9983-0fc6-4e44-8f47-b0ca2a988f40", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndatekenya karu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Conduzir carro", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "DeletedAt": null + }, + { + "Id": "7b5b26af-1065-4c9e-b256-ed246155e847", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Phesi ya kutekenyeka na mphepo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Canic\u0327o mudado pelo vento.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "DeletedAt": null + }, + { + "Id": "f6dcc2ad-61c5-4978-abf3-acd9403d6882", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndatekenya muti", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Shake tree", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "DeletedAt": null + } + ] + }, + { + "Id": "7d04a11e-a1cc-4c15-a02c-1867b204ccd1", + "Order": 2, + "DeletedAt": null, + "EntryId": "e0635d81-8228-4ff7-8b7b-55f940d82f4b", + "Definition": {}, + "Gloss": { + "en": "drive", + "pt": "conduzir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7898fcb4-34f0-4255-afcd-5d421ee02cf1", + "DeletedAt": null, + "LexemeForm": { + "seh": "teker" + }, + "CitationForm": { + "seh": "tekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "660286a9-9d95-41b5-9a83-0ade27159575", + "Order": 1, + "DeletedAt": null, + "EntryId": "7898fcb4-34f0-4255-afcd-5d421ee02cf1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "inappropriate behavior repeated or a sickness that continues", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it\u0027s too much", + "pt": "e\u0301 demais" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec301ca4-2289-4e6e-9b3f-16415ac8052e", + "DeletedAt": null, + "LexemeForm": { + "seh": "teketesan" + }, + "CitationForm": { + "seh": "teketesana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0cff3926-500e-48fa-a76e-586fa07b315b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec301ca4-2289-4e6e-9b3f-16415ac8052e", + "Definition": {}, + "Gloss": { + "en": "argue", + "pt": "discutir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f6679303-a1d2-4863-a062-f51e9abd67ec", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0cff3926-500e-48fa-a76e-586fa07b315b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "572a51a1-3a92-4d65-95d0-a1278a445550", + "DeletedAt": null, + "LexemeForm": { + "seh": "tem" + }, + "CitationForm": { + "seh": "tema" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78ffd0fa-3cef-472b-95ba-5212d0fd9cc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "572a51a1-3a92-4d65-95d0-a1278a445550", + "Definition": {}, + "Gloss": { + "en": "cut", + "pt": "cortar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e77ebb7-f44c-451c-952d-b9a2bebeae41", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "78ffd0fa-3cef-472b-95ba-5212d0fd9cc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4128ccd6-d6fa-4128-9de8-046444459ad9", + "DeletedAt": null, + "LexemeForm": { + "seh": "temek" + }, + "CitationForm": { + "seh": "temeka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ce11eb01-66ef-4c4f-a2aa-d39b0d8bc02d", + "Order": 1, + "DeletedAt": null, + "EntryId": "4128ccd6-d6fa-4128-9de8-046444459ad9", + "Definition": {}, + "Gloss": { + "en": "ferido", + "pt": "wounded" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5b5fff3-8af6-449e-8709-6f5a30bf28b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tenepa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9bc220f0-6d26-4dab-9dcd-ee5814702e7e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5b5fff3-8af6-449e-8709-6f5a30bf28b3", + "Definition": {}, + "Gloss": { + "en": "in this way", + "pt": "deste modo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e2df5029-cf41-4e40-8f5d-8280ad602f37", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9bc220f0-6d26-4dab-9dcd-ee5814702e7e", + "DeletedAt": null + } + ] + }, + { + "Id": "103c6d03-e0ce-4210-8c46-543c91a9a4fc", + "Order": 2, + "DeletedAt": null, + "EntryId": "d5b5fff3-8af6-449e-8709-6f5a30bf28b3", + "Definition": {}, + "Gloss": { + "en": "so", + "pt": "assim" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "50d5fa93-3d1c-4c7c-865c-de66b27a19f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "tenepo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4bd08dc0-41cf-4d75-93c7-8767c81179d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "50d5fa93-3d1c-4c7c-865c-de66b27a19f5", + "Definition": {}, + "Gloss": { + "en": "in that way", + "pt": "desse modo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eadf9a9e-e9e4-4bb2-b4d3-c4b8f91e2af8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4bd08dc0-41cf-4d75-93c7-8767c81179d1", + "DeletedAt": null + } + ] + }, + { + "Id": "d016f216-ef2f-4307-ac89-f31679d2e8fe", + "Order": 2, + "DeletedAt": null, + "EntryId": "50d5fa93-3d1c-4c7c-865c-de66b27a19f5", + "Definition": {}, + "Gloss": { + "en": "so" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "533833e0-0775-46fc-96a4-c9a402458353", + "DeletedAt": null, + "LexemeForm": { + "seh": "tey" + }, + "CitationForm": { + "seh": "teya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09b9897f-e966-4ebb-b14b-4d39f7cffae1", + "Order": 1, + "DeletedAt": null, + "EntryId": "533833e0-0775-46fc-96a4-c9a402458353", + "Definition": {}, + "Gloss": { + "en": "give birth", + "pt": "parir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ab1f906-e3fc-4ba9-ba8a-167b1739d7fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "09b9897f-e966-4ebb-b14b-4d39f7cffae1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f61f8753-b15d-44b9-ad22-2e14c70a6437", + "DeletedAt": null, + "LexemeForm": { + "seh": "thabuk" + }, + "CitationForm": { + "seh": "thabuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4e98335-0d70-47d8-b43d-f7ee335ad565", + "Order": 1, + "DeletedAt": null, + "EntryId": "f61f8753-b15d-44b9-ad22-2e14c70a6437", + "Definition": {}, + "Gloss": { + "en": "suffer", + "pt": "sofrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b73fe253-8ddc-42c3-96ba-6a21cba6afda", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c4e98335-0d70-47d8-b43d-f7ee335ad565", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a600e79-f024-41b3-a787-9d1357d931cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "thabus" + }, + "CitationForm": { + "seh": "thabusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f5908d1-d132-4290-b5cf-9c45bd76e15d", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a600e79-f024-41b3-a787-9d1357d931cf", + "Definition": {}, + "Gloss": { + "en": "punish", + "pt": "castigar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "22098c73-1fec-4416-a343-b8fb0758c7a7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1f5908d1-d132-4290-b5cf-9c45bd76e15d", + "DeletedAt": null + } + ] + }, + { + "Id": "636a6a22-a647-4966-aa8a-50d018f0a58b", + "Order": 2, + "DeletedAt": null, + "EntryId": "5a600e79-f024-41b3-a787-9d1357d931cf", + "Definition": {}, + "Gloss": { + "en": "suffer", + "pt": "sofrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4c6cdc5c-7177-4f2d-8c44-d73cf530c95d", + "DeletedAt": null, + "LexemeForm": { + "seh": "tako" + }, + "CitationForm": { + "seh": "thako" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e834c2bb-bd64-45cf-ac25-8cfa82fd4f4d", + "Order": 1, + "DeletedAt": null, + "EntryId": "4c6cdc5c-7177-4f2d-8c44-d73cf530c95d", + "Definition": {}, + "Gloss": { + "en": "buttock", + "pt": "na\u0301dega" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2e48ad99-9431-4480-a398-567583aa0335", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "e834c2bb-bd64-45cf-ac25-8cfa82fd4f4d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7bfb038-e859-4063-8ead-a708d88d7a32", + "DeletedAt": null, + "LexemeForm": { + "seh": "thamang" + }, + "CitationForm": { + "seh": "thamanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3a72249d-72e0-4470-98b2-6fb64a0bd357", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7bfb038-e859-4063-8ead-a708d88d7a32", + "Definition": {}, + "Gloss": { + "en": "run", + "pt": "correr" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7452d1d2-eb8a-4c5b-acb4-23b85491ea96", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3a72249d-72e0-4470-98b2-6fb64a0bd357", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2f988d06-4001-4702-bf4e-a4da48cb7564", + "DeletedAt": null, + "LexemeForm": { + "seh": "thambo" + }, + "CitationForm": { + "seh": "thambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04aaab1a-5495-42b1-a958-3f72ca3de6e8", + "Order": 1, + "DeletedAt": null, + "EntryId": "2f988d06-4001-4702-bf4e-a4da48cb7564", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sky, space, where there are stars, not heaven", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ceu, firmamento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "sky", + "pt": "ceu" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "109b3ea6-ebce-494d-b423-7b88b9f9f125", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "04aaab1a-5495-42b1-a958-3f72ca3de6e8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "980fbf75-8c1c-4dd1-890c-7f9f1b92e107", + "DeletedAt": null, + "LexemeForm": { + "seh": "thando" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "59b235d0-71ff-4d3d-9050-eb56582b40ca", + "Order": 1, + "DeletedAt": null, + "EntryId": "980fbf75-8c1c-4dd1-890c-7f9f1b92e107", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a place where noone lives, wilderness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "desert", + "pt": "deserto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "7988974c-99fd-40dd-9b5e-2d81ec603ddc", + "Name": { + "en": "Forest, grassland, desert" + }, + "Code": "1.2.1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "e35fb6e6-d506-4a42-b511-13485828df25", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "59b235d0-71ff-4d3d-9050-eb56582b40ca", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a7995695-c240-4962-8226-eda7227fa7cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "thanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ef4f01e-1158-4b4f-8f05-427691f8a458", + "Order": 1, + "DeletedAt": null, + "EntryId": "a7995695-c240-4962-8226-eda7227fa7cc", + "Definition": {}, + "Gloss": { + "en": "pumpkin", + "pt": "abobora" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4be96911-b117-4f1c-805e-265b0746a442", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7ef4f01e-1158-4b4f-8f05-427691f8a458", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f94cb8ec-f0fa-4889-b92f-26cdc3b34a24", + "DeletedAt": null, + "LexemeForm": { + "seh": "thanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "178130d5-6ddd-4fcf-8a25-2da2b42a9fef", + "Order": 1, + "DeletedAt": null, + "EntryId": "f94cb8ec-f0fa-4889-b92f-26cdc3b34a24", + "Definition": {}, + "Gloss": { + "en": "kraal", + "pt": "corral" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dadd7ec-7d11-4f32-a7ee-a3f770b2ee6b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "178130d5-6ddd-4fcf-8a25-2da2b42a9fef", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d1cc305b-b91a-403a-a50c-7071fbb7a4c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangir" + }, + "CitationForm": { + "seh": "thangira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b6d85ba-d915-4ab4-a276-64c26534135b", + "Order": 1, + "DeletedAt": null, + "EntryId": "d1cc305b-b91a-403a-a50c-7071fbb7a4c8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to do before another person, preempt, \u0022beat to the punch\u0022", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "do first", + "pt": "anticipar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7b58e8f9-6ce4-4307-9f5a-9cf6af7224bb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b6d85ba-d915-4ab4-a276-64c26534135b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b6f4402-e670-469f-81c2-7b58341f52bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangwi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "17f9b2ab-451b-492b-905f-9429e4abc8ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b6f4402-e670-469f-81c2-7b58341f52bb", + "Definition": {}, + "Gloss": { + "en": "because", + "pt": "porque" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1d9d1e66-cbcc-4ad5-ad8d-0e9c07028f44", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo 037; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "17f9b2ab-451b-492b-905f-9429e4abc8ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a062fca8-cd51-47e5-bb98-b33542fbf36f", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangwi" + }, + "CitationForm": { + "seh": "thangwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6115d59e-4e92-405f-bcfb-459907d99e66", + "Order": 1, + "DeletedAt": null, + "EntryId": "a062fca8-cd51-47e5-bb98-b33542fbf36f", + "Definition": {}, + "Gloss": { + "en": "cause", + "pt": "por causa de" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ca3e124-6147-4cdf-8120-63ca80b9369f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6115d59e-4e92-405f-bcfb-459907d99e66", + "DeletedAt": null + } + ] + }, + { + "Id": "12fae128-5dc7-4143-8ebd-dc84bc3af794", + "Order": 2, + "DeletedAt": null, + "EntryId": "a062fca8-cd51-47e5-bb98-b33542fbf36f", + "Definition": {}, + "Gloss": { + "en": "guilt", + "pt": "culpa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d01e0fb0-0c57-4371-89ba-c959f4b818b4", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangwi anji?" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "de0c5b8a-9f70-4dd3-890c-43931b7907fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d01e0fb0-0c57-4371-89ba-c959f4b818b4", + "Definition": {}, + "Gloss": { + "en": "why?", + "pt": "error porque?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2fbc4f3a-60b0-4038-a27f-1fc9e0d409db", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "de0c5b8a-9f70-4dd3-890c-43931b7907fc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86092307-18bf-4b3c-8dda-480edb917a7a", + "DeletedAt": null, + "LexemeForm": { + "seh": "thanya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a99c2963-ef2c-4f80-a549-fb25ddcd3767", + "Order": 1, + "DeletedAt": null, + "EntryId": "86092307-18bf-4b3c-8dda-480edb917a7a", + "Definition": {}, + "Gloss": { + "en": "leprosy", + "pt": "lepra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c004700f-6d08-4032-8498-373fe0e6435e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thasik" + }, + "CitationForm": { + "seh": "thasika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04116e62-fca1-4b32-b2c0-ca82646efe3a", + "Order": 1, + "DeletedAt": null, + "EntryId": "c004700f-6d08-4032-8498-373fe0e6435e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to spread out on the ground or hang out to dry", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "extend", + "pt": "estender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "794777e5-9fcf-482a-b206-58c6c128df56", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "04116e62-fca1-4b32-b2c0-ca82646efe3a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2bff9aa-8666-449d-814f-b96bfb88f9b9", + "DeletedAt": null, + "LexemeForm": { + "seh": "thaw" + }, + "CitationForm": { + "seh": "thawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad2949d1-f16f-4086-a94e-3331fab7072d", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2bff9aa-8666-449d-814f-b96bfb88f9b9", + "Definition": {}, + "Gloss": { + "en": "flee", + "pt": "fugir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "36fbdc51-1612-4d62-b28f-a6b86f352e91", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ad2949d1-f16f-4086-a94e-3331fab7072d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff5bb86f-26ad-49ef-9743-231d46cb9531", + "DeletedAt": null, + "LexemeForm": { + "seh": "thawala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ed7a308d-7bec-4372-8253-d13abd1945b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff5bb86f-26ad-49ef-9743-231d46cb9531", + "Definition": {}, + "Gloss": { + "en": "lake", + "pt": "lago" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "0c292ae0-a522-4c85-bcd4-4523e35f0615", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ed7a308d-7bec-4372-8253-d13abd1945b1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "70987fd8-ffce-456b-b96a-736d2bb2d9ba", + "DeletedAt": null, + "LexemeForm": { + "seh": "thesi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "505400d3-1e4a-42ce-acef-758b92bed1fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "70987fd8-ffce-456b-b96a-736d2bb2d9ba", + "Definition": {}, + "Gloss": { + "en": "frog", + "pt": "ra\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d239fbb1-882b-40f4-b3ee-1b1d9d28a6c3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "505400d3-1e4a-42ce-acef-758b92bed1fc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "093b10b6-c34c-4126-a4cb-0c209cfe66e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tika" + }, + "CitationForm": { + "seh": "thika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "13592c25-2d1e-4c60-98ad-9ea4ccd6a6a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "093b10b6-c34c-4126-a4cb-0c209cfe66e3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hyena", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hyena", + "pt": "hiena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a66816d0-e35a-42af-b184-11414ede1088", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "13592c25-2d1e-4c60-98ad-9ea4ccd6a6a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "daee4cec-ea74-485d-b750-3c46af48694c", + "DeletedAt": null, + "LexemeForm": { + "seh": "atikiti" + }, + "CitationForm": { + "seh": "thikiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94749a03-836e-4bd5-a4f1-9da4b3f5b05b", + "Order": 1, + "DeletedAt": null, + "EntryId": "daee4cec-ea74-485d-b750-3c46af48694c", + "Definition": {}, + "Gloss": { + "en": "ticket", + "pt": "bilhete" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc2c0495-ec68-4eef-b796-689b8ab1496a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "94749a03-836e-4bd5-a4f1-9da4b3f5b05b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45981d7b-4ef6-407a-a229-e2a9cd14d509", + "DeletedAt": null, + "LexemeForm": { + "seh": "thim" + }, + "CitationForm": { + "seh": "thima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3c5e68c4-1133-4d06-8f01-c33987ba51eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "45981d7b-4ef6-407a-a229-e2a9cd14d509", + "Definition": {}, + "Gloss": { + "en": "extinguish", + "pt": "estinguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2002e000-f5da-4205-9776-9e54fcca3e67", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3c5e68c4-1133-4d06-8f01-c33987ba51eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f16067f1-f4c5-4cc4-b3a9-defff0d212a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "thimidz" + }, + "CitationForm": { + "seh": "thimidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a8c34399-4446-4f34-8064-5850c2d0f45a", + "Order": 1, + "DeletedAt": null, + "EntryId": "f16067f1-f4c5-4cc4-b3a9-defff0d212a5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "serve more food or drink", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "po\u0302r mais no prato ou no copo, acrescentar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "add to", + "pt": "acrescentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5a3faadd-0f4b-47ce-a479-4d2fdc66885c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Thimidzani madzi nkomixo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Acrescente a\u0301gua no copo.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "a8c34399-4446-4f34-8064-5850c2d0f45a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a38eddad-09cd-420a-85b9-b8bffa0341e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "thimis" + }, + "CitationForm": { + "seh": "thimisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc5958ca-8e90-45de-8354-59d185422059", + "Order": 1, + "DeletedAt": null, + "EntryId": "a38eddad-09cd-420a-85b9-b8bffa0341e8", + "Definition": {}, + "Gloss": { + "en": "extinguish", + "pt": "apagar fogo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62b9ac22-82aa-43fd-b8f5-2e5234873267", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bc5958ca-8e90-45de-8354-59d185422059", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3793a9d3-19b9-413a-9ebf-00747a213025", + "DeletedAt": null, + "LexemeForm": { + "seh": "thimiz" + }, + "CitationForm": { + "seh": "thimiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a82aa97-31cf-43c3-a14b-09ffe761131e", + "Order": 1, + "DeletedAt": null, + "EntryId": "3793a9d3-19b9-413a-9ebf-00747a213025", + "Definition": {}, + "Gloss": { + "en": "increase", + "pt": "aumentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d9b32823-4cb1-4957-8406-5589af352c78", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2a82aa97-31cf-43c3-a14b-09ffe761131e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "244d26db-dad3-4ecb-b9a9-c43f4518e5bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "thinidz" + }, + "CitationForm": { + "seh": "thinidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1bb87002-3523-48d6-b63e-b1cb9afd3abf", + "Order": 1, + "DeletedAt": null, + "EntryId": "244d26db-dad3-4ecb-b9a9-c43f4518e5bb", + "Definition": {}, + "Gloss": { + "en": "add", + "pt": "acrescentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "51dc5787-c52a-4b5e-afa6-1103199f6d2f", + "DeletedAt": null, + "LexemeForm": { + "seh": "thirir" + }, + "CitationForm": { + "seh": "thirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98979afc-58f8-4894-bc22-f9daa3d857e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "51dc5787-c52a-4b5e-afa6-1103199f6d2f", + "Definition": {}, + "Gloss": { + "en": "pour", + "pt": "po\u0302r a\u0301gua" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9e704e40-c9e7-4953-bcf5-08710bb1d9b8", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndithirireni manja.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Po\u0302r agua nas ma\u0303os.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "98979afc-58f8-4894-bc22-f9daa3d857e1", + "DeletedAt": null + } + ] + }, + { + "Id": "ea8dcc79-5ac4-448c-9326-f727516e7bf4", + "Order": 2, + "DeletedAt": null, + "EntryId": "51dc5787-c52a-4b5e-afa6-1103199f6d2f", + "Definition": {}, + "Gloss": { + "en": "to water", + "pt": "regar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "84279a81-6f27-49a0-8d48-5f8f9cc9632d", + "DeletedAt": null, + "LexemeForm": { + "seh": "thoera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a764da34-5c43-421d-9aac-e3260e289725", + "Order": 1, + "DeletedAt": null, + "EntryId": "84279a81-6f27-49a0-8d48-5f8f9cc9632d", + "Definition": {}, + "Gloss": { + "en": "loincloth", + "pt": "tanga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "962e3417-83f3-40b3-bd94-3ae33b25a169", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a764da34-5c43-421d-9aac-e3260e289725", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d48098be-2356-4412-ac3c-786c21fb63b9", + "DeletedAt": null, + "LexemeForm": { + "seh": "thongwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94f68ad2-1d69-41de-8aee-0185e99f8ccf", + "Order": 1, + "DeletedAt": null, + "EntryId": "d48098be-2356-4412-ac3c-786c21fb63b9", + "Definition": {}, + "Gloss": { + "en": "pasturage", + "pt": "pastagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9ab7291-c77e-423e-b02f-d93b6bf45b69", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "94f68ad2-1d69-41de-8aee-0185e99f8ccf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8ce2c8ec-2d31-4277-8f01-ae503e81c751", + "DeletedAt": null, + "LexemeForm": { + "seh": "thonje" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "890eb70c-54b8-4a4d-b031-db9451dc98ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "8ce2c8ec-2d31-4277-8f01-ae503e81c751", + "Definition": {}, + "Gloss": { + "en": "cotton", + "pt": "algoda\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dc571432-a53c-40be-b634-1841c1764a27", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "890eb70c-54b8-4a4d-b031-db9451dc98ab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab892c21-8abf-4bd4-a452-c12d724a9d49", + "DeletedAt": null, + "LexemeForm": { + "seh": "thony" + }, + "CitationForm": { + "seh": "thonya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9a261001-cf61-46f3-8e58-7cae8273b3ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab892c21-8abf-4bd4-a452-c12d724a9d49", + "Definition": {}, + "Gloss": { + "en": "point", + "pt": "apontar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ccec8ed-ae50-4282-9e58-e41bbdd9ee34", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9a261001-cf61-46f3-8e58-7cae8273b3ba", + "DeletedAt": null + } + ] + }, + { + "Id": "7d75b23b-4960-47e8-93f1-d4a3136f04b9", + "Order": 2, + "DeletedAt": null, + "EntryId": "ab892c21-8abf-4bd4-a452-c12d724a9d49", + "Definition": {}, + "Gloss": { + "en": "choose", + "pt": "escolher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bc08c8c8-291b-40b3-9b12-6cc96852456d", + "DeletedAt": null, + "LexemeForm": { + "seh": "thu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8b2a4aa-2771-4b20-9488-60f4ef42e93f", + "Order": 1, + "DeletedAt": null, + "EntryId": "bc08c8c8-291b-40b3-9b12-6cc96852456d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "our", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "nosso", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1PL", + "pt": "1PL" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09e70d34-a5e3-43f3-8a86-53aab3d2155e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thubu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d2332721-57bf-4367-8f26-fa188d1386cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "09e70d34-a5e3-43f3-8a86-53aab3d2155e", + "Definition": {}, + "Gloss": { + "en": "elder", + "pt": "ancia\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "46f0e8a5-26ca-4cd7-9764-4259904f4205", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d2332721-57bf-4367-8f26-fa188d1386cb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb550121-b7aa-46cb-83dd-4be296564816", + "DeletedAt": null, + "LexemeForm": { + "seh": "thul" + }, + "CitationForm": { + "seh": "thula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94991b8a-9d06-43f6-8903-159c9b5ee9df", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb550121-b7aa-46cb-83dd-4be296564816", + "Definition": {}, + "Gloss": { + "en": "give name", + "pt": "dar nome" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "99b4793d-beda-413b-9a47-6581fcf29bed", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "94991b8a-9d06-43f6-8903-159c9b5ee9df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3d85aa59-6fd2-46c9-8919-236af76e2af0", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumbi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6dc56367-27f8-4f4f-bd7f-9a04bc470966", + "Order": 1, + "DeletedAt": null, + "EntryId": "3d85aa59-6fd2-46c9-8919-236af76e2af0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a small bag on a string for holding money or small personal items", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "bag", + "pt": "bolso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72de2715-381e-4cae-936c-5222267657c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumbzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "05fc5ede-c5ac-4b95-ac1d-ce44536dd56a", + "Order": 1, + "DeletedAt": null, + "EntryId": "72de2715-381e-4cae-936c-5222267657c7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "female goat that has not yet had kids", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "goat", + "pt": "cabra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c1a3e324-6247-4d0c-bb9a-6b772ee1656f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "05fc5ede-c5ac-4b95-ac1d-ce44536dd56a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "59f33df3-3613-4381-bcd5-f30225ac42cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumul" + }, + "CitationForm": { + "seh": "thumula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d3b472d-b11b-46c5-b440-3e0c3b93465f", + "Order": 1, + "DeletedAt": null, + "EntryId": "59f33df3-3613-4381-bcd5-f30225ac42cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "snap a whip", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "arrebentar com ma\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "snap", + "pt": "arrebentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a0788c5-6d69-426c-9b01-0a21499f0c6a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d3b472d-b11b-46c5-b440-3e0c3b93465f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41f103e8-4164-426a-8ca6-34e0bd958981", + "DeletedAt": null, + "LexemeForm": { + "seh": "thupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "459bd1a5-34de-49d8-b98f-03aa6705b13d", + "Order": 1, + "DeletedAt": null, + "EntryId": "41f103e8-4164-426a-8ca6-34e0bd958981", + "Definition": {}, + "Gloss": { + "en": "body form", + "pt": "corpo forma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "77457bd1-7880-42d7-83cb-fe1a9e2769c3", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "thupi ing\u0027ono", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "corpo pequeno", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "459bd1a5-34de-49d8-b98f-03aa6705b13d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1d884862-73ef-43a8-aa5b-cd5c6e1e9ae1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3acbd0c7-6157-45ee-a9de-023564e4cb89", + "Order": 1, + "DeletedAt": null, + "EntryId": "1d884862-73ef-43a8-aa5b-cd5c6e1e9ae1", + "Definition": {}, + "Gloss": { + "en": "speak", + "pt": "falar 2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3926f2bb-c9ee-412e-8f0d-30273e286ce1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "693324a1-f760-46d2-b801-9d7aee566717", + "Order": 1, + "DeletedAt": null, + "EntryId": "3926f2bb-c9ee-412e-8f0d-30273e286ce1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "we", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "no\u0301s", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1P", + "pt": "1P" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d22c2b0d-2c83-42d2-973b-c20afdcc9398", + "Order": 2, + "DeletedAt": null, + "EntryId": "3926f2bb-c9ee-412e-8f0d-30273e286ce1", + "Definition": {}, + "Gloss": { + "en": "1P", + "pt": "1P" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a95bccc-c795-4f28-8353-64513f1c83cb", + "DeletedAt": null, + "LexemeForm": { + "seh": "tikan" + }, + "CitationForm": { + "seh": "tikana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "194662d7-732d-4c3c-8a38-39c3ec910646", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a95bccc-c795-4f28-8353-64513f1c83cb", + "Definition": {}, + "Gloss": { + "en": "insult", + "pt": "insultar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "40ec8061-de4e-4be5-aef4-6351195ce220", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "194662d7-732d-4c3c-8a38-39c3ec910646", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d444aa30-4bae-495f-ab07-e6063cd92857", + "DeletedAt": null, + "LexemeForm": { + "seh": "tirigu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cddbdd63-7bc5-47a6-abf6-2f8853f6cee0", + "Order": 1, + "DeletedAt": null, + "EntryId": "d444aa30-4bae-495f-ab07-e6063cd92857", + "Definition": {}, + "Gloss": { + "en": "wheat", + "pt": "trigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "323a8f6a-b082-4572-98a0-dcc01bde12c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "toera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3d49958b-619a-4620-b1c6-7c6fd7899de3", + "Order": 1, + "DeletedAt": null, + "EntryId": "323a8f6a-b082-4572-98a0-dcc01bde12c8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in order to", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "in order to", + "pt": "para que" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4fb571f2-247e-429e-977d-dbb82ab22399", + "DeletedAt": null, + "LexemeForm": { + "seh": "tom" + }, + "CitationForm": { + "seh": "toma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "625ce16c-7cca-4209-8052-c78dddfed8cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "4fb571f2-247e-429e-977d-dbb82ab22399", + "Definition": {}, + "Gloss": { + "en": "start", + "pt": "comec\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "18c52e64-3c5c-41e6-ae34-4505767a4cdd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "625ce16c-7cca-4209-8052-c78dddfed8cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "60e74399-05ff-44d5-b4a1-f593e5bdceb4", + "MaybeId": "60e74399-05ff-44d5-b4a1-f593e5bdceb4", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "ComplexFormHeadword": "toma-toma", + "ComponentEntryId": "4fb571f2-247e-429e-977d-dbb82ab22399", + "ComponentSenseId": null, + "ComponentHeadword": "toma" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "DeletedAt": null, + "LexemeForm": { + "seh": "toma-tom" + }, + "CitationForm": { + "seh": "toma-toma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8c76e0a3-47d5-4412-b5e6-c8b8338538a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "Definition": { + "en": { + "Spans": [ + { + "Text": "very beginning", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "princi\u0301pio mesmo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "beginning", + "pt": "princi\u0301pio" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d23f4424-0e2f-4470-be17-8b4dd825f40d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8c76e0a3-47d5-4412-b5e6-c8b8338538a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "60e74399-05ff-44d5-b4a1-f593e5bdceb4", + "MaybeId": "60e74399-05ff-44d5-b4a1-f593e5bdceb4", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "ComplexFormHeadword": "toma-toma", + "ComponentEntryId": "4fb571f2-247e-429e-977d-dbb82ab22399", + "ComponentSenseId": null, + "ComponentHeadword": "toma" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c42ca81b-5821-4369-aa36-7f296e5164ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "tong" + }, + "CitationForm": { + "seh": "tonga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be876ecb-1662-4abf-ab67-4e7b43d600de", + "Order": 1, + "DeletedAt": null, + "EntryId": "c42ca81b-5821-4369-aa36-7f296e5164ab", + "Definition": {}, + "Gloss": { + "en": "rule", + "pt": "reinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2dba3be5-e82a-4fd2-8cdb-2415b099aa3e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "be876ecb-1662-4abf-ab67-4e7b43d600de", + "DeletedAt": null + } + ] + }, + { + "Id": "b429c752-8136-42a4-b68d-e0d1adb7ed22", + "Order": 2, + "DeletedAt": null, + "EntryId": "c42ca81b-5821-4369-aa36-7f296e5164ab", + "Definition": {}, + "Gloss": { + "en": "judge", + "pt": "julgar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3935a3f1-3eee-4cfa-8aa0-ee41c4071c93", + "DeletedAt": null, + "LexemeForm": { + "seh": "tot" + }, + "CitationForm": { + "seh": "tota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3fd82d2b-b8a1-490a-acc6-708d88540bcd", + "Order": 1, + "DeletedAt": null, + "EntryId": "3935a3f1-3eee-4cfa-8aa0-ee41c4071c93", + "Definition": {}, + "Gloss": { + "en": "wet", + "pt": "molhado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee117764-7d34-40d6-8dfa-4cc52a04c751", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3fd82d2b-b8a1-490a-acc6-708d88540bcd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb6a83e4-6b17-4404-ad53-132336baee91", + "DeletedAt": null, + "LexemeForm": { + "seh": "totes" + }, + "CitationForm": { + "seh": "totesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b547ec3a-2566-4f59-8d7b-5d6b607fb74e", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb6a83e4-6b17-4404-ad53-132336baee91", + "Definition": {}, + "Gloss": { + "en": "get wet", + "pt": "molhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4e29431-968e-4418-be47-e353b66114f1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b547ec3a-2566-4f59-8d7b-5d6b607fb74e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc6de902-80a8-44aa-883b-2c0b30d302e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tower" + }, + "CitationForm": { + "seh": "towera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "843731e3-603e-4249-ba99-754a719865e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc6de902-80a8-44aa-883b-2c0b30d302e9", + "Definition": {}, + "Gloss": { + "en": "follow", + "pt": "segir atras de" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "1b73b2bf-9582-4f8a-822a-e0d020272c7c", + "Name": { + "en": "Follow" + }, + "Code": "7.2.5.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "521096cd-367f-41f0-a3fb-771ab8c69de7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "843731e3-603e-4249-ba99-754a719865e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4aa41cbc-e472-4949-bf2c-0846042f9f9c", + "DeletedAt": null, + "LexemeForm": { + "seh": "towez" + }, + "CitationForm": { + "seh": "toweza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fdcdb28b-0bc6-4e95-82bc-45e2e0418405", + "Order": 1, + "DeletedAt": null, + "EntryId": "4aa41cbc-e472-4949-bf2c-0846042f9f9c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "follow a concept", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "seguir a ideia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "follow", + "pt": "seguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eae0fd5a-2801-4366-be34-dec6f7b252ce", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fdcdb28b-0bc6-4e95-82bc-45e2e0418405", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a250917f-f920-4f70-9f73-adf4916b0da0", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsakal" + }, + "CitationForm": { + "seh": "tsakala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f02956b-df94-46df-a074-ce6387e75b3a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a250917f-f920-4f70-9f73-adf4916b0da0", + "Definition": {}, + "Gloss": { + "en": "wear out", + "pt": "envelhecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8dc1be56-7f70-4730-894d-3aa68957c827", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsa\u0301kala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "02ebdfc0-2508-409a-9bec-019437e80fc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "8dc1be56-7f70-4730-894d-3aa68957c827", + "Definition": { + "en": { + "Spans": [ + { + "Text": "torn cloth", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "farapo, pano rasgado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rag", + "pt": "farapo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5c5bc889-ec8b-4846-b7ac-c49a678df125", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "02ebdfc0-2508-409a-9bec-019437e80fc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c85ca2c3-5367-4f52-b7ac-c5468d1f7ef3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsalakan" + }, + "CitationForm": { + "seh": "tsalakana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2aedd60c-398c-4cf4-9b9e-24c9a0ac9d4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c85ca2c3-5367-4f52-b7ac-c5468d1f7ef3", + "Definition": {}, + "Gloss": { + "en": "think", + "pt": "pensar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4c6dfc4-fce1-4285-ad5a-c4ce4d7ed022", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsam" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "106bb902-0085-4070-a820-3a6551f7b8a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4c6dfc4-fce1-4285-ad5a-c4ce4d7ed022", + "Definition": {}, + "Gloss": { + "en": "disembark", + "pt": "desembarque " + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1bc4c289-7ca9-4837-be70-60408986b881", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsamba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cb4114f3-6b9c-4d10-83da-15aa3707622f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1bc4c289-7ca9-4837-be70-60408986b881", + "Definition": {}, + "Gloss": { + "en": "leaf", + "pt": "folha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61bf33e1-2041-4720-9308-b9837e7d6ecc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Wrth; Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cb4114f3-6b9c-4d10-83da-15aa3707622f", + "DeletedAt": null + } + ] + }, + { + "Id": "8a1aab3b-5e70-4283-afd6-e169458cdf69", + "Order": 2, + "DeletedAt": null, + "EntryId": "1bc4c289-7ca9-4837-be70-60408986b881", + "Definition": {}, + "Gloss": { + "en": "sheet of paper", + "pt": "folha de papel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "18938887-46cf-45ca-b2c9-9d432d9de64a", + "Order": 3, + "DeletedAt": null, + "EntryId": "1bc4c289-7ca9-4837-be70-60408986b881", + "Definition": {}, + "Gloss": { + "en": "letter", + "pt": "carta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a293d3ca-3546-4139-923b-07d682c34bf1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", + "Order": 1, + "DeletedAt": null, + "EntryId": "a293d3ca-3546-4139-923b-07d682c34bf1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "savannah open grassland, desert, burned field, wilderness", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "savana sem muitos a\u0301rvores, deserto, mato queimado, sem capi\u0301m", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bushland", + "pt": "mato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "7988974c-99fd-40dd-9b5e-2d81ec603ddc", + "Name": { + "en": "Forest, grassland, desert" + }, + "Code": "1.2.1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "35f6bef0-6044-4df3-8f8e-dd923bce2274", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p28 says forest", + "Ws": "en" + } + ] + }, + "SenseId": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", + "DeletedAt": null + }, + { + "Id": "a67fc229-474e-4742-9967-6f1102042405", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", + "DeletedAt": null + } + ] + }, + { + "Id": "6b33c75b-bfe6-48e5-b698-7c2386f22c25", + "Order": 2, + "DeletedAt": null, + "EntryId": "a293d3ca-3546-4139-923b-07d682c34bf1", + "Definition": {}, + "Gloss": { + "en": "weeds", + "pt": "capim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a1d04188-ee3b-40cc-a591-6a1bc8b99183", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4e1623b7-2320-48c6-a4d2-1d535a22a87f", + "Order": 1, + "DeletedAt": null, + "EntryId": "a1d04188-ee3b-40cc-a591-6a1bc8b99183", + "Definition": {}, + "Gloss": { + "en": "wasp", + "pt": "vespa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0914468b-9c18-4b00-9c3a-76fec89da19e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,19", + "Ws": "en" + } + ] + }, + "SenseId": "4e1623b7-2320-48c6-a4d2-1d535a22a87f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2614a9d9-5279-4b6e-9f33-1db67d2d0100", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanzay" + }, + "CitationForm": { + "seh": "tsanzaya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce9787bb-6789-49f9-9981-27b1724cef66", + "Order": 1, + "DeletedAt": null, + "EntryId": "2614a9d9-5279-4b6e-9f33-1db67d2d0100", + "Definition": {}, + "Gloss": { + "en": "happy", + "pt": "feliz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ccd1560-00cc-4757-9bbf-e29093335453", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwana wa kusanzaya", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Crianca feliz", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "komerwa = gostar, amar", + "Ws": "en" + } + ] + }, + "SenseId": "ce9787bb-6789-49f9-9981-27b1724cef66", + "DeletedAt": null + }, + { + "Id": "7571567b-f4b5-467e-83b1-a1a4547a3a1f", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwana aenda kunyumba na kusanzaya.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "A crianca feliz foi a casa.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "ce9787bb-6789-49f9-9981-27b1724cef66", + "DeletedAt": null + } + ] + }, + { + "Id": "d8c5c5b8-9b61-4fea-95b3-7ec530fd4644", + "Order": 2, + "DeletedAt": null, + "EntryId": "2614a9d9-5279-4b6e-9f33-1db67d2d0100", + "Definition": {}, + "Gloss": { + "en": "satisfaction", + "pt": "satisfac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "be4fbcf0-d232-4aac-bb85-ce9ba780b2dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanzayis" + }, + "CitationForm": { + "seh": "tsanzayisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2ec29c07-952c-4c22-94e9-f18d655c3133", + "Order": 1, + "DeletedAt": null, + "EntryId": "be4fbcf0-d232-4aac-bb85-ce9ba780b2dd", + "Definition": {}, + "Gloss": { + "en": "make happy", + "pt": "causar ser feliz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "77024558-c174-4747-873b-8c33fd5b35b3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2ec29c07-952c-4c22-94e9-f18d655c3133", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "592cbddf-54f0-4f8f-a707-11b8f1ef28e1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsato" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9c28e583-c552-4275-9691-a5bf860a2578", + "Order": 1, + "DeletedAt": null, + "EntryId": "592cbddf-54f0-4f8f-a707-11b8f1ef28e1", + "Definition": {}, + "Gloss": { + "en": "boa constrictor", + "pt": "jibo\u0301ia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e69d4f94-7151-41f2-a772-cd0a685273d5", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsau" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3736a2ed-4afc-47be-98f0-c1fd28d42f84", + "Order": 1, + "DeletedAt": null, + "EntryId": "e69d4f94-7151-41f2-a772-cd0a685273d5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "species of small apple", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "mac\u0327anica", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "apple", + "pt": "mac\u0327anica" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5f350568-3b62-4de9-b42f-347b886300aa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3736a2ed-4afc-47be-98f0-c1fd28d42f84", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4c01b16c-1a2d-4318-93be-8d4b6b2abbd7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsekwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "99872666-823a-445c-8f3a-0d5c8798ef7e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4c01b16c-1a2d-4318-93be-8d4b6b2abbd7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild goose or duck", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ganso ou pato bravo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "goose", + "pt": "ganso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "714decc8-6909-4408-b390-f908cf4e2e3b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "99872666-823a-445c-8f3a-0d5c8798ef7e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aabd71a3-95d5-495d-bdbc-92176795563a", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsinde" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c4f3e215-8ab4-4bd0-ad3c-1347ecccfbc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "aabd71a3-95d5-495d-bdbc-92176795563a", + "Definition": {}, + "Gloss": { + "en": "at the foot of", + "pt": "em baixo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "134a1867-cda7-43bc-ab0c-417725e82010", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c4f3e215-8ab4-4bd0-ad3c-1347ecccfbc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4f12e40-8553-4b37-b8c5-5b54388ee389", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsisi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "236decb1-bb94-472b-8a02-4b46e83fcd67", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4f12e40-8553-4b37-b8c5-5b54388ee389", + "Definition": {}, + "Gloss": { + "en": "hair", + "pt": "cabelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9bd5cdd6-5d34-42a6-b959-fb3d7415216f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,19 tshisi; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "236decb1-bb94-472b-8a02-4b46e83fcd67", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "40925010-195e-428a-a1a1-1dc97506192e", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsogol" + }, + "CitationForm": { + "seh": "tsogola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "035b3bfa-5694-4c35-9c0d-2f8d70250156", + "Order": 1, + "DeletedAt": null, + "EntryId": "40925010-195e-428a-a1a1-1dc97506192e", + "Definition": {}, + "Gloss": { + "en": "go ahead of", + "pt": "adiantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3a5f891-5261-4967-b531-1441bb88ad3c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "035b3bfa-5694-4c35-9c0d-2f8d70250156", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd4b37fd-328f-44c4-88cf-d659cea94ded", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsoka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8756ef8f-b016-4c53-ae52-ebe134672b80", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd4b37fd-328f-44c4-88cf-d659cea94ded", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bad luck with a cause", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "curse", + "pt": "maldic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23befca5-f9a2-49f9-9c71-dfa4ec381f1c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8756ef8f-b016-4c53-ae52-ebe134672b80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13c40958-fac7-491a-95f6-8a2dbb15c77f", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsose" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6e95dee1-8398-4fa4-ada9-0bfebb343542", + "Order": 1, + "DeletedAt": null, + "EntryId": "13c40958-fac7-491a-95f6-8a2dbb15c77f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "covering with reeds \u0026 etc", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cobertura de colmo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "thatching", + "pt": "cobertura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "eec72226-106c-4825-b245-6e18110ee917", + "Name": { + "en": "Roof" + }, + "Code": "6.5.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2c12be60-b3a0-4a05-ac87-37af36e5ebb9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,19(pl:masose)", + "Ws": "en" + } + ] + }, + "SenseId": "6e95dee1-8398-4fa4-ada9-0bfebb343542", + "DeletedAt": null + } + ] + }, + { + "Id": "59373346-8f5d-4d04-bfda-f4aa384c0c81", + "Order": 2, + "DeletedAt": null, + "EntryId": "13c40958-fac7-491a-95f6-8a2dbb15c77f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small gate", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "porta\u0303o pequena", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "gate", + "pt": "porta\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e0213ba-f932-4584-9081-6c5e01d6bab7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsuk" + }, + "CitationForm": { + "seh": "tsuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "807fc0c7-a3db-40ac-b74b-2f32418f3715", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e0213ba-f932-4584-9081-6c5e01d6bab7", + "Definition": {}, + "Gloss": { + "en": "wash dishes", + "pt": "lavar loica" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c0fee9e9-5211-4b21-a795-7e97856c5edb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "807fc0c7-a3db-40ac-b74b-2f32418f3715", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d9edf5a-78cc-457c-8a36-abe3cb88d037", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsukwal" + }, + "CitationForm": { + "seh": "tsukwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3d7c131-2e6c-4715-a476-9cd2f74be96e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d9edf5a-78cc-457c-8a36-abe3cb88d037", + "Definition": {}, + "Gloss": { + "en": "become sad", + "pt": "entrestecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62c66c3b-a3b4-40ab-b5a3-91f957c9c8c9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b3d7c131-2e6c-4715-a476-9cd2f74be96e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "981126ae-62be-494d-a04b-4e86cea32cab", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsuphu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "56055ad6-781e-40d4-bc90-a92ad2e6a316", + "Order": 1, + "DeletedAt": null, + "EntryId": "981126ae-62be-494d-a04b-4e86cea32cab", + "Definition": {}, + "Gloss": { + "en": "comb of a fowl", + "pt": "crista de galo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1e0cfd2-a67d-46a4-a109-01a1a2d0d1c4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19 (tshumphu); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "56055ad6-781e-40d4-bc90-a92ad2e6a316", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "839f64d5-0a73-4bc1-b96c-db9287142100", + "DeletedAt": null, + "LexemeForm": { + "seh": "tu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "4b5edab8-2284-4fba-8fa2-3c9c714de3b8", + "Order": 1, + "DeletedAt": null, + "EntryId": "839f64d5-0a73-4bc1-b96c-db9287142100", + "Definition": { + "en": { + "Spans": [ + { + "Text": "completly", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "INTENS", + "pt": "INTENS" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6dcceea0-f2ec-4b90-8554-37342605fc1a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kumwadzikiratu \u0022espelhar-se em contra partida\u0022 aenderatu athawiratu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "4b5edab8-2284-4fba-8fa2-3c9c714de3b8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ed069088-4f8e-4202-ad1c-030f8b7eff92", + "DeletedAt": null, + "LexemeForm": { + "seh": "tul" + }, + "CitationForm": { + "seh": "tula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c28f868d-c826-40d1-934c-d591cdd190b7", + "Order": 1, + "DeletedAt": null, + "EntryId": "ed069088-4f8e-4202-ad1c-030f8b7eff92", + "Definition": {}, + "Gloss": { + "en": "leave something", + "pt": "deixar coisa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "756475fc-5bfc-4815-a28a-02723037cc2c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c28f868d-c826-40d1-934c-d591cdd190b7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a769ce59-d43a-47d4-937a-4f1792808bb9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tum" + }, + "CitationForm": { + "seh": "tuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "83c39fed-42c6-446e-91d1-2b40af74eff5", + "Order": 1, + "DeletedAt": null, + "EntryId": "a769ce59-d43a-47d4-937a-4f1792808bb9", + "Definition": {}, + "Gloss": { + "en": "send", + "pt": "enviar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4c3ba88a-029e-4224-a64b-26671d63e513", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "83c39fed-42c6-446e-91d1-2b40af74eff5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3d329509-7cfa-4384-8ed1-b024fe1307b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "tumiz" + }, + "CitationForm": { + "seh": "tumiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "006ee802-ec4c-40b5-81f4-1f22c2b23613", + "Order": 1, + "DeletedAt": null, + "EntryId": "3d329509-7cfa-4384-8ed1-b024fe1307b2", + "Definition": {}, + "Gloss": { + "en": "send", + "pt": "mandar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa0092c3-dcd0-4f9d-96cb-6bd77f837648", + "DeletedAt": null, + "LexemeForm": { + "seh": "tun" + }, + "CitationForm": { + "seh": "tuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc0108a7-1dfb-483f-a67a-4882cad7e919", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa0092c3-dcd0-4f9d-96cb-6bd77f837648", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lie, a knowing malicious lie", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "lie", + "pt": "mentir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0944fd98-c83e-4c48-94a5-84a73c9623df", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "bc0108a7-1dfb-483f-a67a-4882cad7e919", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "249034fa-490f-4743-a32d-1965fd07506e", + "DeletedAt": null, + "LexemeForm": { + "seh": "tunuzir" + }, + "CitationForm": { + "seh": "tunuzira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41f653c0-8007-444f-9095-cc5af134f584", + "Order": 1, + "DeletedAt": null, + "EntryId": "249034fa-490f-4743-a32d-1965fd07506e", + "Definition": {}, + "Gloss": { + "en": "acuse", + "pt": "acusar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cb919e95-79e7-488f-92d2-b83e96195a32", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "41f653c0-8007-444f-9095-cc5af134f584", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c827e379-03b1-4f06-a737-6e0d9a62f3df", + "DeletedAt": null, + "LexemeForm": { + "seh": "tup" + }, + "CitationForm": { + "seh": "tupa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5647f2a9-9d0a-4599-9e48-cf98cd9624c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c827e379-03b1-4f06-a737-6e0d9a62f3df", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to rise refering to the process of yeast causing dough to rise", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rise dough", + "pt": "levantar massa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c4e08950-6198-4bce-af09-e4c44083b165", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5647f2a9-9d0a-4599-9e48-cf98cd9624c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "15411cd2-1b38-44f3-b371-04f16fc05b59", + "DeletedAt": null, + "LexemeForm": { + "seh": "tutumuk" + }, + "CitationForm": { + "seh": "tutumuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "95b6047b-3637-4494-9779-6216b4014a80", + "Order": 1, + "DeletedAt": null, + "EntryId": "15411cd2-1b38-44f3-b371-04f16fc05b59", + "Definition": {}, + "Gloss": { + "en": "startle", + "pt": "ser assustado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "27abd531-0930-46e5-89bd-3c6276a6e8c6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Dioni\u0301sio", + "Ws": "en" + } + ] + }, + "SenseId": "95b6047b-3637-4494-9779-6216b4014a80", + "DeletedAt": null + } + ] + }, + { + "Id": "8a4af5f4-a71e-47c5-a292-630923ada7bf", + "Order": 2, + "DeletedAt": null, + "EntryId": "15411cd2-1b38-44f3-b371-04f16fc05b59", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake up from worrying dreams", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "acordar com preocupaco\u0303es", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake worried", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "149ee2a3-6dee-4048-afe3-9341cb30b91c", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "dc001d5b-37e6-40c8-85e3-25830ac083f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "149ee2a3-6dee-4048-afe3-9341cb30b91c", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "494f70ff-a22b-402a-a2b6-5a2d77f3fb84", + "Order": 1, + "DeletedAt": null, + "EntryId": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "bca44468-9d04-4f0d-9e65-38694978d312", + "Order": 2, + "DeletedAt": null, + "EntryId": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d2b54291-bb8e-4645-b3f2-0d77890118b9", + "Order": 3, + "DeletedAt": null, + "EntryId": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d0342d1-fc26-4408-bd1c-fc58abfe7956", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "8ae60e33-d745-4c84-8c51-43d8f51344b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d0342d1-fc26-4408-bd1c-fc58abfe7956", + "Definition": { + "en": { + "Spans": [ + { + "Text": "you, second person singular", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tu, segunda pessoa singular", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2S", + "pt": "2S" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "d9318a7f-f3ce-4454-8acd-1ab3b0dffd96", + "Order": 1, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f4ae1775-b605-4604-8546-3cfcb6ca1c31", + "Order": 2, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "65b694cd-f545-4444-8763-fcfb46f3c401", + "Order": 3, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "7ec7b783-215f-442a-b660-d00b071a64d8", + "Order": 4, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5edf6ba3-b791-4d37-878f-2a669e3b670f", + "Order": 1, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": { + "en": { + "Spans": [ + { + "Text": "-ness, -ity, the essence of, abstract", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "-idade", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "6b48f7a4-471f-4b15-8b03-17a83b9de0d3", + "Order": 2, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "af7ab1cc-2536-4251-bdde-ae723e46a105", + "Order": 3, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c3f8b8ee-f1ea-4a6b-b8a3-34b0ca297629", + "Order": 4, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a0b813dc-f06c-41c9-9496-fdb656b331e0", + "Order": 5, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "ee2b627c-94e8-43e6-8a47-36ed4046a6a8", + "MaybeId": "ee2b627c-94e8-43e6-8a47-36ed4046a6a8", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "ComponentSenseId": null, + "ComponentHeadword": "u" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47d2f97f-b376-4241-8312-620392869cfd", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubaba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "135250b8-31fa-4d05-b3dd-3422225a9006", + "Order": 1, + "DeletedAt": null, + "EntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "Definition": {}, + "Gloss": { + "en": "paternity", + "pt": "paternidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee500084-db18-4500-b978-65445fbbed5d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "135250b8-31fa-4d05-b3dd-3422225a9006", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "2e0cf09a-d18d-4bef-8bc2-ba68a6ed1ff1", + "MaybeId": "2e0cf09a-d18d-4bef-8bc2-ba68a6ed1ff1", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "ComponentSenseId": null, + "ComponentHeadword": "baba" + }, + { + "Id": "ee2b627c-94e8-43e6-8a47-36ed4046a6a8", + "MaybeId": "ee2b627c-94e8-43e6-8a47-36ed4046a6a8", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "ComponentSenseId": null, + "ComponentHeadword": "u" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "7d3b1116-4489-4cc1-bc17-1734198e044f", + "Name": { + "en": "Abstract", + "pt": "Substantivo Abstrato" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "790f529d-28ed-4a50-af49-27de75aecc4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9f8f51bf-aa51-4686-b839-fdbc9d17f1bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "790f529d-28ed-4a50-af49-27de75aecc4f", + "Definition": {}, + "Gloss": { + "en": "brotherhood", + "pt": "irmandade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "39fec9e6-a965-49e5-88e0-4fee4748afa7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "9f8f51bf-aa51-4686-b839-fdbc9d17f1bc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "6c8e6a75-ead2-4cfb-bdfa-56d4bd7bc413", + "MaybeId": "6c8e6a75-ead2-4cfb-bdfa-56d4bd7bc413", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "790f529d-28ed-4a50-af49-27de75aecc4f", + "ComplexFormHeadword": "ubale", + "ComponentEntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "ComponentSenseId": null, + "ComponentHeadword": "m\u0027bale" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "7d3b1116-4489-4cc1-bc17-1734198e044f", + "Name": { + "en": "Abstract", + "pt": "Substantivo Abstrato" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d8528b87-68fb-4bc1-ba87-20adc9341dfa", + "DeletedAt": null, + "LexemeForm": { + "seh": "bali" + }, + "CitationForm": { + "seh": "ubali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f55e116-bffe-43cc-b63e-3fc7fb464906", + "Order": 1, + "DeletedAt": null, + "EntryId": "d8528b87-68fb-4bc1-ba87-20adc9341dfa", + "Definition": {}, + "Gloss": { + "en": "nature active", + "pt": "natureza activo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9cf9349b-a2a2-4ad3-8979-a777399426bc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "8f55e116-bffe-43cc-b63e-3fc7fb464906", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "662509e5-e556-4233-aca0-0527bbadeb04", + "DeletedAt": null, + "LexemeForm": { + "seh": "balwi" + }, + "CitationForm": { + "seh": "ubalwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "194ed05c-dc3a-4cec-bda9-f913d397f4c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "662509e5-e556-4233-aca0-0527bbadeb04", + "Definition": {}, + "Gloss": { + "en": "nature passive", + "pt": "natureza passivo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ea028b17-0942-4751-bebe-600555b1442b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "194ed05c-dc3a-4cec-bda9-f913d397f4c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "be41c370-e3a7-4cb3-a4cc-6fc32dbc9ffb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "094f4d6a-81eb-4cc1-b0b8-34cf24c90da7", + "Order": 1, + "DeletedAt": null, + "EntryId": "be41c370-e3a7-4cb3-a4cc-6fc32dbc9ffb", + "Definition": {}, + "Gloss": { + "en": "unity", + "pt": "unidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c985333d-a23b-4b30-afcb-45b44e7b9688", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "094f4d6a-81eb-4cc1-b0b8-34cf24c90da7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8f1bb766-6e22-44a4-aa81-b4bae718b4ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubodzi-bodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ea48f99d-9b4e-41b4-99b3-a70c040a881d", + "Order": 1, + "DeletedAt": null, + "EntryId": "8f1bb766-6e22-44a4-aa81-b4bae718b4ac", + "Definition": {}, + "Gloss": { + "en": "same", + "pt": "mesmo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c938b15-497a-4852-8b5e-6afb1b3cf8c7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ea48f99d-9b4e-41b4-99b3-a70c040a881d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a96600f-de8f-4e72-ad6d-3d10baf502a3", + "DeletedAt": null, + "LexemeForm": { + "seh": "ucenche" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "90e822b6-9c0a-4815-b20c-498954c79e55", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a96600f-de8f-4e72-ad6d-3d10baf502a3", + "Definition": {}, + "Gloss": { + "en": "termite", + "pt": "formiga branco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a53010f4-673a-4cb3-8a5e-612653f1d967", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21 (ucendje); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "90e822b6-9c0a-4815-b20c-498954c79e55", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "DeletedAt": null, + "LexemeForm": { + "seh": "uceni" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9171df95-1a24-41d1-9194-d61abfa19488", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "Definition": {}, + "Gloss": { + "en": "purity", + "pt": "pureza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62caa4d9-535a-478e-bfa6-b7ca04d91778", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "9171df95-1a24-41d1-9194-d61abfa19488", + "DeletedAt": null + } + ] + }, + { + "Id": "3e1edd79-92fa-4512-86a0-c4ba64c8cd07", + "Order": 2, + "DeletedAt": null, + "EntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "Definition": {}, + "Gloss": { + "en": "whiteness", + "pt": "blanqueza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "7e0308a3-d18a-4aa9-b19e-f89607514106", + "MaybeId": "7e0308a3-d18a-4aa9-b19e-f89607514106", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "ComplexFormHeadword": "uceni", + "ComponentEntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "ComponentSenseId": null, + "ComponentHeadword": "cen" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7f8efbf-0e3c-4957-8ddd-013d8166e5d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "uchi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bfb0395-c6fc-4db5-8b04-cfe1c2bdcc8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7f8efbf-0e3c-4957-8ddd-013d8166e5d2", + "Definition": {}, + "Gloss": { + "en": "smoke", + "pt": "fumo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "edbb277a-c76d-4ece-9d58-322128d59a12", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "uchi ukulu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4bfb0395-c6fc-4db5-8b04-cfe1c2bdcc8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "826b9d62-744d-4d8e-976b-26b7f7f14266", + "DeletedAt": null, + "LexemeForm": { + "seh": "uci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "136a7fae-16be-4f69-9cc1-783a5c5d074c", + "Order": 1, + "DeletedAt": null, + "EntryId": "826b9d62-744d-4d8e-976b-26b7f7f14266", + "Definition": {}, + "Gloss": { + "en": "honey", + "pt": "mel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "328eac57-8663-4b33-97f1-56b2f340f798", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "uci wakutapira", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "mel doce", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "136a7fae-16be-4f69-9cc1-783a5c5d074c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91c553cd-7924-474f-a91a-4320f264a792", + "DeletedAt": null, + "LexemeForm": { + "seh": "didi" + }, + "CitationForm": { + "seh": "udidi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78c00a11-2e56-4697-b5bf-80904626cdf3", + "Order": 1, + "DeletedAt": null, + "EntryId": "91c553cd-7924-474f-a91a-4320f264a792", + "Definition": {}, + "Gloss": { + "en": "goodness", + "pt": "bondade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac7575a5-a5c0-4a9a-a63a-75e72b34f408", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "78c00a11-2e56-4697-b5bf-80904626cdf3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7bae7ed-1fa4-4659-9b43-02aac4761fdd", + "DeletedAt": null, + "LexemeForm": { + "seh": "udzakazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b976689-b5df-47fe-bec3-756897ca779e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7bae7ed-1fa4-4659-9b43-02aac4761fdd", + "Definition": {}, + "Gloss": { + "en": "slavery", + "pt": "escravida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "81d6ce11-bcaa-4c25-bbdd-79e607b48dd9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4b976689-b5df-47fe-bec3-756897ca779e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f82d76f5-e1c6-444c-b672-4fd2563781d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "udzu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24295910-8cbe-4dfb-888c-798376ffc7fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "f82d76f5-e1c6-444c-b672-4fd2563781d0", + "Definition": {}, + "Gloss": { + "en": "weed dry", + "pt": "capim seco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f57bc36a-ad6e-4c17-a048-08bd8c3c0141", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "24295910-8cbe-4dfb-888c-798376ffc7fa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "119b6841-465f-44ca-96bb-ce8d75a3c5b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ufa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6cecf1f9-7a8f-4595-bfc4-c217bf8b81f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "119b6841-465f-44ca-96bb-ce8d75a3c5b7", + "Definition": {}, + "Gloss": { + "en": "flour", + "pt": "farinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1447278f-efff-4807-b9ea-c487dea1ba5e", + "Name": { + "en": "Food from seeds" + }, + "Code": "5.2.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ebc9c111-dda4-4187-9261-0322fe14cabe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira: ; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6cecf1f9-7a8f-4595-bfc4-c217bf8b81f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78e01f2d-c253-4207-b4f5-2731536ec071", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipi" + }, + "CitationForm": { + "seh": "uipi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eca2562a-400e-4845-af66-21b452a16723", + "Order": 1, + "DeletedAt": null, + "EntryId": "78e01f2d-c253-4207-b4f5-2731536ec071", + "Definition": {}, + "Gloss": { + "en": "bad", + "pt": "mal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "77232534-ed80-40f9-b8e4-a1503fafd467", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kudzindikira udidi na uipi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "reconhecer bom e mal", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "eca2562a-400e-4845-af66-21b452a16723", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c7514277-299c-45eb-a1f8-2108e3085ba8", + "DeletedAt": null, + "LexemeForm": { + "seh": "uk" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "6b70c8c1-88b3-4130-b3a5-7affccc88c74", + "Order": 1, + "DeletedAt": null, + "EntryId": "c7514277-299c-45eb-a1f8-2108e3085ba8", + "Definition": {}, + "Gloss": { + "en": "apart", + "pt": "separado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57e0a581-d77a-4fbc-b072-a98398533f3d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ukhali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e088214d-88f2-4594-8f98-1f4f7c29dc65", + "Order": 1, + "DeletedAt": null, + "EntryId": "57e0a581-d77a-4fbc-b072-a98398533f3d", + "Definition": {}, + "Gloss": { + "en": "entity", + "pt": "entidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7354f8c3-650f-455d-9fcf-5ca0bddc602f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e088214d-88f2-4594-8f98-1f4f7c29dc65", + "DeletedAt": null + } + ] + }, + { + "Id": "c7ca7796-1ba2-4bdd-be82-40e4d3de066c", + "Order": 2, + "DeletedAt": null, + "EntryId": "57e0a581-d77a-4fbc-b072-a98398533f3d", + "Definition": {}, + "Gloss": { + "en": "essence", + "pt": "essencia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45f03292-e15e-4f57-8a13-e1dbb27c4cb8", + "DeletedAt": null, + "LexemeForm": { + "seh": "uku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e923c04d-9f7d-4043-8212-a94c0d9ab8c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "45f03292-e15e-4f57-8a13-e1dbb27c4cb8", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aaba6577-61e7-4c33-8097-29224f716db2", + "DeletedAt": null, + "LexemeForm": { + "seh": "ukulu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "358f3141-e7ab-4c29-ad51-ca223360afe8", + "Order": 1, + "DeletedAt": null, + "EntryId": "aaba6577-61e7-4c33-8097-29224f716db2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "greatness, to have great responsibility", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "greatness", + "pt": "grandeza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b7b633d8-5938-4833-af62-c8d386d0b6cb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "358f3141-e7ab-4c29-ad51-ca223360afe8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41637a62-161c-43e2-a2c4-954b3fa6486a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ul" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "a46c939f-bdbf-47b1-b167-1f2b8184bc36", + "Order": 1, + "DeletedAt": null, + "EntryId": "41637a62-161c-43e2-a2c4-954b3fa6486a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "reversive also apart, separate", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "REV", + "pt": "REV" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "470b963b-756a-43b8-80f9-e3b914503470", + "DeletedAt": null, + "LexemeForm": { + "seh": "langi" + }, + "CitationForm": { + "seh": "ulangi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea7ee9b7-19a6-42d5-b570-2275f5541b5e", + "Order": 1, + "DeletedAt": null, + "EntryId": "470b963b-756a-43b8-80f9-e3b914503470", + "Definition": {}, + "Gloss": { + "en": "moral of story", + "pt": "moral de conto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "69ba0985-7c6c-43ed-a305-12e167fffb44", + "DeletedAt": null, + "LexemeForm": { + "seh": "laphi" + }, + "CitationForm": { + "seh": "ulaphi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f99e2076-dadf-4143-99d7-1d5d173fcf7b", + "Order": 1, + "DeletedAt": null, + "EntryId": "69ba0985-7c6c-43ed-a305-12e167fffb44", + "Definition": {}, + "Gloss": { + "en": "width", + "pt": "comprimento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5206e32-4268-4a16-a007-9f57f467216e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f99e2076-dadf-4143-99d7-1d5d173fcf7b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b220bb10-cb7b-4924-94e9-bf92273c9023", + "DeletedAt": null, + "LexemeForm": { + "seh": "ulawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ababeddc-08c3-4780-8012-7198cf761d05", + "Order": 1, + "DeletedAt": null, + "EntryId": "b220bb10-cb7b-4924-94e9-bf92273c9023", + "Definition": { + "en": { + "Spans": [ + { + "Text": "shoal of fish", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cardume de peixe", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "shoal", + "pt": "cardume" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "535bff6a-c343-41e9-9a61-b0e0d223d20e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21", + "Ws": "en" + } + ] + }, + "SenseId": "ababeddc-08c3-4780-8012-7198cf761d05", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "64e90cd8-644c-4650-be10-1f552aba693f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ule" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "80432d6c-77a3-4a83-a225-fb47755c38c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "64e90cd8-644c-4650-be10-1f552aba693f", + "Definition": {}, + "Gloss": { + "en": "that one", + "pt": "aquele" + }, + "PartOfSpeech": { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a80c0309-9b86-4caa-854f-80b535b5493b", + "DeletedAt": null, + "LexemeForm": { + "seh": "lendo" + }, + "CitationForm": { + "seh": "ulendo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "51aaf249-32a7-421b-87a3-3205be891797", + "Order": 1, + "DeletedAt": null, + "EntryId": "a80c0309-9b86-4caa-854f-80b535b5493b", + "Definition": {}, + "Gloss": { + "en": "trip", + "pt": "viagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "20d7e293-af37-4058-ba22-dea4c2bc526f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "51aaf249-32a7-421b-87a3-3205be891797", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62d799a1-87e6-413a-a57f-d68478b115bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "umama" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "de3c9399-15af-4edf-8aaa-68f96d56637e", + "Order": 1, + "DeletedAt": null, + "EntryId": "62d799a1-87e6-413a-a57f-d68478b115bd", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "estado de ser mai", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "maternity", + "pt": "maternidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dcf598d3-2ea7-4b0c-9c6a-c6ead09f8c7c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "de3c9399-15af-4edf-8aaa-68f96d56637e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c27cdd26-df99-44d4-9af1-6e2ad8edf66d", + "DeletedAt": null, + "LexemeForm": { + "seh": "umambo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fc67e6a9-5387-43f2-91a3-216cfd5e65a8", + "Order": 1, + "DeletedAt": null, + "EntryId": "c27cdd26-df99-44d4-9af1-6e2ad8edf66d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the extent of the authority of a king, the land and people governed by a king", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "kingdom", + "pt": "reino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9", + "Name": { + "en": "Country" + }, + "Code": "4.6.7.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "473fbba6-0e1d-43f5-8001-b819ce5a0181", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fc67e6a9-5387-43f2-91a3-216cfd5e65a8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "84869a6c-24fa-4a41-b621-9d9720c2efaf", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbirimi" + }, + "CitationForm": { + "seh": "umbirimi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97a7c86c-6550-4e5c-a49f-a5a80330d9af", + "Order": 1, + "DeletedAt": null, + "EntryId": "84869a6c-24fa-4a41-b621-9d9720c2efaf", + "Definition": {}, + "Gloss": { + "en": "pride", + "pt": "ogulho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "74de137c-6a58-41ac-b30d-0b9529b95e8f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Imwe anthu a umbirimi...", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Voce\u0302s homens de ogulho...", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "97a7c86c-6550-4e5c-a49f-a5a80330d9af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29b943ed-8640-4ace-8d88-eb2d3bc0bca9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mboni" + }, + "CitationForm": { + "seh": "umboni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "25b7c888-d2fe-4c54-ace2-9b299e7a899d", + "Order": 1, + "DeletedAt": null, + "EntryId": "29b943ed-8640-4ace-8d88-eb2d3bc0bca9", + "Definition": {}, + "Gloss": { + "en": "testimony", + "pt": "testimonio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c34cc0f3-2800-4704-b925-ae99b27f08ff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "25b7c888-d2fe-4c54-ace2-9b299e7a899d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e00e4a6-1aa4-473f-bf9d-5a6c77b6781f", + "DeletedAt": null, + "LexemeForm": { + "seh": "umbuya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42083ae6-df49-4ae6-bfc8-48aef6b280d0", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e00e4a6-1aa4-473f-bf9d-5a6c77b6781f", + "Definition": {}, + "Gloss": { + "en": "lordship", + "pt": "senhoridade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "84b53cf0-9e32-4ddc-8b83-8519e95b495d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "42083ae6-df49-4ae6-bfc8-48aef6b280d0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db9ba81b-986d-42a4-bc1c-92ada161a70c", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphandu" + }, + "CitationForm": { + "seh": "umphandu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4a4ca0ac-1ed7-4dd5-baa8-b61eaf61553e", + "Order": 1, + "DeletedAt": null, + "EntryId": "db9ba81b-986d-42a4-bc1c-92ada161a70c", + "Definition": {}, + "Gloss": { + "en": "criminality", + "pt": "criminalidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "81546036-9a1a-45a7-b4a6-e84116decdc3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4a4ca0ac-1ed7-4dd5-baa8-b61eaf61553e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "39914391-d63c-4281-babb-b34704546c1a", + "DeletedAt": null, + "LexemeForm": { + "seh": "umu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "747b38ab-bfc8-4062-b430-2958e4d2490f", + "Order": 1, + "DeletedAt": null, + "EntryId": "39914391-d63c-4281-babb-b34704546c1a", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "feac681b-018d-42c6-8d9f-eb02a68621d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "mulopa" + }, + "CitationForm": { + "seh": "umulopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c5f58059-dd3b-4770-a432-4ac43c2a8668", + "Order": 1, + "DeletedAt": null, + "EntryId": "feac681b-018d-42c6-8d9f-eb02a68621d2", + "Definition": {}, + "Gloss": { + "en": "consanguinity", + "pt": "consanguinidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1be2de7e-12fd-4b56-b940-6d5ea9561392", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "c5f58059-dd3b-4770-a432-4ac43c2a8668", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8f676777-1560-484d-bbc8-ef872fb99b6e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nai" + }, + "CitationForm": { + "seh": "unai" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1aa877de-615f-46be-a264-9b91635662f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "8f676777-1560-484d-bbc8-ef872fb99b6e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to have the quality of four", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ter qualidade de quarto", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "quartette", + "pt": "quarteto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "979c143c-e829-4692-91ca-f678beb48288", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "1aa877de-615f-46be-a264-9b91635662f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "de836ca8-f975-4b40-835a-6a798cf1ecd6", + "DeletedAt": null, + "LexemeForm": { + "seh": "ungui" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09aabb85-a312-493f-8800-86735acf18fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "de836ca8-f975-4b40-835a-6a798cf1ecd6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fowl louse (species)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "louse", + "pt": "piolho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e921377-358e-4586-877b-6d7986671a7a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "09aabb85-a312-493f-8800-86735acf18fb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6274f082-272f-4360-921e-8e5d2db837c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "unowu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7f5d1092-935d-4df3-9956-68fbbd6fee2a", + "Order": 1, + "DeletedAt": null, + "EntryId": "6274f082-272f-4360-921e-8e5d2db837c0", + "Definition": {}, + "Gloss": { + "en": "this very one", + "pt": "este mesmo" + }, + "PartOfSpeech": { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e93e722-8246-4a90-91e5-93aafc129c11", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthaka" + }, + "CitationForm": { + "seh": "unthaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ee0c1ccb-2141-41f8-aeea-f2830dba0dfb", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e93e722-8246-4a90-91e5-93aafc129c11", + "Definition": {}, + "Gloss": { + "en": "inheritance", + "pt": "heranc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9b8c787-1658-488f-a370-954a0fe3f349", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ee0c1ccb-2141-41f8-aeea-f2830dba0dfb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d862954f-aafe-487d-9223-853733ee1d88", + "DeletedAt": null, + "LexemeForm": { + "seh": "upfumi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bf71bf48-b8d3-455b-bc29-4a7b4ce04870", + "Order": 1, + "DeletedAt": null, + "EntryId": "d862954f-aafe-487d-9223-853733ee1d88", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riquezas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f883fff8-9eee-4c7d-a8b3-0daa0da028de", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "bf71bf48-b8d3-455b-bc29-4a7b4ce04870", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "58b7555d-9b6f-4606-8a23-b33199a7e329", + "DeletedAt": null, + "LexemeForm": { + "seh": "phale" + }, + "CitationForm": { + "seh": "uphale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24ed647a-dafd-4897-bd4a-1914c517f2c8", + "Order": 1, + "DeletedAt": null, + "EntryId": "58b7555d-9b6f-4606-8a23-b33199a7e329", + "Definition": {}, + "Gloss": { + "en": "youth", + "pt": "juventude" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "69d12281-08e0-445c-8d46-8780af67dcb5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "24ed647a-dafd-4897-bd4a-1914c517f2c8", + "DeletedAt": null + } + ] + }, + { + "Id": "5deb9301-9b9c-4e6a-8f46-aa6653c0e987", + "Order": 2, + "DeletedAt": null, + "EntryId": "58b7555d-9b6f-4606-8a23-b33199a7e329", + "Definition": { + "en": { + "Spans": [ + { + "Text": "child\u0027s play", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "brincadieras de crianc\u0327a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "child\u0027s play", + "pt": "brincos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9750c1ad-3434-4b63-876e-f62bcadb8f62", + "DeletedAt": null, + "LexemeForm": { + "seh": "upsipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bbb4c1c3-fa11-47cd-8150-e0d73818da0c", + "Order": 1, + "DeletedAt": null, + "EntryId": "9750c1ad-3434-4b63-876e-f62bcadb8f62", + "Definition": {}, + "Gloss": { + "en": "blackness", + "pt": "cor escura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4c064139-a757-499e-9b43-45d1c373f9f0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "bbb4c1c3-fa11-47cd-8150-e0d73818da0c", + "DeletedAt": null + } + ] + }, + { + "Id": "2ab4c07f-c6c3-400a-bf12-4bdede2672ff", + "Order": 2, + "DeletedAt": null, + "EntryId": "9750c1ad-3434-4b63-876e-f62bcadb8f62", + "Definition": { + "en": { + "Spans": [ + { + "Text": "state or quality of darkness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "darkness", + "pt": "escurida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72eee253-6013-448a-a7c8-0719aa95ef2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "upumbuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c658fc3b-450b-4488-a2b7-fcefd7d38652", + "Order": 1, + "DeletedAt": null, + "EntryId": "72eee253-6013-448a-a7c8-0719aa95ef2c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a type of small flying insect that likes to get into one\u0027s eyes", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "um ti\u0301po de bichinho pequeno, voador, que gosta de entrar nos olhos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "gnat", + "pt": "bichinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23946911-57e8-4420-8eb6-acad95203dab", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "c658fc3b-450b-4488-a2b7-fcefd7d38652", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bdb4c77c-55a2-4da1-9d66-5d3ba82579ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "usimbu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c63b0bac-a53f-4029-8fb1-6fc0af61f894", + "Order": 1, + "DeletedAt": null, + "EntryId": "bdb4c77c-55a2-4da1-9d66-5d3ba82579ed", + "Definition": { + "en": { + "Spans": [ + { + "Text": "shoal of small fish", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cardum de peixe pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "shoal", + "pt": "cardum" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dc7c0ad-5cff-4730-b034-99b012ed0d82", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c63b0bac-a53f-4029-8fb1-6fc0af61f894", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47a68b80-fae0-479b-89f5-4da609f5037e", + "DeletedAt": null, + "LexemeForm": { + "seh": "ut" + }, + "CitationForm": { + "seh": "uta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "718eb928-04fd-4cd9-862e-9fd86ee62a56", + "Order": 1, + "DeletedAt": null, + "EntryId": "47a68b80-fae0-479b-89f5-4da609f5037e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "dog bark", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ladrar de ca\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bark", + "pt": "ladrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "720e1fa4-3660-4325-947a-4e1d4e984315", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "718eb928-04fd-4cd9-862e-9fd86ee62a56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a65be28-75e0-4d24-bdde-2aca37ca0e68", + "DeletedAt": null, + "LexemeForm": { + "seh": "utali" + }, + "CitationForm": { + "seh": "utali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e81c7af1-aa5c-4fcd-8971-36e4bfc4500d", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a65be28-75e0-4d24-bdde-2aca37ca0e68", + "Definition": {}, + "Gloss": { + "en": "iron", + "pt": "ferro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f8c5ff6b-4b63-4c85-9784-502123de8de3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "e81c7af1-aa5c-4fcd-8971-36e4bfc4500d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea419f67-0441-402a-ab00-f420657b9167", + "DeletedAt": null, + "LexemeForm": { + "seh": "tatu" + }, + "CitationForm": { + "seh": "utatu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae460c9e-400a-4e70-b9e1-cd27313bf09f", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea419f67-0441-402a-ab00-f420657b9167", + "Definition": {}, + "Gloss": { + "en": "trinity", + "pt": "trinidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "300c759c-f2d9-4a5f-9add-ab498713fa9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "ae460c9e-400a-4e70-b9e1-cd27313bf09f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c411483-e3ea-4192-bb66-b609e7f93818", + "DeletedAt": null, + "LexemeForm": { + "seh": "utenda" + }, + "CitationForm": { + "seh": "utenda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "509975b3-3a61-48be-b929-d47adaf4a2ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c411483-e3ea-4192-bb66-b609e7f93818", + "Definition": {}, + "Gloss": { + "en": "illness", + "pt": "doenc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f784a7b-6915-489d-b15f-b3063dfbd572", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21", + "Ws": "en" + } + ] + }, + "SenseId": "509975b3-3a61-48be-b929-d47adaf4a2ec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c8086036-6530-45ab-82ef-034f7fad0a95", + "DeletedAt": null, + "LexemeForm": { + "seh": "utende" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c68f1e7-423b-4ba3-93e4-f2748477abca", + "Order": 1, + "DeletedAt": null, + "EntryId": "c8086036-6530-45ab-82ef-034f7fad0a95", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riqueza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f4edf555-95df-4f38-957a-9744e9d2bd9d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21", + "Ws": "en" + } + ] + }, + "SenseId": "0c68f1e7-423b-4ba3-93e4-f2748477abca", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6a14de2b-f757-4aa1-91b4-0e7090976dd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "thambi" + }, + "CitationForm": { + "seh": "uthambi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ca24aef-ba6a-4288-903a-66d7bf45158c", + "Order": 1, + "DeletedAt": null, + "EntryId": "6a14de2b-f757-4aa1-91b4-0e7090976dd8", + "Definition": {}, + "Gloss": { + "en": "lie", + "pt": "mentira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f0b1f6ff-580d-4678-8e9c-f8fe02999725", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0ca24aef-ba6a-4288-903a-66d7bf45158c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "DeletedAt": null, + "LexemeForm": { + "seh": "utongi" + }, + "CitationForm": { + "seh": "utongi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8bad9278-024a-46c0-b0b9-8fed75472d38", + "Order": 1, + "DeletedAt": null, + "EntryId": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "Definition": {}, + "Gloss": { + "en": "justice", + "pt": "jutic\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "17eee64f-d7b4-4ad2-b735-1edb1275acdc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8bad9278-024a-46c0-b0b9-8fed75472d38", + "DeletedAt": null + } + ] + }, + { + "Id": "16e9b698-06c4-49a8-bd83-b8d5a36f8589", + "Order": 2, + "DeletedAt": null, + "EntryId": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "Definition": {}, + "Gloss": { + "en": "authority", + "pt": "authoridade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "db214e78-7505-4899-b49a-0637749e2d13", + "Order": 3, + "DeletedAt": null, + "EntryId": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area adminstrated by an appointed official", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "province", + "pt": "provi\u0301nicia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9", + "Name": { + "en": "Country" + }, + "Code": "4.6.7.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "efcdc82b-d042-46a8-9909-4692313ac0b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "utumbo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5179d490-ee47-45a5-b49d-cdb783960229", + "Order": 1, + "DeletedAt": null, + "EntryId": "efcdc82b-d042-46a8-9909-4692313ac0b2", + "Definition": {}, + "Gloss": { + "en": "intestine", + "pt": "intestinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5ebf2130-71fa-4933-bc62-503835360965", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "5179d490-ee47-45a5-b49d-cdb783960229", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d435ed1-1b08-4c71-a5ea-e45f859d2838", + "DeletedAt": null, + "LexemeForm": { + "seh": "wana" + }, + "CitationForm": { + "seh": "uwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "177fe980-b229-4630-aaf9-8522bc6e3d8b", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d435ed1-1b08-4c71-a5ea-e45f859d2838", + "Definition": {}, + "Gloss": { + "en": "childhood", + "pt": "infa\u0302ncia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "933fb486-3798-473d-92f6-1b5a87dd222e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21,32", + "Ws": "en" + } + ] + }, + "SenseId": "177fe980-b229-4630-aaf9-8522bc6e3d8b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "096e696f-e0c9-46d5-a6d5-e92c076331c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "weya" + }, + "CitationForm": { + "seh": "uweya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3b3016f-337d-4ea6-a6d2-9bc3ebc9a2ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "096e696f-e0c9-46d5-a6d5-e92c076331c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "animal hair", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pelos dos animais", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hair", + "pt": "pelos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "933886bf-ec65-4946-b80e-a904b437cd38", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b3b3016f-337d-4ea6-a6d2-9bc3ebc9a2ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f1ef0bc6-a6e9-4a05-97c1-bddc54e495b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "wiri" + }, + "CitationForm": { + "seh": "uwiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5918398-1bfb-4cfb-85b3-c0b6972fac0d", + "Order": 1, + "DeletedAt": null, + "EntryId": "f1ef0bc6-a6e9-4a05-97c1-bddc54e495b1", + "Definition": {}, + "Gloss": { + "en": "duality", + "pt": "dualidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0943cb26-7b85-4514-b8e8-d932cd60714e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "a5918398-1bfb-4cfb-85b3-c0b6972fac0d", + "DeletedAt": null + } + ] + }, + { + "Id": "8780309e-9d9a-4afe-9424-c239c3b77b09", + "Order": 2, + "DeletedAt": null, + "EntryId": "f1ef0bc6-a6e9-4a05-97c1-bddc54e495b1", + "Definition": {}, + "Gloss": { + "en": "dual", + "pt": "dual" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "842e978a-f6a7-40ed-960d-d5170f4b3218", + "DeletedAt": null, + "LexemeForm": { + "seh": "uwu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "35b071f9-e0b1-4612-a43c-bf8d8a236be3", + "Order": 1, + "DeletedAt": null, + "EntryId": "842e978a-f6a7-40ed-960d-d5170f4b3218", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c8b716ec-f5fa-4c95-9c1b-8596be5b9925", + "DeletedAt": null, + "LexemeForm": { + "seh": "xamwali" + }, + "CitationForm": { + "seh": "uxamwali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a1062067-0b74-4f5b-b8a0-df0698229773", + "Order": 1, + "DeletedAt": null, + "EntryId": "c8b716ec-f5fa-4c95-9c1b-8596be5b9925", + "Definition": {}, + "Gloss": { + "en": "friendship", + "pt": "amizade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "932674de-1016-4788-8d16-add26eae81b2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:43", + "Ws": "en" + } + ] + }, + "SenseId": "a1062067-0b74-4f5b-b8a0-df0698229773", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "58db3e6a-dd24-4b91-afcd-d3cf3e4dba57", + "DeletedAt": null, + "LexemeForm": { + "seh": "xanu" + }, + "CitationForm": { + "seh": "uxanu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f75bf8c-4b92-46fd-a51f-b2cf2f60c732", + "Order": 1, + "DeletedAt": null, + "EntryId": "58db3e6a-dd24-4b91-afcd-d3cf3e4dba57", + "Definition": { + "en": { + "Spans": [ + { + "Text": "quintette; quality of fiveness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "quintette", + "pt": "quintete" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "33d30770-2844-4eb8-8653-760eff42f19d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "2f75bf8c-4b92-46fd-a51f-b2cf2f60c732", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a1095120-e054-40ba-abe0-ec85c7446242", + "DeletedAt": null, + "LexemeForm": { + "seh": "yetimi" + }, + "CitationForm": { + "seh": "uyetimi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae62dd24-2425-4d9c-bf98-12f9af6e7573", + "Order": 1, + "DeletedAt": null, + "EntryId": "a1095120-e054-40ba-abe0-ec85c7446242", + "Definition": {}, + "Gloss": { + "en": "brilliancy", + "pt": "brilho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9bd565ae-a790-4457-b064-cff805eb8b7a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "ae62dd24-2425-4d9c-bf98-12f9af6e7573", + "DeletedAt": null + } + ] + }, + { + "Id": "56914d82-0650-4b31-bb28-a77197eca5ac", + "Order": 2, + "DeletedAt": null, + "EntryId": "a1095120-e054-40ba-abe0-ec85c7446242", + "Definition": {}, + "Gloss": { + "en": "splendour", + "pt": "esplendor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b86b15a7-c37f-4dfd-954f-3c499b713fd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "uyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a97dad97-0fe4-46d7-aaa4-d2f892439cf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "b86b15a7-c37f-4dfd-954f-3c499b713fd8", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "37bfd451-1c70-4a94-8f9b-2561363a54c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "vik" + }, + "CitationForm": { + "seh": "vika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5cec45e-99e3-4c49-82f9-08602426527b", + "Order": 1, + "DeletedAt": null, + "EntryId": "37bfd451-1c70-4a94-8f9b-2561363a54c2", + "Definition": {}, + "Gloss": { + "en": "dip in liquid", + "pt": "mergulhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "40ea6907-8962-49d5-9526-e910b271cd6a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a5cec45e-99e3-4c49-82f9-08602426527b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b763ec45-38bd-449b-bb9f-a76eda4fd5ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "vinyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "435e2d57-8d6f-4c27-97a1-12affa2d82a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "b763ec45-38bd-449b-bb9f-a76eda4fd5ac", + "Definition": {}, + "Gloss": { + "en": "wine", + "pt": "vinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4883351-21b2-4594-910b-4f597ccf0b3c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "435e2d57-8d6f-4c27-97a1-12affa2d82a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a22f840-67a6-4210-86f4-c1cb5d89acd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "vund" + }, + "CitationForm": { + "seh": "vunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f93f82cc-9b40-4c81-b3c7-3001a88166e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a22f840-67a6-4210-86f4-c1cb5d89acd8", + "Definition": {}, + "Gloss": { + "en": "rot", + "pt": "podrecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dacf2ec5-def6-48dc-a4d3-b376982b8f63", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f93f82cc-9b40-4c81-b3c7-3001a88166e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc6f6883-38a9-434c-b87a-1176e733aa09", + "DeletedAt": null, + "LexemeForm": { + "seh": "wadz" + }, + "CitationForm": { + "seh": "wadza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ebd1836-16c2-4bc8-a232-5785ffb40d66", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc6f6883-38a9-434c-b87a-1176e733aa09", + "Definition": { + "en": { + "Spans": [ + { + "Text": "throw seeds", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "lanc\u0327ar semente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "plant", + "pt": "semear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7b5b1d96-9ab9-4de8-b209-f9a8dfc88261", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1ebd1836-16c2-4bc8-a232-5785ffb40d66", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a0b0cd3e-9564-42a5-b7d4-56e7e2a36118", + "DeletedAt": null, + "LexemeForm": { + "seh": "akudza" + }, + "CitationForm": { + "seh": "wakudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "552b7e9b-d424-47a8-866c-82f290bd2c7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a0b0cd3e-9564-42a5-b7d4-56e7e2a36118", + "Definition": {}, + "Gloss": { + "en": "foreigner", + "pt": "estrangeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cef46d47-6a30-4ed9-85e2-64dccd641918", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "552b7e9b-d424-47a8-866c-82f290bd2c7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ee0fa68b-7be0-4df4-b9f2-25209beff25b", + "DeletedAt": null, + "LexemeForm": { + "seh": "wang" + }, + "CitationForm": { + "seh": "wanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4145d3ff-05ab-40d4-9211-ab3874f5aeb9", + "Order": 1, + "DeletedAt": null, + "EntryId": "ee0fa68b-7be0-4df4-b9f2-25209beff25b", + "Definition": {}, + "Gloss": { + "en": "be healthy", + "pt": "ter sau\u0301de" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21cbdf88-7ca0-4bc5-a3ab-27eb57b0decf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Munawangisa kunyumba.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Seja que todos tem sau\u0301de em casa.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4145d3ff-05ab-40d4-9211-ab3874f5aeb9", + "DeletedAt": null + } + ] + }, + { + "Id": "3db9a9fe-2081-41be-9949-3c7789ccff52", + "Order": 2, + "DeletedAt": null, + "EntryId": "ee0fa68b-7be0-4df4-b9f2-25209beff25b", + "Definition": {}, + "Gloss": { + "en": "be strong", + "pt": "estar forte" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f39516b0-70eb-44b3-9e5b-c501be0a14ea", + "DeletedAt": null, + "LexemeForm": { + "seh": "waw" + }, + "CitationForm": { + "seh": "wawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cf11d0dd-67c4-4564-a4d4-c05dd5bbd1a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "f39516b0-70eb-44b3-9e5b-c501be0a14ea", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bitter, sour, spicy, salty", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "strong taste", + "pt": "sabor forte" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9622d6a9-f3f0-48df-b609-09e794304c87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cf11d0dd-67c4-4564-a4d4-c05dd5bbd1a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b91a29f-7033-4c72-a032-540b171619f0", + "DeletedAt": null, + "LexemeForm": { + "seh": "waz" + }, + "CitationForm": { + "seh": "waza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdc37e88-cc8d-40eb-b8a7-d41715ff2201", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b91a29f-7033-4c72-a032-540b171619f0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "drizzle, a light rairn", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "drizzle", + "pt": "chuviscar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a03812c-144d-4c4c-aee8-c4916bd8f1e2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu asawadza", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Est chuviscar (chuva).", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bdc37e88-cc8d-40eb-b8a7-d41715ff2201", + "DeletedAt": null + } + ] + }, + { + "Id": "5f0ee744-8b92-46cb-8fee-0cd0fa449a5f", + "Order": 2, + "DeletedAt": null, + "EntryId": "9b91a29f-7033-4c72-a032-540b171619f0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the action of spreading seed, sand etc with a throwing action", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spread", + "pt": "espalhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebc5126a-9d84-4460-84df-c0586287322f", + "DeletedAt": null, + "LexemeForm": { + "seh": "wiri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "610bd39c-d07d-4f3a-8dcf-6a1c45858f94", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebc5126a-9d84-4460-84df-c0586287322f", + "Definition": {}, + "Gloss": { + "en": "two", + "pt": "dois" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "50eb916e-8dee-4309-8ce9-6cee8601fcac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:33", + "Ws": "en" + } + ] + }, + "SenseId": "610bd39c-d07d-4f3a-8dcf-6a1c45858f94", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0fa817f-c0ca-4ccc-9920-16a99ee014bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "wo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94d56b46-19b2-4ecb-aa89-c971ff0e51cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0fa817f-c0ca-4ccc-9920-16a99ee014bb", + "Definition": {}, + "Gloss": { + "en": "theirs", + "pt": "d\u0027eles" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a91df117-0fcb-41b4-82a0-dcabee2cac31", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "wawayo", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "94d56b46-19b2-4ecb-aa89-c971ff0e51cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "90021413-9eb7-478a-9285-e75872f730bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "xamwali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "896de921-857b-416f-9b2f-2530d6878a3e", + "Order": 1, + "DeletedAt": null, + "EntryId": "90021413-9eb7-478a-9285-e75872f730bc", + "Definition": {}, + "Gloss": { + "en": "friend", + "pt": "amigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7205294e-d580-4f19-8fbe-04c815ddfcb4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "896de921-857b-416f-9b2f-2530d6878a3e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7e46646e-47d0-4bac-8ef8-290beacd8090", + "DeletedAt": null, + "LexemeForm": { + "seh": "xanu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6582a79f-77d9-498b-9d3d-13aefb6c2187", + "Order": 1, + "DeletedAt": null, + "EntryId": "7e46646e-47d0-4bac-8ef8-290beacd8090", + "Definition": {}, + "Gloss": { + "en": "five", + "pt": "cinco" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "198b7aea-c6eb-40a6-811c-1adee9c5fd32", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:33; Wordlist; Nyacinco", + "Ws": "en" + } + ] + }, + "SenseId": "6582a79f-77d9-498b-9d3d-13aefb6c2187", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eeadb656-6249-46b5-8f2d-afc6decfc42c", + "DeletedAt": null, + "LexemeForm": { + "seh": "xii" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "12fb344a-78ae-4185-96d8-448329aaac16", + "Order": 1, + "DeletedAt": null, + "EntryId": "eeadb656-6249-46b5-8f2d-afc6decfc42c", + "Definition": {}, + "Gloss": { + "en": "wow!", + "pt": "irra!" + }, + "PartOfSpeech": { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "527d95ec-f83a-430d-bbd1-d8f3805c8605", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "12fb344a-78ae-4185-96d8-448329aaac16", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "806a16e8-d471-4719-ab4c-12944facc995", + "DeletedAt": null, + "LexemeForm": { + "seh": "xikola" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3659edd6-3d10-4629-8da4-8c9a9555e552", + "Order": 1, + "DeletedAt": null, + "EntryId": "806a16e8-d471-4719-ab4c-12944facc995", + "Definition": {}, + "Gloss": { + "en": "school", + "pt": "escola" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f50d9bb1-056f-4ff1-80f5-a83c216ececc", + "DeletedAt": null, + "LexemeForm": { + "seh": "xoko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c19b8053-71d1-4d12-ae64-ba1e3e5725c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "f50d9bb1-056f-4ff1-80f5-a83c216ececc", + "Definition": {}, + "Gloss": { + "en": "fist", + "pt": "punho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "686eb994-5789-4762-86d8-8ab7eff1ee4e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c19b8053-71d1-4d12-ae64-ba1e3e5725c2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "909fdc18-b099-4ce2-82fd-594ef6d0ce19", + "DeletedAt": null, + "LexemeForm": { + "seh": "xol" + }, + "CitationForm": { + "seh": "xola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e636329-5e53-4a16-8383-d26a31811711", + "Order": 1, + "DeletedAt": null, + "EntryId": "909fdc18-b099-4ce2-82fd-594ef6d0ce19", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lack of respect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "falta de respeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "disrespectful", + "pt": "falta de respeito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "088a2ec2-efd3-479f-8416-b35891f030c4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1e636329-5e53-4a16-8383-d26a31811711", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6a3d7c1c-c699-4274-a2cf-f1d70be82345", + "DeletedAt": null, + "LexemeForm": { + "seh": "yemba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6de663de-116b-405f-b3a2-3415c5f276f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "6a3d7c1c-c699-4274-a2cf-f1d70be82345", + "Definition": {}, + "Gloss": { + "en": "bean", + "pt": "feija\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68c4d977-1eeb-4e7d-96b6-f89aee7594f1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16 (says type of); Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "6de663de-116b-405f-b3a2-3415c5f276f9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "564fffa0-0aec-46ab-8d41-cbd30be82be1", + "DeletedAt": null, + "LexemeForm": { + "seh": "yenda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "46cc0a0a-9f6e-4b00-9674-998b9238f32a", + "Order": 1, + "DeletedAt": null, + "EntryId": "564fffa0-0aec-46ab-8d41-cbd30be82be1", + "Definition": {}, + "Gloss": { + "en": "go", + "pt": "ir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3dcf17de-6e0b-48c3-9046-b5e28bdaddae", + "DeletedAt": null, + "LexemeForm": { + "seh": "yetim" + }, + "CitationForm": { + "seh": "yetima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "586ad21a-8694-415b-afb2-5843bcb03885", + "Order": 1, + "DeletedAt": null, + "EntryId": "3dcf17de-6e0b-48c3-9046-b5e28bdaddae", + "Definition": {}, + "Gloss": { + "en": "shine", + "pt": "brilhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "18061ba3-78e0-469b-8556-4ee06155ea48", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "586ad21a-8694-415b-afb2-5843bcb03885", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "48c206c1-8d09-41ee-82a1-43a9bb3d19a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "yo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4040429d-129b-4421-8325-f3ac51270407", + "Order": 1, + "DeletedAt": null, + "EntryId": "48c206c1-8d09-41ee-82a1-43a9bb3d19a4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "his", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "d\u0027ele", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "9", + "pt": "9" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ad41f63-c5f6-4a34-8e7c-7160d30f206d", + "DeletedAt": null, + "LexemeForm": { + "seh": "yokha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1b7e5eae-e787-4201-bd5d-54355fe1da19", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ad41f63-c5f6-4a34-8e7c-7160d30f206d", + "Definition": {}, + "Gloss": { + "en": "only", + "pt": "somente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b5dfcbbe-cb44-46a8-b8e8-db77276782b2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ini ndinena kuloja ndikheni", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eu vou a loja sozinho", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "1b7e5eae-e787-4201-bd5d-54355fe1da19", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c6c48809-7c78-4abb-b8a6-154c03d809f3", + "DeletedAt": null, + "LexemeForm": { + "seh": "zaz" + }, + "CitationForm": { + "seh": "zaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d79e67f4-9836-4e45-a2cb-02574110442f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c6c48809-7c78-4abb-b8a6-154c03d809f3", + "Definition": {}, + "Gloss": { + "en": "complete", + "pt": "completar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1a07460f-4699-4e4a-8d58-fa960b2d2c45", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d79e67f4-9836-4e45-a2cb-02574110442f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09406061-101b-43d3-9ffa-3e5211d2f90b", + "DeletedAt": null, + "LexemeForm": { + "seh": "zazamir" + }, + "CitationForm": { + "seh": "zazamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ada56c3e-c584-4f09-8914-978ad628ecbe", + "Order": 1, + "DeletedAt": null, + "EntryId": "09406061-101b-43d3-9ffa-3e5211d2f90b", + "Definition": {}, + "Gloss": { + "en": "shake", + "pt": "tremer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "52974907-a11a-4693-8ddf-5836eb2047e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ada56c3e-c584-4f09-8914-978ad628ecbe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1fbdd15b-3107-40f1-a970-7be1c116c622", + "DeletedAt": null, + "LexemeForm": { + "seh": "zazis" + }, + "CitationForm": { + "seh": "zazisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38c76c00-9ab7-487d-bb63-2e355f82f7c1", + "Order": 1, + "DeletedAt": null, + "EntryId": "1fbdd15b-3107-40f1-a970-7be1c116c622", + "Definition": {}, + "Gloss": { + "en": "complete", + "pt": "completar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8f8ac27c-b2f7-4582-a11c-5f5e856c3ae4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "38c76c00-9ab7-487d-bb63-2e355f82f7c1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "DeletedAt": null, + "LexemeForm": { + "seh": "zi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "33361573-23f9-41c6-8038-ef5b11e85460", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "098fb96c-aaff-447e-9620-7463d45a2a2b", + "Order": 2, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c86e5e35-bb32-40b6-aaae-d17dea00c907", + "Order": 3, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "098bb9a9-ead5-4fdb-80d9-41054d1151f8", + "Order": 4, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "1e72e29e-1e83-4754-a073-e5edbf7da6bb", + "Order": 5, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4031c181-7952-47b5-82f2-3322f080ee8e", + "DeletedAt": null, + "LexemeForm": { + "seh": "zinji" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4031c181-7952-47b5-82f2-3322f080ee8e", + "Definition": {}, + "Gloss": { + "en": "many", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "af6a4f9e-68ea-4f53-a16a-4570f7391df9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Pinthu pizinji", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Many things", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Muitas coisas", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "sulo2; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", + "DeletedAt": null + }, + { + "Id": "82e1dce1-539b-4ee4-a321-fc4eccbd3656", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nyama yanga njii.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Minha carne e\u0301 esta.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e101f5ba-1812-4c89-b69a-c05d2b931d56", + "DeletedAt": null, + "LexemeForm": { + "seh": "zirim" + }, + "CitationForm": { + "seh": "zirima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0383e271-64d7-43ef-93c0-bd43385dfa6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "e101f5ba-1812-4c89-b69a-c05d2b931d56", + "Definition": { + "en": { + "Spans": [ + { + "Text": "smooth a clay floor by putting fresh wet clay down and rubbing it", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "smooth", + "pt": "alisar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1bd8dfa1-bb72-42b4-8edb-f0d4c2a552b6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0383e271-64d7-43ef-93c0-bd43385dfa6f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31b94a4a-5224-4bf3-af8b-50e1a41dc437", + "DeletedAt": null, + "LexemeForm": { + "seh": "zond" + }, + "CitationForm": { + "seh": "zonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0be25da3-89e3-4991-a1fa-318fcdf6d736", + "Order": 1, + "DeletedAt": null, + "EntryId": "31b94a4a-5224-4bf3-af8b-50e1a41dc437", + "Definition": {}, + "Gloss": { + "en": "hate", + "pt": "odiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "78dc54c1-942e-4ef9-be29-da5f16544ce5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0be25da3-89e3-4991-a1fa-318fcdf6d736", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a705b51e-e8c6-48cd-9d93-6b191ce9f7af", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungulir" + }, + "CitationForm": { + "seh": "zungulira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88ea6f68-239a-43d3-a2fc-3cd209661132", + "Order": 1, + "DeletedAt": null, + "EntryId": "a705b51e-e8c6-48cd-9d93-6b191ce9f7af", + "Definition": {}, + "Gloss": { + "en": "surround", + "pt": "rodear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0e33aac-269a-4fc1-8ec6-28ebba45e219", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "88ea6f68-239a-43d3-a2fc-3cd209661132", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9bd1dbad-08ca-4993-bdda-d568fb93b7eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungunuk" + }, + "CitationForm": { + "seh": "zungunuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86618e0a-35d0-4abd-b1ef-3bccb313c9b4", + "Order": 1, + "DeletedAt": null, + "EntryId": "9bd1dbad-08ca-4993-bdda-d568fb93b7eb", + "Definition": {}, + "Gloss": { + "en": "turn", + "pt": "virar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ab96245-1872-4068-abdf-2a1beeb73b2e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "86618e0a-35d0-4abd-b1ef-3bccb313c9b4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6fac4249-4a72-47d2-b767-9d677530a59e", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungunus" + }, + "CitationForm": { + "seh": "zungunusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1458ae34-3a2e-45f5-b334-391ba0448c43", + "Order": 1, + "DeletedAt": null, + "EntryId": "6fac4249-4a72-47d2-b767-9d677530a59e", + "Definition": {}, + "Gloss": { + "en": "turn", + "pt": "virar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "533915a2-3831-42c4-a48d-b28d1e997153", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1458ae34-3a2e-45f5-b334-391ba0448c43", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + } + ], + "PartsOfSpeech": [ + { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "7fbf785b-73d5-4827-b102-f8d33d9ecf98", + "Name": { + "en": "Derived Adjective", + "pt": "Adjectivo derivado" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "b1bcdc90-4ee0-44f5-9c2d-3043b84394a7", + "Name": { + "en": "Auxiliary Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "a5311f3b-ff98-47d2-8ece-b1aca03a8bbd", + "Name": { + "en": "Cardinal numeral" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "748af620-8cd0-4364-a951-c234306f5b9f", + "Name": { + "en": "Copula Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "093264d7-06c3-42e1-bc4d-5a965ce63887", + "Name": { + "en": "Demonstrative", + "pt": "Demonstrativo" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "730528ca-6a9b-4424-9839-a58bf66db779", + "Name": { + "en": "Demonstrative2", + "pt": "Demonstrativo2" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "6eb02b74-d776-4c26-987e-bd99dd3520ca", + "Name": { + "en": "Demonstrative3", + "pt": "Demonstrativo3" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "Name": { + "en": "Demonstrative6", + "pt": "Demonstrativo6" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "6df1c8ee-5530-4180-99e8-be2afab0f60d", + "Name": { + "en": "Determiner" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "Name": { + "en": "Irregular Verb - li" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "dbf8cf00-ef63-466a-bfb1-472e1fdae57d", + "Name": { + "en": "Irregular Verb - na" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "ae52e28d-f653-4f8e-821a-04940a1d7074", + "Name": { + "en": "Irregular Verb - ti" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "1c030229-affa-4729-9773-878100c1fd28", + "Name": { + "en": "Multiplicative numeral" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "Name": { + "en": "Nominalizer", + "pt": "Nominalizador" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "3d9d43d6-527c-4e79-be00-82cf2d0fd9bd", + "Name": { + "en": "Ordinal numeral" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8aa1f669-4dad-411e-adeb-6ef50ce9aa0a", + "Name": { + "en": "Orienter", + "pt": "Orientador" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "a511495e-48fa-46fe-a9db-fd5d31e585b3", + "Name": { + "en": "Prepositional phrase" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "a4fc78d6-7591-4fb3-8edd-82f10ae3739d", + "Name": { + "en": "Pro-form" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c90d669-cc98-49ea-8c9c-a739253336ed", + "Name": { + "en": "Subjunctive Verb", + "pt": "Verbo Conjuntivo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "c36e1ddc-d24b-42d5-9660-49766bda6555", + "Name": { + "en": "Relative Verb", + "pt": "Verbo Relativo" + }, + "DeletedAt": null, + "Predefined": false + } + ], + "Publications": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ], + "SemanticDomains": [ + { + "Id": "00041516-72d1-4e56-9ed8-fe235a9b1a68", + "Name": { + "en": "Series" + }, + "Code": "8.4.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "00269021-e1c4-474d-9dba-341d296bdac7", + "Name": { + "en": "Order, sequence" + }, + "Code": "8.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "00364f0c-9a3a-4910-a82e-1ffbc4d4137f", + "Name": { + "en": "Excited" + }, + "Code": "3.4.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0037693a-ae42-4e5c-85f5-10a05482d4ee", + "Name": { + "en": "Thing" + }, + "Code": "9.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0049664f-0931-487b-ab3c-ce11e134ce7a", + "Name": { + "en": "Verb affixes" + }, + "Code": "9.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0066f0f7-02dd-4f8e-afa5-59b8cb5a434a", + "Name": { + "en": "Betray" + }, + "Code": "4.8.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "00dde3be-e53d-42c3-b3ff-717e25cbffb6", + "Name": { + "en": "Pray" + }, + "Code": "4.9.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0105615f-0a96-4d08-ab00-ca4b4473de39", + "Name": { + "en": "Stingy" + }, + "Code": "6.8.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "01441207-4935-49a5-a192-16d949f5606c", + "Name": { + "en": "Sports" + }, + "Code": "4.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "01459db0-bf2a-422b-8d55-0ab505aea2b4", + "Name": { + "en": "Trouble" + }, + "Code": "4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "016e3f5b-b527-446e-9da6-49af34870001", + "Name": { + "en": "Expose falsehood" + }, + "Code": "3.5.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "019e3b64-c68a-4b19-bec5-a22f4eb88f48", + "Name": { + "en": "Weaving baskets and mats" + }, + "Code": "6.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0205145d-23b6-4c3c-bf2d-bf866bb010e7", + "Name": { + "en": "Conveying water" + }, + "Code": "6.6.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "025da6f4-b1b6-423a-8c0f-b324f531a6f1", + "Name": { + "en": "Plant" + }, + "Code": "1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0281fb1d-ab12-41b9-a3dc-09ef6b1e4733", + "Name": { + "en": "Life after death" + }, + "Code": "2.6.6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0296465a-25de-4af6-a122-376956b4b452", + "Name": { + "en": "Pronouns" + }, + "Code": "9.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "029e0760-3306-41cc-b032-40befb22303e", + "Name": { + "en": "Stimulant" + }, + "Code": "5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "02b6da2b-fae3-49f4-83f0-fd014024e117", + "Name": { + "en": "Contradict" + }, + "Code": "3.5.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "02d404d7-f3d7-492c-92a0-c6c9ff1a1908", + "Name": { + "en": "Meal" + }, + "Code": "5.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "03352940-c220-4a32-a9a5-fc08d1d0dc71", + "Name": { + "en": "Garbage" + }, + "Code": "8.3.7.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "03d65d0c-aafb-40c0-9cd2-3e5ced66ad03", + "Name": { + "en": "All the time" + }, + "Code": "8.4.6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "03e22b05-8505-442d-9c3b-7e691bd525e0", + "Name": { + "en": "Anoint the body" + }, + "Code": "5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "040e4b3e-2f36-430a-ab09-1917f96a09de", + "Name": { + "en": "Animal products" + }, + "Code": "6.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "041b5ac9-99be-4281-a17e-654eff33d793", + "Name": { + "en": "Hairstyle" + }, + "Code": "5.4.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04370e1f-25aa-4d9e-97c5-de9b59156666", + "Name": { + "en": "Widow, widower" + }, + "Code": "4.1.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "043d12ac-c76d-4b4c-813b-4ef7758c8085", + "Name": { + "en": "Hide" + }, + "Code": "7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0448c78b-dbb7-417c-afc5-b227a1475825", + "Name": { + "en": "Arrest" + }, + "Code": "4.6.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "044f740b-94f3-4096-aa3a-c07f5e708346", + "Name": { + "en": "Collect" + }, + "Code": "6.8.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04543543-4c3d-4d71-aa87-53191ef3b7b0", + "Name": { + "en": "Immediately" + }, + "Code": "8.4.6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04582a28-b94a-4e7f-8cc4-5cdefa8a39f0", + "Name": { + "en": "Man" + }, + "Code": "2.6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04752883-aa3e-42a2-bd42-454e9cd99b11", + "Name": { + "en": "Evidentials" + }, + "Code": "9.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05371057-2fe4-49ef-b203-f5bd6727645e", + "Name": { + "en": "Shake" + }, + "Code": "7.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0539de86-f407-4b3d-b1b8-028822fb9f26", + "Name": { + "en": "Repeat" + }, + "Code": "3.5.1.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05472990-3f51-40b3-bca8-df3cf383328b", + "Name": { + "en": "Make speech" + }, + "Code": "3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "054e81ce-abd8-4069-989d-13e2fa58851c", + "Name": { + "en": "Show off" + }, + "Code": "4.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05811fbe-2361-4219-a5d3-be3dc487f6fa", + "Name": { + "en": "Solve a problem" + }, + "Code": "4.4.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05a7bbdc-7cf5-47d3-830b-84e1591b11cc", + "Name": { + "en": "Pass laws" + }, + "Code": "4.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05e20a72-9496-4bba-8097-5605692e83a1", + "Name": { + "en": "Limitation of topic" + }, + "Code": "9.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05f95abb-163a-4927-83c5-8c81ef7b769c", + "Name": { + "en": "Tendency" + }, + "Code": "3.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "061749a8-e28a-461c-bf2d-052ab3e157d5", + "Name": { + "en": "Interval, space" + }, + "Code": "8.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0622d3f7-1ab2-482b-9f9c-9c101cd35182", + "Name": { + "en": "Season" + }, + "Code": "8.4.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06341e45-c407-49d0-98d8-74ecc303fb02", + "Name": { + "en": "End a relationship" + }, + "Code": "4.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "063e0810-8e49-44ef-aa8f-bb9e63bb66dd", + "Name": { + "en": "Buy" + }, + "Code": "6.8.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0644f4da-c9fe-4239-bbe5-6efc85f98968", + "Name": { + "en": "Working with land" + }, + "Code": "6.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0656cd5e-641f-46f3-bcad-6f643727a344", + "Name": { + "en": "Recently" + }, + "Code": "8.4.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0656f6a7-9a88-4c03-a8ab-ace8c0f52ebf", + "Name": { + "en": "Illegitimate child" + }, + "Code": "4.1.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06905a7e-47f4-4c86-afea-a4175295b566", + "Name": { + "en": "Knock over" + }, + "Code": "7.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0698b0f4-0a31-4a70-9262-8d36677d8faa", + "Name": { + "en": "Neglect plants" + }, + "Code": "6.2.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06a44085-cbcf-4217-ae5e-56c51899c99a", + "Name": { + "en": "Common" + }, + "Code": "8.3.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06a89652-70e0-40ac-b929-ed42f011c9fc", + "Name": { + "en": "Dead things" + }, + "Code": "1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06ac577a-4d61-4898-ac9d-e3f18b7504af", + "Name": { + "en": "Save from trouble" + }, + "Code": "4.4.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06b23bcd-69df-471a-b5a5-4ca8cab7f0d9", + "Name": { + "en": "Be about, subject" + }, + "Code": "3.5.1.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06be473e-c2f3-45fe-8522-3a0c033b5067", + "Name": { + "en": "Mark" + }, + "Code": "7.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06cb2024-5f7b-467c-b32c-ef4c56030ac0", + "Name": { + "en": "Telling time" + }, + "Code": "8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "07476166-c5e5-4701-97d3-d97de8b5be6f", + "Name": { + "en": "Know" + }, + "Code": "3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0772919e-eb4c-45e3-b705-73007f5e5583", + "Name": { + "en": "Monetary units" + }, + "Code": "6.8.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "07cf5182-d090-4432-817b-037895b5cd1d", + "Name": { + "en": "Lose wealth" + }, + "Code": "6.8.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "07e97f87-68ca-4d18-9f86-a326e0400947", + "Name": { + "en": "Line" + }, + "Code": "8.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "080bf07b-e58b-4a75-bb97-84d980a143f0", + "Name": { + "en": "Shape" + }, + "Code": "8.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08239f53-daa5-47a6-9f39-29a9064b0c27", + "Name": { + "en": "Join, attach" + }, + "Code": "7.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08244b88-bfba-487a-96bc-ca3771d1fa7c", + "Name": { + "en": "Start again" + }, + "Code": "8.4.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "084e2568-3f54-4eab-b436-8a87fb466659", + "Name": { + "en": "Working with stone" + }, + "Code": "6.6.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08788e9a-93b8-4a2e-ab01-dea177f061e8", + "Name": { + "en": "Feast" + }, + "Code": "5.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08c05e00-9660-4491-af2f-a05fab27ef39", + "Name": { + "en": "Thin person" + }, + "Code": "8.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08d5e632-0aed-4924-b3bb-d43de3420385", + "Name": { + "en": "Funeral" + }, + "Code": "2.6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "093eeea2-4ff6-4ee8-ad05-8af1702b7246", + "Name": { + "en": "Become, change state" + }, + "Code": "9.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "095c36bd-b74a-44f5-987b-85909e3f4c1d", + "Name": { + "en": "Forward" + }, + "Code": "8.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "09ac3709-0b0e-4046-b6b2-7869d574aa0d", + "Name": { + "en": "Names of continents" + }, + "Code": "9.7.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a1ad4c9-8bf3-448b-a27f-611813b305de", + "Name": { + "en": "Under, below" + }, + "Code": "8.5.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a1b26b2-2152-45e2-9b63-4a68fca73a90", + "Name": { + "en": "Musician" + }, + "Code": "4.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a27d9d1-0f1f-475a-92a2-bbccf5b15f41", + "Name": { + "en": "Hungry, thirsty" + }, + "Code": "5.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a37e7d5-b10e-4f1d-baf0-e71668425b3e", + "Name": { + "en": "Parts of an insect" + }, + "Code": "1.6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a42fd83-3b30-4c85-bb68-f5132e9ffeee", + "Name": { + "en": "Protect" + }, + "Code": "4.4.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a85ee64-e466-4295-8e2c-5b06c8e3054f", + "Name": { + "en": "Press" + }, + "Code": "7.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0aaacffe-9b6c-49a7-bf68-c0f9ff3e120e", + "Name": { + "en": "Most, least" + }, + "Code": "8.1.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0aae0254-dc06-4906-8ecf-2d8450fb83f1", + "Name": { + "en": "Lie down" + }, + "Code": "7.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0aae1951-4d5b-45a0-853c-1839764c9862", + "Name": { + "en": "Short, not tall" + }, + "Code": "8.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae", + "Name": { + "en": "Mountain" + }, + "Code": "1.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ac81210-20ff-4a89-948f-5d154668f05c", + "Name": { + "en": "Independent person" + }, + "Code": "4.1.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0add0775-0ed0-46be-ba4a-76310e63a036", + "Name": { + "en": "Leaning, sloping" + }, + "Code": "8.3.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b0801a3-8a0c-40ea-bf41-07df80bd0d5f", + "Name": { + "en": "Dry" + }, + "Code": "1.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b7b9a1c-588b-475a-ac14-00f0999cbfe9", + "Name": { + "en": "Peace" + }, + "Code": "4.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b7bfd0a-249c-45b6-9427-2c17ae00bf37", + "Name": { + "en": "Cordage" + }, + "Code": "6.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b98fb79-222f-418c-8107-5d4e791d329c", + "Name": { + "en": "Management" + }, + "Code": "6.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0bbe1739-e0b4-442e-b69c-02a0ea20d790", + "Name": { + "en": "Dive" + }, + "Code": "7.2.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0bc02285-8e70-442a-8d08-e04d922507c8", + "Name": { + "en": "Art" + }, + "Code": "6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84", + "Name": { + "en": "Acquit" + }, + "Code": "4.7.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0c21ae3d-10b1-481f-8d8f-66e2590c4578", + "Name": { + "en": "Lazy" + }, + "Code": "6.1.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0c7c33f2-4cfa-42df-84bb-19fc915a72bd", + "Name": { + "en": "Copy" + }, + "Code": "8.3.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ca05184-08b9-4dc7-a4c7-ff762380b111", + "Name": { + "en": "Pay" + }, + "Code": "6.8.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a", + "Name": { + "en": "Time of the day" + }, + "Code": "8.4.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ce61f27-9de8-49b2-9189-6f6efe488f6d", + "Name": { + "en": "Search" + }, + "Code": "7.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d38c343-9c51-47fe-a367-ffadfc92c507", + "Name": { + "en": "Young" + }, + "Code": "8.4.6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d427d55-d63e-4a35-a66a-5e4dce0a963e", + "Name": { + "en": "Different" + }, + "Code": "8.3.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d63adce-41dd-4873-b0bf-331d0205e65d", + "Name": { + "en": "Exist" + }, + "Code": "9.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d7409ab-fc1f-4680-b040-d91d7004084f", + "Name": { + "en": "Interrupt" + }, + "Code": "8.4.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d935e77-e437-426f-acff-dccfb516ec8c", + "Name": { + "en": "Busy" + }, + "Code": "6.1.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d972590-5947-4983-a092-443697baec24", + "Name": { + "en": "Agricultural tool" + }, + "Code": "6.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0db5817e-05bf-4703-a6b9-e239ac44f857", + "Name": { + "en": "Male, female" + }, + "Code": "2.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0de28f92-c851-413c-bb6c-3ad21f5e267f", + "Name": { + "en": "Listen" + }, + "Code": "2.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e250e72-6c3f-424f-9e62-2dcc9729d817", + "Name": { + "en": "Number series" + }, + "Code": "8.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e590da7-c027-42e0-b580-f65686cee461", + "Name": { + "en": "Surprise" + }, + "Code": "3.4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e5a6bd0-470f-4231-9f57-a73b725807f4", + "Name": { + "en": "First fruits" + }, + "Code": "6.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e79435b-f5ff-4061-81ff-49557ba2aed4", + "Name": { + "en": "Relationships" + }, + "Code": "4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ebf9fcc-ee38-4f5f-ab5e-c76e199ef7ae", + "Name": { + "en": "Plural" + }, + "Code": "8.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0eda983b-633e-4b11-b5c8-28be60067782", + "Name": { + "en": "Risk" + }, + "Code": "4.4.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ede51d2-69bd-411e-97f9-da0d5118bbff", + "Name": { + "en": "Condemn, find guilty" + }, + "Code": "4.7.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ee5b933-f1ab-485f-894a-51fe239cb726", + "Name": { + "en": "Tree" + }, + "Code": "1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0eefa07a-e0a3-49e3-aeb4-62f1eafd8e23", + "Name": { + "en": "Semantically similar events" + }, + "Code": "9.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0efe342d-4969-4bd1-95be-556f6c62adfc", + "Name": { + "en": "Conform" + }, + "Code": "4.3.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f07adb7-4387-4723-9800-8362e825ad45", + "Name": { + "en": "Rock" + }, + "Code": "1.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f323bee-0d8a-4564-9691-87880f55d910", + "Name": { + "en": "Provide for, support" + }, + "Code": "4.3.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f46cb61-7bb5-410d-abc5-4a75dc80a24f", + "Name": { + "en": "Disbelief" + }, + "Code": "3.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f568473-880d-43bd-b5ce-590100fdcaf6", + "Name": { + "en": "Eat" + }, + "Code": "5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f7c4d2f-ed94-49ba-a91c-fba36193f35a", + "Name": { + "en": "Price" + }, + "Code": "6.8.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f883eb0-00a1-44cc-b719-97fb6ec145d4", + "Name": { + "en": "Daily life" + }, + "Code": "5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f983449-1c43-4974-b388-7695b1af4bfa", + "Name": { + "en": "Countryside" + }, + "Code": "4.6.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0fa0be21-2246-40b2-86b1-ca572fe8c16c", + "Name": { + "en": "Uninterested, bored" + }, + "Code": "3.4.1.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0fabc72a-ce97-41f3-8a2d-2f27eae09499", + "Name": { + "en": "Square" + }, + "Code": "8.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0fef044a-c822-450d-b54a-eac8621e50c2", + "Name": { + "en": "Wood" + }, + "Code": "6.6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "100e62a6-b6f4-4b30-b317-0517d6b102a9", + "Name": { + "en": "Shy, timid" + }, + "Code": "3.4.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1017cbc3-0dfb-4930-9881-28f96784035c", + "Name": { + "en": "Move quickly" + }, + "Code": "7.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "101c16f8-ec76-4ec7-895a-fd814fef51dd", + "Name": { + "en": "Treat disease" + }, + "Code": "2.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "104d40c9-2a4f-4696-ad99-5cf0eb86ab2e", + "Name": { + "en": "Recover from sickness" + }, + "Code": "2.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "106c2c42-36fd-4b0a-94f7-e998f6eae6f5", + "Name": { + "en": "Curse" + }, + "Code": "4.9.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1082c52b-490a-4eec-acf1-7016796dafd9", + "Name": { + "en": "To a small degree" + }, + "Code": "9.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1088cc2f-83ae-4911-8018-401a745dcfd5", + "Name": { + "en": "Night" + }, + "Code": "8.4.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "10a82711-8829-461a-b172-fc8fff3d555c", + "Name": { + "en": "Dog" + }, + "Code": "6.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "10b6c417-d020-4318-a44a-ae69ea3eec5a", + "Name": { + "en": "Change something" + }, + "Code": "9.1.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1133ad78-9ce9-46aa-b181-bb6f7a84a07b", + "Name": { + "en": "Near" + }, + "Code": "8.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1137590c-6f2f-4b69-b04e-f6a890a335a2", + "Name": { + "en": "Refuse to do something" + }, + "Code": "3.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1148684a-0f44-4b5a-9e3e-3823163cd4a1", + "Name": { + "en": "Announce" + }, + "Code": "3.5.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "11665f1d-aca9-4699-afb2-bcdea69c6645", + "Name": { + "en": "Important" + }, + "Code": "8.3.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "116bef13-e80f-4a15-bb0a-bb7b3794ffac", + "Name": { + "en": "Patient-related cases" + }, + "Code": "9.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "11cf45ec-f9d6-4c99-8782-738e26a342c8", + "Name": { + "en": "Take something from somewhere" + }, + "Code": "7.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1229dd8f-5cfc-4644-93c3-d256fc34d054", + "Name": { + "en": "Christianity" + }, + "Code": "4.9.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12781062-ee36-4703-9bc0-cee4ed467ee5", + "Name": { + "en": "Newspaper" + }, + "Code": "3.5.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12a028d1-d910-4011-ab9d-59be69daaf65", + "Name": { + "en": "React, respond" + }, + "Code": "9.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12b6934d-3a4a-4623-995f-865f401349ab", + "Name": { + "en": "Manner of eating" + }, + "Code": "5.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12d752d5-53a9-46f6-9e81-3153401cc760", + "Name": { + "en": "Plan a time" + }, + "Code": "8.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12f12bf3-f232-4477-bf39-d91b7f55c2c3", + "Name": { + "en": "Often" + }, + "Code": "8.4.6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12fe5f6c-7f98-47ba-936a-bcd1065c2db3", + "Name": { + "en": "Move in a direction" + }, + "Code": "7.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "130e2cbb-7e51-4f6f-a1cf-7a053a44c9b7", + "Name": { + "en": "Decorated" + }, + "Code": "8.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "134c68a9-ac3f-4b7e-8fca-63642d796a75", + "Name": { + "en": "Citizen" + }, + "Code": "4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "139409c3-7860-4586-897f-85ba3226046c", + "Name": { + "en": "Without result " + }, + "Code": "9.6.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "139cd00c-429c-465a-a227-512af0c48039", + "Name": { + "en": "Growing cassava" + }, + "Code": "6.2.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13df6ee2-4189-4faa-b54d-768588d03978", + "Name": { + "en": "Reflexive pronouns" + }, + "Code": "9.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13e67cc9-055b-4f9b-9217-a16b18db0329", + "Name": { + "en": "Think so" + }, + "Code": "9.4.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13edbeff-8913-49ef-8f02-777f86fb512d", + "Name": { + "en": "Association" + }, + "Code": "9.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13f62fa1-589c-4a46-9bbc-b0fd1001e21f", + "Name": { + "en": "Imprison" + }, + "Code": "4.7.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1438c623-c4ce-4559-b71b-cfb86a71e6d7", + "Name": { + "en": "Light a fire" + }, + "Code": "5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1447278f-efff-4807-b9ea-c487dea1ba5e", + "Name": { + "en": "Food from seeds" + }, + "Code": "5.2.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1461c106-d9e0-417d-9487-a57e6d0cced0", + "Name": { + "en": "Below standard" + }, + "Code": "4.3.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "147c2e58-9ae8-460f-8cab-bf04a668945d", + "Name": { + "en": "Prophecy" + }, + "Code": "4.9.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14954a0f-5c8a-4680-90b0-53398bd3a2a7", + "Name": { + "en": "Known, unknown" + }, + "Code": "3.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14a32765-81b0-411e-89fa-91e092a70818", + "Name": { + "en": "Call" + }, + "Code": "3.5.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14ad95ad-50fc-450f-b44d-4273df0b1e8b", + "Name": { + "en": "Period of time" + }, + "Code": "8.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "15947464-997a-4f44-9a4b-ac4916e7e19b", + "Name": { + "en": "Adornment" + }, + "Code": "5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "15e0b54b-bb7c-4900-b048-20b718d05f79", + "Name": { + "en": "Markers of focus" + }, + "Code": "9.6.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "15fb022e-1b45-41e9-bd8a-09ddc9dc6acd", + "Name": { + "en": "Determined" + }, + "Code": "3.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16081dd6-72e5-4826-b86d-958dd82a01c0", + "Name": { + "en": "Move down" + }, + "Code": "7.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "161cae07-d1cb-467c-920f-62ba9039584c", + "Name": { + "en": "Travel in space" + }, + "Code": "7.2.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1621aac3-4ea9-4373-bf1b-40fce0ca7b5e", + "Name": { + "en": "Lack" + }, + "Code": "8.1.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "167a5bae-f06f-424c-bfcb-ec547a076c8d", + "Name": { + "en": "Tend herds in fields" + }, + "Code": "6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "167bfba5-0785-4bb5-a083-3ffbefa57897", + "Name": { + "en": "Evaluate, test" + }, + "Code": "3.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1688280e-27c4-47a8-87b7-8fe31b174ab8", + "Name": { + "en": "Test" + }, + "Code": "3.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1689ac96-1159-4575-bf5f-d16345f9496c", + "Name": { + "en": "Era" + }, + "Code": "8.4.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16d2c60a-52d7-4ec5-a5b1-c559dc078bf3", + "Name": { + "en": "Police" + }, + "Code": "4.6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16dbd62c-f60d-4530-ba4e-0e74221e4681", + "Name": { + "en": "Hide your thoughts" + }, + "Code": "3.5.1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16de6eab-afab-4ba4-a279-cf0ba4d7c9e6", + "Name": { + "en": "Animal color, marking" + }, + "Code": "8.3.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16ee1e09-27ad-48c5-aa07-6933ecbbc716", + "Name": { + "en": "Hard, firm" + }, + "Code": "8.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "17102138-b97a-4f1d-81bc-9be4af90889e", + "Name": { + "en": "Lose a fight" + }, + "Code": "4.8.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "17851b86-f8fb-4850-9b33-c1a9fcb0aec1", + "Name": { + "en": "Show hospitality" + }, + "Code": "4.2.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "17d5f429-6550-4a3a-a755-5ac3c3d7e04f", + "Name": { + "en": "Animal home" + }, + "Code": "1.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18043b8c-3ff0-46a5-87cc-626f62f967cc", + "Name": { + "en": "Growing coconuts" + }, + "Code": "6.2.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "180a2220-942c-4e17-96ee-cd4f63a4c715", + "Name": { + "en": "Soil, dirt" + }, + "Code": "1.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18595df7-1c69-40db-a7c1-74d490115c0c", + "Name": { + "en": "Blow air" + }, + "Code": "1.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1886ffc9-0a18-41ea-b2f6-c17c297f1681", + "Name": { + "en": "Science" + }, + "Code": "3.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "189f8c29-f0ff-44b6-a0db-5b287c412a75", + "Name": { + "en": "Hostility" + }, + "Code": "4.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18a6684f-d324-45ee-855c-44d473916b14", + "Name": { + "en": "Aspectual time" + }, + "Code": "8.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18b3ca02-18fe-4ab5-8709-c20957a0a2fb", + "Name": { + "en": "Proud" + }, + "Code": "4.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18bf6c79-6399-4977-be3d-93135302d8c4", + "Name": { + "en": "Purpose " + }, + "Code": "9.6.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "191ca5a5-0a67-426e-adfc-6fdf7c2aaa2c", + "Name": { + "en": "House" + }, + "Code": "6.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "196bf7b1-54a1-4a78-8d10-c61585849c63", + "Name": { + "en": "Accompany" + }, + "Code": "7.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "196f81d0-6a1a-4cc0-936a-367423ff485c", + "Name": { + "en": "Trap" + }, + "Code": "6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "198436ae-c3c6-4f3c-8fe0-ea10c867f1c6", + "Name": { + "en": "Growing grass" + }, + "Code": "6.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "19d54c2f-ae03-4cbc-9b7e-57292f92fbc1", + "Name": { + "en": "Pursue" + }, + "Code": "7.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "19fea936-30d1-482f-a103-1c5549b19745", + "Name": { + "en": "Twist, wring" + }, + "Code": "8.3.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1a28d255-8f58-428c-9641-59f17f8b1e08", + "Name": { + "en": "Tear down" + }, + "Code": "7.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1a635032-6e13-4a56-aa03-6c6a015c502e", + "Name": { + "en": "Unsure" + }, + "Code": "9.4.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1a8322d7-cda9-41e5-a14b-f41274cb7157", + "Name": { + "en": "Right, left" + }, + "Code": "8.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b0270a5-babf-4151-99f5-279ba5a4b044", + "Name": { + "en": "Body" + }, + "Code": "2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b3dccfe-29e4-478e-8443-17be9454a05a", + "Name": { + "en": "Leave something" + }, + "Code": "7.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b4f987d-3eaa-46dd-95ee-e0cb1f30cfbb", + "Name": { + "en": "In general" + }, + "Code": "9.6.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf", + "Name": { + "en": "Many, much" + }, + "Code": "8.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b73b2bf-9582-4f8a-822a-e0d020272c7c", + "Name": { + "en": "Follow" + }, + "Code": "7.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1bd42665-0610-4442-8d8d-7c666fee3a6d", + "Name": { + "en": "Moon" + }, + "Code": "1.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c0c4951-03b6-49b8-8a8e-724397cfd5a7", + "Name": { + "en": "Obsessed" + }, + "Code": "3.4.1.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c3c8af0-56b9-4617-862e-21f39b388606", + "Name": { + "en": "Die" + }, + "Code": "2.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c3f8996-362e-4ee0-af02-0dd02887f6aa", + "Name": { + "en": "Heaven, hell" + }, + "Code": "4.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c512719-6ecb-48cb-980e-4ff20e8b5f9b", + "Name": { + "en": "Spirits of things" + }, + "Code": "1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c8da3aa-3c74-4188-8949-5ab82fc1f99c", + "Name": { + "en": "Every time" + }, + "Code": "8.4.6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1ca26512-75f6-4a7a-a7cc-07d08aa799d9", + "Name": { + "en": "Repent" + }, + "Code": "4.8.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1cb79293-d4f7-4990-9f50-3bb595744f61", + "Name": { + "en": "Soul, spirit" + }, + "Code": "3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1d34380d-61bf-4247-9145-ba318a14a97e", + "Name": { + "en": "Piece" + }, + "Code": "8.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1d5c798b-0f2d-49f2-bde6-cbcf2ef8fd02", + "Name": { + "en": "Disagree" + }, + "Code": "3.2.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1d8633e0-4279-4ddc-826e-16aa08a977e5", + "Name": { + "en": "Bone, joint" + }, + "Code": "2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1da9c4f4-8ae2-47d9-8068-ff65fa3848a9", + "Name": { + "en": "Repay debt" + }, + "Code": "6.8.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1dc717b9-c5e8-4482-b076-22102da9d553", + "Name": { + "en": "Break the law" + }, + "Code": "4.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1de2cef5-3a2d-45c1-8cb6-06b2ac087907", + "Name": { + "en": "Subordinating particles" + }, + "Code": "9.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1e102423-6167-486a-bfef-dad1c9cdf1eb", + "Name": { + "en": "Vehicle" + }, + "Code": "7.2.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1e419f7a-7363-46bc-8044-157ed0b40ccd", + "Name": { + "en": "Hold" + }, + "Code": "7.3.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1e9a0881-f715-4057-9af8-251cb8eec9da", + "Name": { + "en": "Voice" + }, + "Code": "3.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1ec85151-eba0-48f4-b56d-4f8040602a4b", + "Name": { + "en": "Inherit" + }, + "Code": "2.6.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1f3519f8-d946-4857-a1fd-553d98dddf6d", + "Name": { + "en": "Stupid" + }, + "Code": "3.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1f4efae7-1029-4b66-80ee-802459a7baf5", + "Name": { + "en": "Relative time" + }, + "Code": "8.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1f608e18-958e-4bb3-a977-04879fb5acd5", + "Name": { + "en": "Food from animals" + }, + "Code": "5.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1fa683b9-78fd-4feb-9978-55d5953f38ec", + "Name": { + "en": "Subject of teaching" + }, + "Code": "3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1fd8a8d6-6795-4a5b-90e0-342e8b0975a1", + "Name": { + "en": "Explode" + }, + "Code": "6.6.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1fda68d4-5941-4695-b656-090d603a3344", + "Name": { + "en": "Food preparation" + }, + "Code": "5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1ff743cb-49e0-483d-8a1d-4603a7d6c395", + "Name": { + "en": "Decrease" + }, + "Code": "8.1.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "203f46d2-f0d0-4dda-8d1a-ddc15065b005", + "Name": { + "en": "Parts of a reptile" + }, + "Code": "1.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "20baa5e7-4f02-4782-a292-c6281d7b5f3a", + "Name": { + "en": "Push" + }, + "Code": "7.3.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "20e7d987-0d55-46d4-ab69-0b0cce2f1e24", + "Name": { + "en": "Leave" + }, + "Code": "7.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "20fadd54-6cec-4bb3-a47c-66c29aaff227", + "Name": { + "en": "Avoid" + }, + "Code": "4.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21167445-f1b1-49b4-b147-bc792616c432", + "Name": { + "en": "Time" + }, + "Code": "8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21461d78-02f9-4be6-80e3-6a4498ce8f4c", + "Name": { + "en": "Prisoner of war" + }, + "Code": "4.8.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2158eb7d-eb59-4740-9628-9080d7f51a97", + "Name": { + "en": "Wake up" + }, + "Code": "5.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "218c1d59-0ebb-4936-b9cf-0a93e88aa729", + "Name": { + "en": "Hopeless" + }, + "Code": "3.2.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21a284ab-b9a3-42c8-8fb9-96aff1e1fe8f", + "Name": { + "en": "Towards" + }, + "Code": "8.5.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21bcc306-13cb-4162-98b3-2ba319ba14ea", + "Name": { + "en": "Jewel" + }, + "Code": "1.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21ebc64a-a1b8-45bd-b7f6-143a053f1d31", + "Name": { + "en": "Basketball" + }, + "Code": "4.2.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21f21658-a69a-491c-a37b-156a8f4ad3fb", + "Name": { + "en": "Wrong, unsuitable" + }, + "Code": "8.3.7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "22300e2c-3d7d-4c36-a2b7-e2bbb247f793", + "Name": { + "en": "Growing coffee" + }, + "Code": "6.2.1.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "225c48dd-9fc2-4467-944f-16a098b4e518", + "Name": { + "en": "Defeat" + }, + "Code": "4.8.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2265a4bd-379d-4a9d-80d5-2318e6c8c683", + "Name": { + "en": "Inside" + }, + "Code": "8.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "22acd714-b11e-462a-bd8e-6ff50843c103", + "Name": { + "en": "Parts of a building" + }, + "Code": "6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "22e8f542-0ab1-4f25-af50-fd0d02917fda", + "Name": { + "en": "Figurative" + }, + "Code": "3.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23190f9e-2db2-4ef9-8c0e-495dbef05571", + "Name": { + "en": "Attract sexually" + }, + "Code": "2.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2330813b-7413-41a8-8eb2-ae138511c953", + "Name": { + "en": "Bright" + }, + "Code": "8.3.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2351f52a-8822-46ad-99c4-7ef526e94a6f", + "Name": { + "en": "Again" + }, + "Code": "8.4.6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23b1a6b4-8d91-425c-b8c2-52d06b1c1d23", + "Name": { + "en": "Break" + }, + "Code": "7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23bc906d-c15a-4368-b0ca-7443d5e37b83", + "Name": { + "en": "Cause" + }, + "Code": "9.6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23fa2115-3979-472c-8939-4db8d54e4c98", + "Name": { + "en": "Opposite" + }, + "Code": "8.3.5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23fb1571-c04e-4850-b499-f170bc45247f", + "Name": { + "en": "Poor eyesight" + }, + "Code": "2.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "24361be2-49be-4860-bb56-4e46dd1e8b0c", + "Name": { + "en": "Taboo" + }, + "Code": "4.9.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "24398eec-edd1-449a-ad36-d609be24a79e", + "Name": { + "en": "Have, be with" + }, + "Code": "7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "243d8a57-d5ed-4d7f-bd5e-f2605634f0fc", + "Name": { + "en": "Defend" + }, + "Code": "4.8.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2470ad05-636e-4c85-96ab-cd880da58741", + "Name": { + "en": "Religious organization" + }, + "Code": "4.9.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "24d3d7f9-0fda-4759-930b-6b721d3e9115", + "Name": { + "en": "Adverbs" + }, + "Code": "9.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "250a52e4-ede0-427d-8382-46a5742d4f96", + "Name": { + "en": "Hospital" + }, + "Code": "2.5.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "250baab9-5a31-493c-95ea-9fee8baf9fd5", + "Name": { + "en": "Graceful" + }, + "Code": "7.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "251b17bd-5796-43ce-ba10-54140a99a1e0", + "Name": { + "en": "Equivalence" + }, + "Code": "9.6.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "252886c4-9317-4c6b-a69e-13520eb89736", + "Name": { + "en": "Welcome, receive" + }, + "Code": "4.2.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "25763563-5ad6-4b4d-9073-3fc88f6dd44e", + "Name": { + "en": "Nature, character" + }, + "Code": "8.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2594fe01-4d20-4a20-b093-2df70bced18f", + "Name": { + "en": "Stretch" + }, + "Code": "8.3.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "25bf6690-6ed1-42e9-8a4a-3518f9cf382c", + "Name": { + "en": "Theology" + }, + "Code": "4.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2608bcf8-ed20-4501-8510-4ecacf922dd4", + "Name": { + "en": "Wrap" + }, + "Code": "7.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2621e605-3ecc-4f3d-b28c-f8c92b3c4584", + "Name": { + "en": "Texture" + }, + "Code": "8.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2629943b-3a69-4c6b-9956-2aa59ebd03d3", + "Name": { + "en": "History" + }, + "Code": "3.5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "262fc4ae-7735-465b-934b-2125d95de147", + "Name": { + "en": "Jealous" + }, + "Code": "3.4.2.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "265f5645-94cb-485c-8bf9-0a3ab2354f63", + "Name": { + "en": "Coordinate relations" + }, + "Code": "9.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "267b98aa-e17c-4ebb-a752-ed4210701867", + "Name": { + "en": "Notice" + }, + "Code": "3.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26b97047-edb1-44e9-8c7b-463de9cfbe78", + "Name": { + "en": "Sheep" + }, + "Code": "6.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26bc089a-a989-4763-be6c-05d127d1c0e8", + "Name": { + "en": "Deliberately" + }, + "Code": "3.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26d32f3e-ced6-45fc-afd0-7e017fa252c6", + "Name": { + "en": "Riddle" + }, + "Code": "3.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26fb2e94-b8fe-4216-9057-ca17a71df83b", + "Name": { + "en": "Relaxed" + }, + "Code": "3.4.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "27048124-c204-4585-9997-c51728f085d6", + "Name": { + "en": "Thank" + }, + "Code": "3.5.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "273f4956-f79f-4b1e-b552-466280a65e60", + "Name": { + "en": "Show, let someone see" + }, + "Code": "2.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2810998c-d6cc-47a3-a946-66d0986a2767", + "Name": { + "en": "Move something" + }, + "Code": "7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "284433df-7b37-4e63-a614-78520c483213", + "Name": { + "en": "Animal movement" + }, + "Code": "1.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2854734e-834a-42cb-8812-d9e7028916dc", + "Name": { + "en": "Growing vegetables" + }, + "Code": "6.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2855cda6-a031-46aa-bf3f-718d94374d46", + "Name": { + "en": "Protest" + }, + "Code": "3.2.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "286ee16c-a218-43d5-bbac-ab15f80c3fcf", + "Name": { + "en": "Enough" + }, + "Code": "8.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28a37d39-8347-4254-99bf-8e3c37dbf8a8", + "Name": { + "en": "Set upright" + }, + "Code": "7.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28a68cea-9128-4d5c-8542-8df38c907310", + "Name": { + "en": "Set free" + }, + "Code": "7.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28ba8f5c-5baa-4500-a6f5-be292caa673f", + "Name": { + "en": "Disobey" + }, + "Code": "4.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28e874fb-b2e7-4afa-a4d7-600306ad2583", + "Name": { + "en": "Exercise" + }, + "Code": "4.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "290f0994-ce8e-4922-975f-fa091f566823", + "Name": { + "en": "Relief" + }, + "Code": "4.4.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2933a9c1-aa62-46fb-a03c-68aed7fae9b7", + "Name": { + "en": "Burn" + }, + "Code": "5.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "295dc021-5b50-47b3-8340-1631c6d6fadc", + "Name": { + "en": "Comfortable" + }, + "Code": "2.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "29a8ebbe-ebc4-4295-b6af-84331d019361", + "Name": { + "en": "Word" + }, + "Code": "3.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "29d131d2-5e52-49e3-83b1-c872d331cf03", + "Name": { + "en": "Useless" + }, + "Code": "6.1.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2a2af155-9db9-41c5-860a-fe0a3a09d6de", + "Name": { + "en": "Think about" + }, + "Code": "3.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2a62f8e4-7da3-4f37-bf44-e24033c99c00", + "Name": { + "en": "Angry" + }, + "Code": "3.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2aabd548-5ee2-4962-8f10-84d1b0427c41", + "Name": { + "en": "Endure" + }, + "Code": "4.4.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b27b8ca-188e-44ad-aa86-ffa1f99106e3", + "Name": { + "en": "Add to something" + }, + "Code": "7.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b2bedd5-3f9c-4c18-a256-aa65ee19f15c", + "Name": { + "en": "Compatible" + }, + "Code": "8.3.7.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b6f9af7-04ee-4030-a2cd-87d55959caa8", + "Name": { + "en": "Afraid" + }, + "Code": "3.4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b846476-00cf-4d82-97a1-26e1eda880ca", + "Name": { + "en": "Immature in behavior" + }, + "Code": "4.3.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b893d04-3450-4862-b046-7df6f87272f6", + "Name": { + "en": "Finance" + }, + "Code": "6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c04fa05-eebf-4331-b392-23f795c32382", + "Name": { + "en": "One" + }, + "Code": "8.1.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c143278-3ea0-49c6-9e50-e0bf7c8cf4e2", + "Name": { + "en": "Indefinite location" + }, + "Code": "8.5.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c322d8b-d762-43ce-b905-aab41f9c7bbb", + "Name": { + "en": "Bat" + }, + "Code": "1.6.1.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c401e7f-6ce9-470f-b6b6-fadf7a798536", + "Name": { + "en": "Rest" + }, + "Code": "2.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c42f822-2079-440c-b3b7-7725b6a8db8b", + "Name": { + "en": "Stop something" + }, + "Code": "8.4.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c576c40-17ae-45a7-9ec8-6c16e02ab9c3", + "Name": { + "en": "Clause conjunctions" + }, + "Code": "9.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2cc624fa-76cb-46ab-87c8-c13c6adb1c72", + "Name": { + "en": "Go" + }, + "Code": "7.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2ccab97a-fb98-4054-a29b-e5ceac8ca1b4", + "Name": { + "en": "Worship" + }, + "Code": "4.9.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2cccfd92-de45-42c2-83f7-1e0ef7dfddc1", + "Name": { + "en": "Unique" + }, + "Code": "8.3.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2cd48908-8f12-4e0f-a22e-87237618ce9f", + "Name": { + "en": "Vindicate" + }, + "Code": "4.7.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d0b3058-d8bb-4110-a54a-e507b0d3a0e4", + "Name": { + "en": "Heart" + }, + "Code": "2.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d563d27-8ac3-41c9-b326-856c9e1f6401", + "Name": { + "en": "Concave" + }, + "Code": "8.3.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d5d634e-75b5-4921-922e-573a809a49f8", + "Name": { + "en": "Make" + }, + "Code": "9.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d894eca-8f6c-4b63-b265-0914a65d9be9", + "Name": { + "en": "Alcoholic beverage" + }, + "Code": "5.2.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d92e248-1512-4e89-b886-425814c6dd32", + "Name": { + "en": "Chess" + }, + "Code": "4.2.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2daede19-ce5f-46b6-ae68-32d6092441f1", + "Name": { + "en": "Energetic" + }, + "Code": "2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2dca9338-85cb-4f58-b40d-d2d759e8edd6", + "Name": { + "en": "Location" + }, + "Code": "8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e09535f-f61f-4ff5-8d56-23c2916cbb7f", + "Name": { + "en": "Rough" + }, + "Code": "8.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e2a17ba-9d81-4a3d-8af5-96c8f0e39e7e", + "Name": { + "en": "Store wealth" + }, + "Code": "6.8.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819", + "Name": { + "en": "Disappointed" + }, + "Code": "3.4.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e5a80f9-35ae-4850-9627-be530832a781", + "Name": { + "en": "Honorifics " + }, + "Code": "9.6.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e5acfd2-3009-4496-9cc2-58d2a0088994", + "Name": { + "en": "Hair" + }, + "Code": "2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180", + "Name": { + "en": "Arrange a marriage" + }, + "Code": "2.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e97b83d-1152-473f-9cbe-347f0655041a", + "Name": { + "en": "Ear" + }, + "Code": "2.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e9f06f3-c986-43da-a035-e3cc9aef13d4", + "Name": { + "en": "Job satisfaction" + }, + "Code": "6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2eba12c6-7817-4dfd-9e7c-94c8b8b389ef", + "Name": { + "en": "Prohibited food" + }, + "Code": "5.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2f151c35-72e1-4665-bc05-6fc70a3ecff2", + "Name": { + "en": "Ugly" + }, + "Code": "2.3.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2f28f1ab-476e-4317-8787-124d95d6b9d2", + "Name": { + "en": "Concession" + }, + "Code": "9.6.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2f98291a-47a7-4b7b-9256-2c0249105be1", + "Name": { + "en": "Various" + }, + "Code": "8.3.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2fc69f71-e9f1-45f9-b88e-bdaf97457fc3", + "Name": { + "en": "Quick" + }, + "Code": "8.4.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3005971d-de4d-401f-8400-b25de5e052ad", + "Name": { + "en": "Middle" + }, + "Code": "8.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3014de03-88e5-4330-9682-51963a41ca50", + "Name": { + "en": "Shark, ray" + }, + "Code": "1.6.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3022c764-ba88-41d0-94db-393312214f4e", + "Name": { + "en": "Possession, property" + }, + "Code": "6.8.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "303539ba-7253-4590-b8c4-7751caa52c65", + "Name": { + "en": "Power, force" + }, + "Code": "6.1.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30b3faa8-747e-465f-833a-a9957a259be2", + "Name": { + "en": "Separate, scatter" + }, + "Code": "7.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce", + "Name": { + "en": "Good, moral" + }, + "Code": "4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30ea3057-753d-4c4c-9b1f-ed30e569feea", + "Name": { + "en": "Court of law" + }, + "Code": "4.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30fff450-1aa5-4993-9c14-c8019a5f072e", + "Name": { + "en": "But" + }, + "Code": "9.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31171aa9-e243-4b46-abd8-f3e52843cdfc", + "Name": { + "en": "Marsupial" + }, + "Code": "1.6.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "312ce7a7-8c7c-416d-bf93-73376f1f16d8", + "Name": { + "en": "Glory" + }, + "Code": "8.3.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "313a65bf-450f-48da-8903-a43247f1a5f8", + "Name": { + "en": "Make hole, opening" + }, + "Code": "7.8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "313ca832-ce91-44c9-bb35-bd130c39d924", + "Name": { + "en": "Sharp" + }, + "Code": "8.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31426c31-9439-406c-9867-bc98c6ca0565", + "Name": { + "en": "Growing sugarcane" + }, + "Code": "6.2.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "314c8fea-4bdb-4bc8-ab67-a26a9c5abbd4", + "Name": { + "en": "Stiff, flexible" + }, + "Code": "8.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3160b7ad-e4e8-4a46-8e2e-d5e601969547", + "Name": { + "en": "Story" + }, + "Code": "3.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "316f27aa-ed6d-4bc3-9d14-840946a6f4e9", + "Name": { + "en": "General adjectives" + }, + "Code": "9.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31777669-e37b-4b77-9cce-0d8c33f6ebb9", + "Name": { + "en": "Swamp" + }, + "Code": "1.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3180b6aa-3ad9-4bd3-96f7-ae72264406fb", + "Name": { + "en": "Return something" + }, + "Code": "7.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31ccb9e3-d434-4430-ac84-486cc5a1c53d", + "Name": { + "en": "Difficult, impossible" + }, + "Code": "6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31dc3d15-c6f8-4405-a33b-8f3a52f8671a", + "Name": { + "en": "Beverage" + }, + "Code": "5.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31e0fde8-b3ab-47ae-b791-54309e6ed0bd", + "Name": { + "en": "Modern" + }, + "Code": "8.4.6.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32125c5f-d69a-442f-ba66-6277ec0a3b15", + "Name": { + "en": "Food from plants" + }, + "Code": "5.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "321d0a74-705f-40bf-8d24-809f65bee895", + "Name": { + "en": "Aspect--stative verbs" + }, + "Code": "9.4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32bebe7e-bdcc-4e40-8f0a-894cd6b26f25", + "Name": { + "en": "Healthy" + }, + "Code": "2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32bf055a-d666-4d6e-a3c6-6c984e2c9868", + "Name": { + "en": "Telephone" + }, + "Code": "3.5.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32cf3835-bced-4ea1-9c7a-f7ff653e59fe", + "Name": { + "en": "Grave" + }, + "Code": "2.6.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32d5b3de-0500-4ad6-b94e-20b8001d0a91", + "Name": { + "en": "Move noisily" + }, + "Code": "7.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32f868e0-54a7-4d04-8689-ac10e13396e5", + "Name": { + "en": "Cut grass" + }, + "Code": "6.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32fc19fd-a04e-4b69-9442-f7d57348ec55", + "Name": { + "en": "Cattle" + }, + "Code": "6.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "33037a4d-3454-4c59-9a61-c5fb747f107a", + "Name": { + "en": "Working with bricks" + }, + "Code": "6.6.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3389561c-f264-48b9-b94c-86c33fc3c423", + "Name": { + "en": "Average" + }, + "Code": "8.1.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3393b3b2-b324-408d-9c59-057a0de9c3bd", + "Name": { + "en": "Try, attempt" + }, + "Code": "6.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "339ee46b-d69a-4f2e-8fba-d1b2adff763b", + "Name": { + "en": "Generous" + }, + "Code": "6.8.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "339f54a5-125b-435f-bf37-cfc2a2bd26d3", + "Name": { + "en": "Facial expression" + }, + "Code": "3.5.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3420b36a-a033-4af9-a8c4-53f8221ee56e", + "Name": { + "en": "Away from" + }, + "Code": "8.5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3445e61b-61a3-4ede-93f5-402ebe9ca51c", + "Name": { + "en": "Warn" + }, + "Code": "3.3.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "345e019f-87d2-415d-ba37-9fb85460f7e1", + "Name": { + "en": "Lumbering" + }, + "Code": "6.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "349937e3-a2fd-41f8-b7c4-bd6fa106add4", + "Name": { + "en": "Flood" + }, + "Code": "1.1.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "349f0278-7998-422a-9c3b-6053989cbb20", + "Name": { + "en": "Grammar" + }, + "Code": "9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34a02a17-23fb-4260-9f97-c125842a3594", + "Name": { + "en": "Birth ceremony" + }, + "Code": "2.6.3.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34c3edad-a158-44e7-989b-5b74401e6945", + "Name": { + "en": "Gas" + }, + "Code": "1.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34c9408c-c3f7-49db-8bce-de7fa7da03d7", + "Name": { + "en": "Catch, capture" + }, + "Code": "7.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34dd26b6-d081-42f5-8be9-c5fe7a7253b2", + "Name": { + "en": "Available" + }, + "Code": "6.1.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34e92ff1-32aa-49c7-b4da-d161bedc5adc", + "Name": { + "en": "Working with minerals" + }, + "Code": "6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34fe8676-7bda-493d-a012-bc5748e87823", + "Name": { + "en": "Pointed" + }, + "Code": "8.3.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "350667ee-592b-47af-adca-14e820ec58cf", + "Name": { + "en": "No, not" + }, + "Code": "9.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35624f3a-2029-43b3-b70a-83e63ac9052f", + "Name": { + "en": "Affixes" + }, + "Code": "9.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35a9da32-53ee-44fa-9c65-5a15f88ad283", + "Name": { + "en": "Names of streets" + }, + "Code": "9.7.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35e61ec4-0542-4583-b5da-0aa5e31a35aa", + "Name": { + "en": "Birth" + }, + "Code": "2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35faefb3-7498-4735-9b05-e7035dd368fc", + "Name": { + "en": "Crop failure" + }, + "Code": "6.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36123ffe-14d8-4198-b32c-eabd0b23e0dd", + "Name": { + "en": "Bargain" + }, + "Code": "6.8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3615c3d1-fd5b-40c5-80ad-80bfd6451d56", + "Name": { + "en": "Plunder" + }, + "Code": "4.8.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36176d59-171b-4a0a-a0f7-a8f9857536a1", + "Name": { + "en": "Move straight without turning" + }, + "Code": "7.2.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "362a2bdd-985e-4bc0-a41c-358bd1babb12", + "Name": { + "en": "Spy" + }, + "Code": "4.8.3.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36934fab-c0ed-4f25-a387-e1cca26b2401", + "Name": { + "en": "Few, little" + }, + "Code": "8.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36a2c83f-f7aa-41b0-9b17-f801f3720e4f", + "Name": { + "en": "Growing grain" + }, + "Code": "6.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36ad58e3-ade7-49b9-9922-de0b5c3f13c3", + "Name": { + "en": "Cooking ingredients" + }, + "Code": "5.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36b3cfb6-0fea-4628-aa8d-f9b7af48f436", + "Name": { + "en": "Lizard" + }, + "Code": "1.6.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3710e019-46c9-44db-a0aa-9054d3126161", + "Name": { + "en": "Narcotic" + }, + "Code": "5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3759bdda-2b52-43dc-8995-8379e3129dce", + "Name": { + "en": "Relations involving correspondences" + }, + "Code": "9.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3785d9f3-0922-4d79-a0fa-b97c4a26fe17", + "Name": { + "en": "Spatial relations" + }, + "Code": "8.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "37a08f65-5a79-4e17-8e19-0975d6531d64", + "Name": { + "en": "Serious" + }, + "Code": "4.2.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "37e6c8b5-f63c-4f5b-8c16-eccd727d6618", + "Name": { + "en": "Fight against something bad" + }, + "Code": "4.8.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "37f6a1d9-985d-465e-b62d-37c1f9bf855b", + "Name": { + "en": "Growing maize" + }, + "Code": "6.2.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "380b0d15-77a1-49ba-ad83-a508e7ffb83d", + "Name": { + "en": "Storm" + }, + "Code": "1.1.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38473463-4b92-4681-8fd0-0aca0342e88a", + "Name": { + "en": "Small animals" + }, + "Code": "1.6.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3885231e-8b18-4da3-af76-c75e8b731ed8", + "Name": { + "en": "Pick up" + }, + "Code": "7.3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38ab2681-fcc7-4a75-bb0b-29c5cd2e3a8f", + "Name": { + "en": "Send someone" + }, + "Code": "7.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9", + "Name": { + "en": "Sense, perceive" + }, + "Code": "2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38bdff04-c7a9-41fa-a6a2-7aa214de308c", + "Name": { + "en": "Impartial" + }, + "Code": "4.7.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38d1a6fe-0811-4eb0-a1d8-f69b6ad978e0", + "Name": { + "en": "Bless" + }, + "Code": "4.9.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "390ad7fc-8360-4eae-8736-3aedc15ae659", + "Name": { + "en": "Map" + }, + "Code": "7.2.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "39611e8d-cc67-4c84-977c-094c5cbe9dbc", + "Name": { + "en": "Lonely" + }, + "Code": "3.4.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "396a2a1b-832f-4180-b26a-c606550541d7", + "Name": { + "en": "Blunt" + }, + "Code": "8.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "398ffed0-bfa7-452c-8521-7d37b3082dcf", + "Name": { + "en": "Work hard" + }, + "Code": "6.1.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "39dcb6b9-94df-45be-a128-c14c7a9dcdbd", + "Name": { + "en": "Stomach illness" + }, + "Code": "2.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a0dc521-f028-4c17-945c-b121e2d3dc0b", + "Name": { + "en": "Yesterday, today, tomorrow" + }, + "Code": "8.4.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a28ab73-2847-44a4-97ed-7129269f1366", + "Name": { + "en": "Kneel" + }, + "Code": "7.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a2c0773-6b3e-4f8b-909d-c8f84d66d4f4", + "Name": { + "en": "General words" + }, + "Code": "9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a545732-145a-4034-8f72-e08d752cb4d4", + "Name": { + "en": "With, be with" + }, + "Code": "9.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a568f98-8446-4327-876b-7c5ec78d9084", + "Name": { + "en": "Floor" + }, + "Code": "6.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3aab9c42-b696-4440-8e28-8380f5d25199", + "Name": { + "en": "Extreme belief" + }, + "Code": "3.2.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3acf5e20-b626-4f0a-a582-d386a0e30792", + "Name": { + "en": "Sheath" + }, + "Code": "6.7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ae3a1be-cfb5-4953-b65b-68f0c51b1d40", + "Name": { + "en": "Sculpture" + }, + "Code": "6.6.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3aec74e5-6cfd-46d2-b26f-503fad761583", + "Name": { + "en": "Parts of tools" + }, + "Code": "6.7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3b4b947a-f223-4c87-8839-9f6237cda9f6", + "Name": { + "en": "Handle something" + }, + "Code": "7.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3b69f6b6-d64a-43aa-99dc-05e34f81e07f", + "Name": { + "en": "Hire, rent" + }, + "Code": "6.8.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3bc961d1-9f4f-4f1b-ada7-b1e9a2928ea4", + "Name": { + "en": "Tell the truth" + }, + "Code": "3.5.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3be7e3fe-89d4-471a-92bd-8c70fcb146bb", + "Name": { + "en": "Deaf" + }, + "Code": "2.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3c9fe647-2647-4f43-8bac-7facc054f7ff", + "Name": { + "en": "Move back and forth" + }, + "Code": "7.2.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3", + "Name": { + "en": "Pregnancy" + }, + "Code": "2.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ccc3a21-07c8-4983-a044-e3c74b538135", + "Name": { + "en": "Short, not long" + }, + "Code": "8.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3d10e03a-7902-458d-9c45-938da103d639", + "Name": { + "en": "Hollow" + }, + "Code": "8.3.1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3d5d93ce-00e0-46ff-b220-553c12c38381", + "Name": { + "en": "Female organs" + }, + "Code": "2.1.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3dba39bc-48f2-4bcb-9357-c8fbed6922ca", + "Name": { + "en": "Promise" + }, + "Code": "3.5.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400", + "Name": { + "en": "Respond to someone in trouble" + }, + "Code": "4.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3df7d174-83d1-4e17-890e-1272e171ca41", + "Name": { + "en": "Metal" + }, + "Code": "1.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3e546c11-bcb6-4024-b2f3-c15be40e257f", + "Name": { + "en": "Lack self-control" + }, + "Code": "4.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ea4c495-b837-4310-8741-38d89fa63e0b", + "Name": { + "en": "Epistemic moods" + }, + "Code": "9.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ea52505-aa6c-4f28-b475-f15ac1820ec1", + "Name": { + "en": "Demon possession" + }, + "Code": "4.9.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3edb307f-be46-40b6-a6a4-ae075b40258c", + "Name": { + "en": "Since, from" + }, + "Code": "8.4.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f069313-4827-4fc5-b73b-b9fbd42ca38c", + "Name": { + "en": "Reconcile" + }, + "Code": "4.8.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f37bb6f-cd32-4430-aa35-700acabbee15", + "Name": { + "en": "Start something" + }, + "Code": "8.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f4c559f-ab4f-411f-a23b-d2396c977005", + "Name": { + "en": "Visible" + }, + "Code": "2.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f535689-944a-4e9c-8f64-ec6395b7c8d7", + "Name": { + "en": "Slip, slide" + }, + "Code": "7.2.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f6dc9af-0c50-44d5-99f0-4aa67c668186", + "Name": { + "en": "Working with oil and gas" + }, + "Code": "6.6.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fae9066-eb66-444e-bd41-818b9f7b3bae", + "Name": { + "en": "Put" + }, + "Code": "7.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fbe3ea6-3ad3-430f-ab67-2d9c9f852c61", + "Name": { + "en": "Now" + }, + "Code": "8.4.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fd34185-19a1-44bd-8555-bc76e2847bee", + "Name": { + "en": "Instinct" + }, + "Code": "3.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c", + "Name": { + "en": "School" + }, + "Code": "3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "400d318e-a9ef-40b4-92be-0d7e96e51d8a", + "Name": { + "en": "Source (of movement)" + }, + "Code": "9.5.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "401bbbe4-a33a-4a1e-b26a-18a756e002c4", + "Name": { + "en": "Cowardice" + }, + "Code": "4.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40248a12-1809-4561-b786-e4e274c14d82", + "Name": { + "en": "Primate" + }, + "Code": "1.6.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40516af2-d413-418e-8b68-8443847ee169", + "Name": { + "en": "Parts of clothing" + }, + "Code": "5.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40590157-9412-4558-b0f7-311867b649cc", + "Name": { + "en": "Turn something" + }, + "Code": "7.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4068488f-59e9-47d1-8884-a1d6dcc10c36", + "Name": { + "en": "Load, pile" + }, + "Code": "7.5.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4093bfe8-54b3-4ffc-bfe3-3999279840b5", + "Name": { + "en": "Show, explain" + }, + "Code": "3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5", + "Name": { + "en": "Food" + }, + "Code": "5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40ff5cee-31d8-4c89-a212-877347212a0e", + "Name": { + "en": "Satiated, full" + }, + "Code": "5.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "410a3d81-290f-416b-8012-3aa16eaa9e55", + "Name": { + "en": "Women\u0027s clothing" + }, + "Code": "5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4153416a-784d-4f7c-a664-2640f7979a14", + "Name": { + "en": "River" + }, + "Code": "1.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "41837400-bdc5-4cbc-a1dc-d793f713f883", + "Name": { + "en": "Hesitation fillers" + }, + "Code": "9.6.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "41b80f5d-0298-4d3c-b1a3-6d5e6c3985b1", + "Name": { + "en": "Lust" + }, + "Code": "3.3.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "41cac849-613d-4be4-a3bc-389412b7f653", + "Name": { + "en": "Repair" + }, + "Code": "7.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "42133f78-9860-4bb7-8083-5559083f0714", + "Name": { + "en": "Gambling" + }, + "Code": "4.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4223d3ba-5560-4c30-b013-4e31fee36329", + "Name": { + "en": "Names of buildings" + }, + "Code": "9.7.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "424ced39-d801-419a-86fe-265942a9b74b", + "Name": { + "en": "Take care of something" + }, + "Code": "6.1.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4260e110-7b04-4d40-9391-486a57aa3031", + "Name": { + "en": "Mature in behavior" + }, + "Code": "4.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4275df2e-d4f6-461a-9279-39e0712dc082", + "Name": { + "en": "Appearance" + }, + "Code": "2.3.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "42b21a6e-e2f3-4468-9e92-49ee4de6909a", + "Name": { + "en": "Together" + }, + "Code": "9.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "42be1634-72ca-4a20-80a1-ba726e5cd1d2", + "Name": { + "en": "Cut" + }, + "Code": "7.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "430ce279-1464-4d55-8483-5525a3c3094d", + "Name": { + "en": "Serve" + }, + "Code": "4.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "43282de6-51e1-4e52-99fc-d54e2043fb6c", + "Name": { + "en": "Money" + }, + "Code": "6.8.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "434ec34f-e7ca-44f8-9252-dff5b9b2b62f", + "Name": { + "en": "Better" + }, + "Code": "8.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b", + "Name": { + "en": "Ashamed" + }, + "Code": "3.4.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4405e74c-f64c-4609-8f7b-99ba563d659a", + "Name": { + "en": "Adopt" + }, + "Code": "4.1.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "440608df-3c98-4dc8-9fd3-fad08afe7aef", + "Name": { + "en": "Limit" + }, + "Code": "7.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4415aff1-4d74-463e-a25d-9832c7477329", + "Name": { + "en": "Instrument" + }, + "Code": "9.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "444407f2-0c75-4bb9-a84c-cbd52d0fa9c9", + "Name": { + "en": "Stage of life" + }, + "Code": "2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4445cccd-e9b9-4f25-9e8c-2ef58408297d", + "Name": { + "en": "Wear clothing" + }, + "Code": "5.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "445f3084-f250-40fa-87ba-ebd233f9018f", + "Name": { + "en": "Anteater, aardvark" + }, + "Code": "1.6.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "447f258b-2160-42c7-9431-ffeeb86edcb8", + "Name": { + "en": "Fertile, infertile" + }, + "Code": "2.6.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "44bf22fd-3725-4c49-bd3c-434402c33493", + "Name": { + "en": "Furniture" + }, + "Code": "5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "44dc42e4-e9c7-4aa9-ac9b-1008385244b1", + "Name": { + "en": "Father, mother" + }, + "Code": "4.1.9.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4526b41d-6f3c-494f-93a2-ea3e9705269d", + "Name": { + "en": "Delay" + }, + "Code": "8.4.5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "457231c8-4eb6-4460-aa45-3e9f2c4e8975", + "Name": { + "en": "Once" + }, + "Code": "8.4.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45993c48-3893-4d9e-96a3-b6b1ad160538", + "Name": { + "en": "Poor" + }, + "Code": "6.8.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45b7dcce-21d5-4738-a64d-e8b0be8a1824", + "Name": { + "en": "Symmetrical" + }, + "Code": "8.3.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45b9bf61-3138-4206-9478-b4d3f082358b", + "Name": { + "en": "Speak in unison" + }, + "Code": "3.5.1.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45d867c7-8496-4c92-bb41-b7db5db47717", + "Name": { + "en": "Fat person" + }, + "Code": "8.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45e90d41-a462-4671-968f-92166378b3f0", + "Name": { + "en": "Remind" + }, + "Code": "3.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45f7b003-ade3-4efc-8dee-259dcbf80a4a", + "Name": { + "en": "Request" + }, + "Code": "3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "462f5606-5bd8-4543-aa35-26b0cffd7163", + "Name": { + "en": "Food from roots" + }, + "Code": "5.2.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4651aef1-e18f-481e-9c3e-d9dfff4a6b51", + "Name": { + "en": "Alone" + }, + "Code": "4.1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "467dd680-ac64-4dc4-8a17-1cfe297d3392", + "Name": { + "en": "Simple, complicated" + }, + "Code": "7.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "469b0a30-3c26-4cfd-b948-7bb952eeff41", + "Name": { + "en": "Know someone" + }, + "Code": "4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46ad1505-9049-41d8-831b-768f46f12500", + "Name": { + "en": "Clean, dirty" + }, + "Code": "5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46b13a77-fe12-49fb-afbe-826480ec97f4", + "Name": { + "en": "Pleased with" + }, + "Code": "3.4.1.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46dbda42-fe21-4e52-8eeb-4263ded7031b", + "Name": { + "en": "Months of the year" + }, + "Code": "8.4.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "474aa982-8350-47e2-a983-e1e2bce9d928", + "Name": { + "en": "Feel good" + }, + "Code": "3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "47ed6c39-b728-4ae7-be7c-c45c714c3153", + "Name": { + "en": "Thresh" + }, + "Code": "6.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "47f170eb-5f1d-49a5-85bb-240047f392c0", + "Name": { + "en": "Soft, flimsy" + }, + "Code": "8.3.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "47feee3e-80e1-469a-911c-0c550b37a2f8", + "Name": { + "en": "Necessary " + }, + "Code": "9.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "48380d5d-bd54-48a9-92bc-7c8a93de0567", + "Name": { + "en": "Lend" + }, + "Code": "6.8.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "48ac206f-2706-4500-bb63-2e499b790259", + "Name": { + "en": "Intelligent" + }, + "Code": "3.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "48d3de9f-3619-4785-b50b-6921ba7eecd6", + "Name": { + "en": "Result" + }, + "Code": "9.6.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49471924-2458-4cb0-9430-f38cfc2fb63b", + "Name": { + "en": "Working with bone" + }, + "Code": "6.6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49aa89f2-2022-4213-845e-dbbb4b53476c", + "Name": { + "en": "Last" + }, + "Code": "8.4.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49bc0d75-4f07-44b4-a50f-bc9a557dc15e", + "Name": { + "en": "Related by marriage" + }, + "Code": "4.1.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49c525b3-2163-48e1-b3bd-57e5cdc486a4", + "Name": { + "en": "Flesh" + }, + "Code": "2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49c878dd-277f-4bc9-b8ad-9ba192709108", + "Name": { + "en": "Cat" + }, + "Code": "6.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49cd2c20-098a-46d9-9e47-6bf109308793", + "Name": { + "en": "Emphasize" + }, + "Code": "3.5.1.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49ee84ff-eb2b-4ba3-b193-3018d34599c2", + "Name": { + "en": "Borrow" + }, + "Code": "6.8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49f45f97-95f8-4a53-8952-f90147af2ba9", + "Name": { + "en": "Except" + }, + "Code": "9.6.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a388000-d5c6-4127-91cd-f4e0c9fac6f1", + "Name": { + "en": "Information" + }, + "Code": "3.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a44ac87-5ad5-44de-8170-9fd88b056010", + "Name": { + "en": "Building equipment and maintenance" + }, + "Code": "6.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a5c8fdb-c8a0-49d2-a0d6-342428682d65", + "Name": { + "en": "Birth defect" + }, + "Code": "2.5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9", + "Name": { + "en": "Honor" + }, + "Code": "4.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4acc430b-9c98-4a49-a8b4-15edc0f6d19b", + "Name": { + "en": "Tidy" + }, + "Code": "4.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4aedd6d3-8f4b-4986-8d51-b0ace0137bf0", + "Name": { + "en": "Happy for" + }, + "Code": "3.4.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4b3a9b5a-df7d-4ec2-9576-2c07fe396021", + "Name": { + "en": "Dance" + }, + "Code": "4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4b669bed-ba46-41cc-bcba-c2ef8e129c85", + "Name": { + "en": "Request forgiveness" + }, + "Code": "4.8.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4bedae6a-1df4-40e5-8a2f-ab0a1f41997e", + "Name": { + "en": "Plant product" + }, + "Code": "6.2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4bf411b7-2b5b-4673-b116-0e6c31fbd08a", + "Name": { + "en": "Light" + }, + "Code": "8.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4bfe53d2-fb85-4397-98a8-97d59b907064", + "Name": { + "en": "Boat" + }, + "Code": "7.2.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c31ac6a-3197-4762-9937-2fdea90784b7", + "Name": { + "en": "Sudden" + }, + "Code": "8.4.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c823e93-3966-461f-bd64-3a9303966338", + "Name": { + "en": "Problem" + }, + "Code": "4.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c862416-f7c4-4a3c-82ac-fe81e1efb879", + "Name": { + "en": "Internal organs" + }, + "Code": "2.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4cb8b433-4efa-4698-8ebd-0f00f8fc3f66", + "Name": { + "en": "Devout" + }, + "Code": "4.9.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4ce22ed0-6fe3-47ae-83e4-e7c7310cb1d4", + "Name": { + "en": "Hinduism" + }, + "Code": "4.9.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d19f09f-035b-477e-862c-a4157acdfe81", + "Name": { + "en": "Water quality" + }, + "Code": "1.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d1ac5e6-dfe3-4643-b6e5-21649a01cce9", + "Name": { + "en": "Railroad" + }, + "Code": "7.2.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d2a247e-4925-4750-8c39-e2d78665d33c", + "Name": { + "en": "Inner part" + }, + "Code": "8.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d2a67fb-91c8-4436-87f4-f4eab6cb0828", + "Name": { + "en": "Skin disease" + }, + "Code": "2.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d3412e3-85a0-4f81-9dad-efd6101b4945", + "Name": { + "en": "Bag" + }, + "Code": "6.7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d61f524-7213-4c2c-8c14-f8eff3aed813", + "Name": { + "en": "Tight" + }, + "Code": "8.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e0992cd-c04c-4b55-beab-6b0a3c98a994", + "Name": { + "en": "Hunting birds" + }, + "Code": "6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e23b037-0547-4650-89c3-2b259b637fb6", + "Name": { + "en": "Month" + }, + "Code": "8.4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e2adaed-145e-45fc-8448-81c0bd47c414", + "Name": { + "en": "Never" + }, + "Code": "8.4.6.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e791773-94c8-4667-93f8-92dc0100ddfe", + "Name": { + "en": "Holiday" + }, + "Code": "4.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e7a6dfe-3654-4ca1-874d-02424581b774", + "Name": { + "en": "Deep, shallow" + }, + "Code": "8.2.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4eb41e40-4115-435a-934a-5d91022a29dc", + "Name": { + "en": "Owe" + }, + "Code": "6.8.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f19ab95-428a-4a0b-a069-ca8be6b72b08", + "Name": { + "en": "Visit" + }, + "Code": "4.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f22ebdb-01db-432a-9d7a-41cd44010265", + "Name": { + "en": "Accumulate wealth" + }, + "Code": "6.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f485a60-e3ba-42e6-9d59-185305c5d1f2", + "Name": { + "en": "Direction" + }, + "Code": "8.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f516445-e044-4d9c-ac9b-a3178f72b405", + "Name": { + "en": "Movie" + }, + "Code": "3.5.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f587b2b-60a6-4ea0-9fe5-89e5a502d380", + "Name": { + "en": "Means" + }, + "Code": "9.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f80a620-30db-4529-94e8-f0cd9d0b0e96", + "Name": { + "en": "Castrate animal" + }, + "Code": "6.3.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4fb79b12-3bd1-46ed-8698-7d27052a5dc7", + "Name": { + "en": "Plain, plateau" + }, + "Code": "1.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4fdf3cf1-0808-4f11-acdd-9db71550baab", + "Name": { + "en": "Without purpose " + }, + "Code": "9.6.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50903b35-5606-4727-8474-01c06bf588da", + "Name": { + "en": "Wall" + }, + "Code": "6.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50ab3705-a81e-4fcc-b3ae-95c075966f69", + "Name": { + "en": "Movement of water" + }, + "Code": "1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50ac28ab-7385-408f-b5eb-3e27b191fcf4", + "Name": { + "en": "Publish" + }, + "Code": "3.5.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50c1a392-2928-407a-8306-3c70141e375e", + "Name": { + "en": "Future" + }, + "Code": "8.4.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50db27b5-89eb-4ffb-af82-566f51c8ec0b", + "Name": { + "en": "Life" + }, + "Code": "2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50dfffe4-dfe8-445f-bdde-4cc8d83ebd6b", + "Name": { + "en": "Cooperate with" + }, + "Code": "4.3.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50e28fa7-f6c3-45bc-871d-12ef771d532c", + "Name": { + "en": "Care for" + }, + "Code": "4.3.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc", + "Name": { + "en": "Enjoy doing something" + }, + "Code": "3.4.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "513771eb-8467-468a-8bc8-e52567e66df9", + "Name": { + "en": "Working relationship" + }, + "Code": "4.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "514974a2-c2fd-4b25-a24d-2ff52fa3d798", + "Name": { + "en": "Extinguish a fire" + }, + "Code": "5.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "515f9b40-0637-4ce3-b343-2d99de3f723b", + "Name": { + "en": "Plumber" + }, + "Code": "6.6.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "51c2e2e4-438c-414b-bd15-773b664dd289", + "Name": { + "en": "Mercy" + }, + "Code": "4.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "51d4e258-430c-4032-94e3-ee53095e7045", + "Name": { + "en": "Answer in a test" + }, + "Code": "3.6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "51d9d243-35cc-4a1e-bcdd-f2749975f5fd", + "Name": { + "en": "Real" + }, + "Code": "3.5.1.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5238fe9c-4bbe-444c-b5f6-18f946b3d6aa", + "Name": { + "en": "Fever" + }, + "Code": "2.5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5261497b-6beb-4db1-9de2-10b5f6f8ec69", + "Name": { + "en": "Beginning" + }, + "Code": "8.4.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "529140d1-6e8e-44fe-99f0-95289e933607", + "Name": { + "en": "Related by birth" + }, + "Code": "4.1.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "52b04e15-7062-4fb2-9eaa-4fe8726f302a", + "Name": { + "en": "Greet" + }, + "Code": "3.5.1.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "52f9a8f0-d97d-4aa1-8c2c-d907d7cb83fc", + "Name": { + "en": "In groups" + }, + "Code": "9.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "530ff7e0-e3cb-4dc3-9c1c-3034969e1ce8", + "Name": { + "en": "Revenge" + }, + "Code": "4.8.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "531af868-b5fb-41c2-ba50-764458f9102f", + "Name": { + "en": "Bush, shrub" + }, + "Code": "1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "532245e7-8f46-4394-9045-240475ee62e8", + "Name": { + "en": "Indefinite time" + }, + "Code": "8.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "536a2d3e-2303-43bc-bf53-379131eb5730", + "Name": { + "en": "Colors of the spectrum" + }, + "Code": "8.3.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "538a4c20-01d7-40b9-b462-ae279ff3dc27", + "Name": { + "en": "Gray" + }, + "Code": "8.3.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "53ba3b61-4f4e-4749-8a7f-0d2b327a113d", + "Name": { + "en": "Plan" + }, + "Code": "6.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "53d34f16-2f94-4afa-9530-7ac75e05b8d4", + "Name": { + "en": "Flatter" + }, + "Code": "3.5.1.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "541dfa10-bf97-4713-a534-9cbcc7f66bc9", + "Name": { + "en": "Opinion" + }, + "Code": "3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5422d4ba-8af4-4767-912e-43b60ef28eab", + "Name": { + "en": "Very" + }, + "Code": "9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5446b5cf-f05a-4bb2-89eb-ce63e27040f3", + "Name": { + "en": "Music" + }, + "Code": "4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5450043d-907b-4884-a9e5-35cfd5935947", + "Name": { + "en": "Naked" + }, + "Code": "5.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "547f1151-5816-4d89-b0bc-ece2a86c92eb", + "Name": { + "en": "Move to a new house" + }, + "Code": "7.2.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5489f4ae-34a7-4f8b-9086-4247b0d8b3de", + "Name": { + "en": "Ambush" + }, + "Code": "4.8.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "54b6dff4-a21d-490d-8279-69f36a179c93", + "Name": { + "en": "Meeting, assembly" + }, + "Code": "4.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "54f59b23-a2e8-4bfc-9da2-7dd7c37d2a47", + "Name": { + "en": "Relational tenses" + }, + "Code": "9.4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "55201761-fe2e-40d5-a2a7-8079e00a2c32", + "Name": { + "en": "Fight" + }, + "Code": "4.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "55a7b809-4196-4c5a-a6d6-09b586ce71e7", + "Name": { + "en": "Ostracize" + }, + "Code": "4.7.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "55b93f1c-6ce0-4d13-ae1e-f06360e4689c", + "Name": { + "en": "With (a patient)" + }, + "Code": "9.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5627904e-59c7-4dd5-aeb5-c6fe0c0a0571", + "Name": { + "en": "Frugal" + }, + "Code": "6.8.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "562f55de-efc7-41a7-b450-6f9dea2813e2", + "Name": { + "en": "Government organization" + }, + "Code": "4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5658ae3d-ea15-44db-bae4-47df792da12e", + "Name": { + "en": "Dishonest" + }, + "Code": "4.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "566be8c1-3e42-4f8b-87eb-e70e8c13c6f8", + "Name": { + "en": "Lean" + }, + "Code": "7.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56984b2b-3417-49b4-a082-1a383551a9e9", + "Name": { + "en": "Labor and birth pains" + }, + "Code": "2.6.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56c9c38c-728a-42fe-b93c-6ca67fdf2a9a", + "Name": { + "en": "Mineral" + }, + "Code": "1.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56d1a950-8798-45fb-bccd-d8b1eb37c071", + "Name": { + "en": "Give, hand to" + }, + "Code": "7.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56ef3f06-7fb9-462e-a7d0-517f3ce1623f", + "Name": { + "en": "Carnivore" + }, + "Code": "1.6.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5718fcc8-1eba-4b8d-9b6b-0c8349f53f80", + "Name": { + "en": "Aim at a target" + }, + "Code": "7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57225f57-ba51-45d7-b6d2-b22052877ea4", + "Name": { + "en": "Social activity" + }, + "Code": "4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57237095-23cf-43ba-aa6c-89cecdd35ff8", + "Name": { + "en": "Orphan" + }, + "Code": "4.1.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5737714d-49e4-4eb4-8e46-03203ee5340b", + "Name": { + "en": "Deserve" + }, + "Code": "4.7.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "573bf23a-3fde-4552-9263-62b7c71cad02", + "Name": { + "en": "Fish with net" + }, + "Code": "6.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "577017b0-ae87-4fa2-a51b-4f430497be75", + "Name": { + "en": "Exercise authority" + }, + "Code": "4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5771f3a1-fda3-4111-9abc-7a0d76c60a79", + "Name": { + "en": "Tribal names" + }, + "Code": "9.7.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "577a9f51-263a-4c80-a439-84ce45b9c7cc", + "Name": { + "en": "Markers of direct address " + }, + "Code": "9.6.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57c9a370-0f46-4475-98fd-c7a8b3f5074c", + "Name": { + "en": "Spoil" + }, + "Code": "4.3.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57e367f4-7029-4916-a700-791db32b4745", + "Name": { + "en": "Spend" + }, + "Code": "6.8.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57ed66ee-f82b-4e80-955f-7492d85372b0", + "Name": { + "en": "Represent" + }, + "Code": "4.6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57f07b5f-75bf-4565-b969-ce0adc0b50d4", + "Name": { + "en": "Multiply numbers" + }, + "Code": "8.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5832eb32-8a90-42a7-b2bc-a9bb575b1b7c", + "Name": { + "en": "Move away" + }, + "Code": "7.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "583c98ff-1cc8-4b05-9086-974d13a78894", + "Name": { + "en": "Disorganized" + }, + "Code": "7.5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "58be5db0-c648-4522-bad0-02cd9cc15f37", + "Name": { + "en": "Foundation" + }, + "Code": "6.5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "58de3766-8729-48e2-97fe-937a441eb722", + "Name": { + "en": "Fertilize a field" + }, + "Code": "6.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "58eeb55b-c57d-4f59-a7d6-9bf663fbf831", + "Name": { + "en": "Succeed" + }, + "Code": "6.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "590570c5-3267-4966-b0db-2af7a5105c83", + "Name": { + "en": "Until" + }, + "Code": "8.4.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "591fd489-36e6-4ffd-a976-58876d851829", + "Name": { + "en": "Mucus" + }, + "Code": "2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "593073d6-9893-4670-98fb-c485406a950b", + "Name": { + "en": "Intercede" + }, + "Code": "3.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "596ab399-e442-4afe-8796-633a49de65a7", + "Name": { + "en": "Justice" + }, + "Code": "4.7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "59a95939-44d7-4396-9ef7-3a80c17e9fb1", + "Name": { + "en": "Obscenity" + }, + "Code": "3.5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "59d19623-0f3b-484d-96eb-a9093b020c8d", + "Name": { + "en": "Take oath" + }, + "Code": "4.7.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "59d936f3-dffb-4585-80e0-eaf6cd6a8026", + "Name": { + "en": "Can" + }, + "Code": "9.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a021f98-2efb-4baf-9384-a553dc3df86c", + "Name": { + "en": "Return" + }, + "Code": "7.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a2355b4-c295-4b94-86da-6ac18198bae4", + "Name": { + "en": "Credit" + }, + "Code": "6.8.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a39edae-1ace-4889-b636-1dfd2a1bcc3c", + "Name": { + "en": "Take something out of something" + }, + "Code": "7.3.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a4a8ae5-a209-4946-8fa1-3c3bd5083e0d", + "Name": { + "en": "Religious ceremony" + }, + "Code": "4.9.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a585789-2ef6-42c5-9c5a-34ff716059b7", + "Name": { + "en": "Working with glass" + }, + "Code": "6.6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5abd1270-261a-4980-93e5-e10eacea99ad", + "Name": { + "en": "Jump" + }, + "Code": "7.2.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b12ea7b-790f-4f3e-8d07-893fc267773e", + "Name": { + "en": "Cloud" + }, + "Code": "1.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b3c7b4d-d5bb-488e-8f3f-fe8206fb0e55", + "Name": { + "en": "Careful" + }, + "Code": "6.1.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b41c1ed-95bb-4cca-8cff-87361acb5683", + "Name": { + "en": "Traditional clothing" + }, + "Code": "5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac", + "Name": { + "en": "Attention" + }, + "Code": "3.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b7666bd-c6c1-45e7-aa2e-1799fcb16d97", + "Name": { + "en": "Name" + }, + "Code": "9.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b925ee1-82ef-4692-bba2-9ce3cb41c7bb", + "Name": { + "en": "Uncover" + }, + "Code": "7.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bb29704-fe0f-4594-9622-ce0aa42b93c8", + "Name": { + "en": "Agriculture" + }, + "Code": "6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bb495a5-ab5b-4409-8cd1-e48b56401fad", + "Name": { + "en": "A short time" + }, + "Code": "8.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bcd08a6-cb46-41bb-a732-0d690b5ea596", + "Name": { + "en": "Types of food" + }, + "Code": "5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bdb3c06-fbee-4f5f-991a-e2128f65bb86", + "Name": { + "en": "Cosmetics" + }, + "Code": "5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c091d8d-5bc4-40c3-8a30-2a08fb0794b8", + "Name": { + "en": "Vision, hallucination" + }, + "Code": "2.5.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c31bdf6-901f-4f14-ab64-7a99524710fc", + "Name": { + "en": "Indifferent" + }, + "Code": "3.4.1.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c348090-12f4-4c83-8331-e10971bbc8d3", + "Name": { + "en": "Meat" + }, + "Code": "5.2.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c35c2f8-d17c-42a3-aa12-a4c29b6603e8", + "Name": { + "en": "Bend" + }, + "Code": "8.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c468a85-e45f-4ea0-a3ba-68feda7e85a1", + "Name": { + "en": "Help to give birth" + }, + "Code": "2.6.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c770098-2c91-4a9c-bfa0-a7ffaa871a7f", + "Name": { + "en": "Work for someone" + }, + "Code": "6.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5cc64831-c14a-4dbe-beba-214e725ad041", + "Name": { + "en": "Manner of movement" + }, + "Code": "7.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5cd2f365-2d84-451e-9f2d-bc2561eff909", + "Name": { + "en": "Fastening tool" + }, + "Code": "6.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d21b3f1-85d5-4999-af64-c4d0101050c0", + "Name": { + "en": "Humble" + }, + "Code": "4.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d72af95-facd-4be2-80e9-37528f0f34b5", + "Name": { + "en": "Parts of small animals" + }, + "Code": "1.6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d92b4a7-baf7-495e-bb43-4f733cc55935", + "Name": { + "en": "Experienced" + }, + "Code": "6.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d9ef67a-e4ba-47ca-8c8c-ea0f512a66cd", + "Name": { + "en": "Entrust to the care of" + }, + "Code": "4.3.4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5db1b502-7c36-44fb-a7b4-50744e9ec286", + "Name": { + "en": "Actions of the hand" + }, + "Code": "7.3.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5dcf3ce8-aa00-4478-b00e-691549fa29e8", + "Name": { + "en": "Selfish" + }, + "Code": "4.3.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5df53b87-7f59-4f5c-991e-5ae007b68fa9", + "Name": { + "en": "Names of animals" + }, + "Code": "9.7.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5e3bb9e5-fd70-4c5a-95a0-938bc4876a47", + "Name": { + "en": "Expect" + }, + "Code": "3.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5e7a5899-df78-4aa7-bec9-b354acfe087f", + "Name": { + "en": "Government functions" + }, + "Code": "4.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5e9f361d-17dc-4ada-a312-8da269d22a64", + "Name": { + "en": "Mammal" + }, + "Code": "1.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5ea9301a-9906-4e81-97cf-48ee95a54c63", + "Name": { + "en": "Influence" + }, + "Code": "3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5ee64d88-c462-4505-b14a-5d36e357a024", + "Name": { + "en": "Top" + }, + "Code": "8.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5f3e44b8-e94c-49b4-9e2d-1acd93dddf75", + "Name": { + "en": "Government official" + }, + "Code": "4.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5f63805f-1c8e-440a-a13c-222c5d81eb9c", + "Name": { + "en": "Ambitious" + }, + "Code": "6.1.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5f791daf-98a2-4787-93cc-8813aea93c4d", + "Name": { + "en": "Tangle" + }, + "Code": "7.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5fcadae4-b4a8-4600-8d30-c4f67986d619", + "Name": { + "en": "Amputate" + }, + "Code": "2.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5fdf3946-7e47-4fd2-906f-4da7ce5fa490", + "Name": { + "en": "Answer" + }, + "Code": "3.5.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60364974-a005-4567-82e9-7aaeff894ab0", + "Name": { + "en": "Water" + }, + "Code": "1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6045c6eb-efea-4586-95f8-840d32578d66", + "Name": { + "en": "Arrange" + }, + "Code": "7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60595d09-4a15-4499-b6e1-d36a704bcbe9", + "Name": { + "en": "Flow" + }, + "Code": "1.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60a5fa58-45b1-41ae-9430-5200e8bfbcb8", + "Name": { + "en": "Turn" + }, + "Code": "7.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60b8dcfd-49a0-4ab4-82a7-2c5058b325ae", + "Name": { + "en": "Remain, remainder" + }, + "Code": "8.1.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e", + "Name": { + "en": "Feel bad" + }, + "Code": "3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60e63d4a-702e-4238-a42b-d97f6be09c29", + "Name": { + "en": "Hinder" + }, + "Code": "4.3.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6105a207-4311-4920-8c19-63259424bfaf", + "Name": { + "en": "Salvation" + }, + "Code": "4.9.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "611aa361-4ddd-450b-a152-94984a274575", + "Name": { + "en": "Abandon" + }, + "Code": "4.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "612424b8-997e-4661-a452-772e14a3c4a0", + "Name": { + "en": "Reject" + }, + "Code": "3.3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6137239a-b469-46be-b7cb-b9ac22fcc195", + "Name": { + "en": "Teach" + }, + "Code": "3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6142c173-161a-47d5-bdec-c827518fd67c", + "Name": { + "en": "Sad" + }, + "Code": "3.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "615674ac-8158-4089-ae70-b55472fd279b", + "Name": { + "en": "Age" + }, + "Code": "8.4.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6187e620-89bd-4b9d-9896-0c0c788e7740", + "Name": { + "en": "Football, soccer" + }, + "Code": "4.2.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "61a28bdc-c05c-49d8-b47e-d54a9082156c", + "Name": { + "en": "Semantic constituents related to verbs" + }, + "Code": "9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "61f40376-729d-4d99-894f-06c5689a06ac", + "Name": { + "en": "Flat" + }, + "Code": "8.3.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "61f52196-a8b2-496d-96ea-8c15dc7d377a", + "Name": { + "en": "Miracle, supernatural power" + }, + "Code": "4.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62030451-c0f2-4e80-8085-05c6400fc914", + "Name": { + "en": "Plow a field" + }, + "Code": "6.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "627280f0-4f98-4b31-ad23-eabe37b002ad", + "Name": { + "en": "Thin thing" + }, + "Code": "8.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62964baf-fea6-4d8e-8509-d312bff8761a", + "Name": { + "en": "Carrying tool" + }, + "Code": "6.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62b40326-f74c-4d80-9b1c-4dae0fc07026", + "Name": { + "en": "Track an animal" + }, + "Code": "6.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62b4ae33-f3c2-447a-9ef7-7e41805b6a02", + "Name": { + "en": "Social behavior" + }, + "Code": "4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62ed8254-e53a-4781-935e-79869619e40a", + "Name": { + "en": "Dedicate to religious use" + }, + "Code": "4.9.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62efa729-0920-4933-93f3-b6a48519a5c7", + "Name": { + "en": "Atone, restitution" + }, + "Code": "4.7.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6330871b-6008-490e-bfff-e28e17ebce7e", + "Name": { + "en": "Not moving" + }, + "Code": "7.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "63403699-07c1-43f3-a47c-069d6e4316e5", + "Name": { + "en": "Universe, creation" + }, + "Code": "1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6342c8bf-55b5-400f-af7e-63055fe6813b", + "Name": { + "en": "Tool" + }, + "Code": "6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "638679c7-1c7c-41da-ab60-0ac7e98fcd72", + "Name": { + "en": "Markers of transition " + }, + "Code": "9.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba", + "Name": { + "en": "Dishonest financial practices" + }, + "Code": "6.8.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "63c69d11-1101-4870-aeb8-43ee364381b0", + "Name": { + "en": "Lightning, thunder" + }, + "Code": "1.1.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "642ff468-e6c8-4fd0-8f52-262efa8f7774", + "Name": { + "en": "Hate, ill will" + }, + "Code": "4.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6430b89c-7077-418a-a558-51f0e3f2c1a6", + "Name": { + "en": "Carry" + }, + "Code": "7.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "643cc712-b3b3-42d0-971e-7a4c8a6cbf1e", + "Name": { + "en": "Walk" + }, + "Code": "7.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64493789-1c2c-4b24-a7e6-f00ff9be923e", + "Name": { + "en": "Use" + }, + "Code": "6.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "646dab64-5c2f-4f45-8e28-4d13437639d4", + "Name": { + "en": "Friend" + }, + "Code": "4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "647603c2-6f32-48f3-91fa-1f7f0e44b539", + "Name": { + "en": "Pour" + }, + "Code": "1.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64e3d6b1-1d61-454c-97ab-e1d7cb0a8917", + "Name": { + "en": "Nervous" + }, + "Code": "3.4.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64e41545-3a0a-4524-a8d4-8e5e0f0e2391", + "Name": { + "en": "Light source" + }, + "Code": "8.3.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64e6c0db-6dd6-4b80-bbe9-c96bb161674b", + "Name": { + "en": "Fraction" + }, + "Code": "8.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64f39297-426b-45a8-b5d2-097cf71d688c", + "Name": { + "en": "Adjectives" + }, + "Code": "9.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64fa0ba7-73cb-40e9-a8d2-3e61fff146c9", + "Name": { + "en": "Dye hair" + }, + "Code": "5.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65926a7a-bc46-4a40-a2c9-bf84696a3903", + "Name": { + "en": "Gentle" + }, + "Code": "4.4.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "659ccabf-f978-4852-a1a6-c225f1d76b97", + "Name": { + "en": "Special days" + }, + "Code": "8.4.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65a928b8-8587-48be-8f23-41f85549c547", + "Name": { + "en": "Memorize" + }, + "Code": "3.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65bb0844-9a71-4eec-9b86-bf4b4b508a28", + "Name": { + "en": "Respond to trouble" + }, + "Code": "4.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65c68427-2e20-42b2-8f49-623055ea9246", + "Name": { + "en": "Pounding tool" + }, + "Code": "6.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65ef6aae-019f-4980-b6d9-5b7ad2c8e68f", + "Name": { + "en": "Saying, proverb" + }, + "Code": "3.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6681f03b-06c4-4509-9253-e4739c9c1614", + "Name": { + "en": "Beg" + }, + "Code": "6.8.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66abfbe5-e011-48de-8773-905f1b1ce215", + "Name": { + "en": "Working with clay" + }, + "Code": "6.6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66d8b546-92f5-4e94-b992-08be81c3d30c", + "Name": { + "en": "Physical impact" + }, + "Code": "7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66dedb31-dd2a-4e94-825e-331590ac59a9", + "Name": { + "en": "Derivation " + }, + "Code": "9.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66e2806d-3e16-4fb2-a158-7f3b4dd5d9af", + "Name": { + "en": "Origin (of a person)" + }, + "Code": "9.5.1.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66fc9a08-3661-4dd5-94b0-1eea41fb4554", + "Name": { + "en": "Prevent" + }, + "Code": "3.3.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6709cc78-cb0b-493e-b3e6-8590a2f20c95", + "Name": { + "en": "Encounter" + }, + "Code": "4.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6712385a-6740-4f28-8bbe-8615ea17116b", + "Name": { + "en": "Regular" + }, + "Code": "8.4.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67247ab3-7b3a-4035-a0d0-a05c8e615c71", + "Name": { + "en": "Made by hand" + }, + "Code": "6.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6736dafe-2916-40f6-b6b7-b6300100933b", + "Name": { + "en": "Dream" + }, + "Code": "5.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6745c89d-1fcd-44b8-be4b-9fd9d62f64e7", + "Name": { + "en": "Entertainment, recreation" + }, + "Code": "4.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "675d67bb-da64-456e-8825-bdf074bb82be", + "Name": { + "en": "Begin a relationship" + }, + "Code": "4.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "675eccbb-9858-4cd4-8405-5f0d0faa792c", + "Name": { + "en": "Negotiate" + }, + "Code": "4.8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "678a3319-a12b-4f92-857d-167def8ef583", + "Name": { + "en": "Move together" + }, + "Code": "7.2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67931f1c-9a0c-4d18-9762-e553c132256c", + "Name": { + "en": "Financial transaction" + }, + "Code": "6.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67d10a00-fda8-4a3a-becd-f3ae3b00fcca", + "Name": { + "en": "Shock" + }, + "Code": "3.4.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67d282f8-151d-429b-8183-6a7d2f5ac98d", + "Name": { + "en": "Introduce" + }, + "Code": "3.5.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67d74de1-33f9-4d39-8fa5-5dd27e7cd1d1", + "Name": { + "en": "Suspect" + }, + "Code": "4.7.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67e57493-d286-4271-b877-f63f962dddf1", + "Name": { + "en": "Big area" + }, + "Code": "8.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6804db44-b71b-4452-98b1-b726bc7cf022", + "Name": { + "en": "Loud" + }, + "Code": "2.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "683f570a-0bfe-4a97-b55d-4319b328508b", + "Name": { + "en": "Working with water" + }, + "Code": "6.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "685d474d-3b84-4339-98c6-2aac28b9870c", + "Name": { + "en": "Clear a field" + }, + "Code": "6.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6866ee4c-78cd-47d1-ba4a-8461fdcc5e2a", + "Name": { + "en": "Logical" + }, + "Code": "3.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "68ed3e51-ddc4-4cec-89ff-605259ac9fcf", + "Name": { + "en": "Nose" + }, + "Code": "2.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6903b844-79be-4e9d-a3c8-1ca2a385bf4f", + "Name": { + "en": "With, do with someone" + }, + "Code": "9.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "691bdba3-c216-4b42-877c-674bbdb517a7", + "Name": { + "en": "Trust" + }, + "Code": "3.2.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69455770-fca7-4f41-9e7d-236e8f094ce6", + "Name": { + "en": "Covenant" + }, + "Code": "4.7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69541573-f845-4e77-91f6-1e3551fc6c82", + "Name": { + "en": "Name of a place" + }, + "Code": "9.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69d039e6-f669-4d54-8b67-89b19ff0a19c", + "Name": { + "en": "During" + }, + "Code": "8.4.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69d0a37d-f5b3-48a5-9486-5654d37b030b", + "Name": { + "en": "Mill grain" + }, + "Code": "6.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69d366d2-9735-4a1b-b938-7b212932b568", + "Name": { + "en": "Names of heavenly bodies" + }, + "Code": "9.7.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6a4f5638-388e-4c8e-9bb7-8e742dac43db", + "Name": { + "en": "Bottom" + }, + "Code": "8.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6a6bbf65-b521-4b74-bf35-dede87217d3c", + "Name": { + "en": "Habit" + }, + "Code": "4.3.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6a6f0748-a6e9-4d64-b14e-543bb6ec2ec8", + "Name": { + "en": "Strange" + }, + "Code": "8.3.5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6aa8133a-2578-4617-bd9c-6428e897a4f1", + "Name": { + "en": "Break a contract" + }, + "Code": "4.7.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ab060ca-ecfc-4a46-accb-42b0473998cd", + "Name": { + "en": "Link, connect" + }, + "Code": "7.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b19e828-f597-4d0d-b7a6-f52f3bbd041f", + "Name": { + "en": "Willing" + }, + "Code": "3.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b1eeebd-2433-4f39-9e67-7ac4dd0fe20a", + "Name": { + "en": "North, south, east, west" + }, + "Code": "8.5.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b208fda-544c-4cba-b8cc-887b1018837f", + "Name": { + "en": "Photography" + }, + "Code": "6.6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b8366b9-b5e8-42b8-991c-c568d4442a81", + "Name": { + "en": "Care for hair" + }, + "Code": "5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b921117-47e9-4717-b3b3-4e170d26b6d9", + "Name": { + "en": "Personal names" + }, + "Code": "9.7.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bc8e911-36f2-4d45-b237-2bdb6c03cc11", + "Name": { + "en": "Around" + }, + "Code": "8.5.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bd023f6-730e-44c2-ae8f-78df967e2e18", + "Name": { + "en": "Pull" + }, + "Code": "7.3.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bf7569e-dc79-49da-9ce1-e2e03303828a", + "Name": { + "en": "Punish" + }, + "Code": "4.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b", + "Name": { + "en": "Right time" + }, + "Code": "8.4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bfb7813-3a7d-47e2-88e1-d54034c07e5d", + "Name": { + "en": "Advise" + }, + "Code": "3.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c282031-f1ca-492a-b94c-b48e74e6f25d", + "Name": { + "en": "Free from bondage" + }, + "Code": "4.4.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c305af5-cff5-4f7f-bd89-040d4c265355", + "Name": { + "en": "Dense" + }, + "Code": "8.3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c32038c-adf3-4085-bde3-cd2f21a421ba", + "Name": { + "en": "Throw away" + }, + "Code": "7.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6", + "Name": { + "en": "Round" + }, + "Code": "8.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c54f0b0-b056-4090-b3f0-d5ec6710d4ab", + "Name": { + "en": "Low" + }, + "Code": "8.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c6259f0-eca6-4a30-8662-eedbaf293527", + "Name": { + "en": "Change your mind" + }, + "Code": "3.2.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6cbdaf94-8e2c-4b26-936a-d2f86d158250", + "Name": { + "en": "Race" + }, + "Code": "4.1.9.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6dd16e6e-fbdb-4df1-9730-4877651e68f3", + "Name": { + "en": "Efficient" + }, + "Code": "6.1.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6de42a33-35b2-49c6-b2c4-fa9c0c5094f0", + "Name": { + "en": "Drink" + }, + "Code": "5.2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6de4e99b-2b5a-493a-a208-f024d1eabdf3", + "Name": { + "en": "Move back" + }, + "Code": "7.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e04a3e2-3b3a-4d0b-bf71-1596ca0aa211", + "Name": { + "en": "Careless, irresponsible" + }, + "Code": "6.1.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e7d10f8-6da5-4a8a-a06d-952511194105", + "Name": { + "en": "Light in weight" + }, + "Code": "8.2.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ea13b69-b2a8-41f9-b0bc-14316ebc5118", + "Name": { + "en": "Mysterious" + }, + "Code": "3.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ea9bfc6-723c-466f-9efc-0992879ae47d", + "Name": { + "en": "Ritual scar" + }, + "Code": "5.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6eaba0c3-cdfe-435d-8811-7f2ddf6facbd", + "Name": { + "en": "Swell" + }, + "Code": "2.5.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6eafbb5a-26ba-44b5-a0d5-21b9e7750ece", + "Name": { + "en": "Rebuke" + }, + "Code": "4.8.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6eb2ef50-7e6b-41b8-a82e-6eb307c908ca", + "Name": { + "en": "Effective" + }, + "Code": "6.1.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6f01b67c-33a0-4ed3-8205-f868e97a1a3a", + "Name": { + "en": "Travel" + }, + "Code": "7.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6f83b918-dc9f-4053-90a4-a6b9e750db29", + "Name": { + "en": "Controlling water" + }, + "Code": "6.6.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fa33de6-00f4-44d5-b6b3-b3c4a4f671e5", + "Name": { + "en": "Interrogative " + }, + "Code": "9.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fb1d03c-b0fe-49b7-a473-168f12a54a36", + "Name": { + "en": "Late" + }, + "Code": "8.4.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fbe39fb-a4cb-4fcf-830b-8875fd4324e0", + "Name": { + "en": "Compel" + }, + "Code": "3.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fc8ae4d-9fad-462e-9ea0-c613c3c1cb5e", + "Name": { + "en": "Doubt" + }, + "Code": "3.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fceec81-1967-4fe5-81f3-86bcaf3f1c2f", + "Name": { + "en": "Cancel an event" + }, + "Code": "6.1.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fe11b6a-8d01-4a0b-bdeb-e4e6f420340a", + "Name": { + "en": "Personality" + }, + "Code": "3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ffe33fe-b49c-45c8-a50b-cd0065c0c869", + "Name": { + "en": "Point, dot" + }, + "Code": "8.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70164474-a65b-4506-9953-f26afb6b497a", + "Name": { + "en": "Fireplace" + }, + "Code": "5.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "706cb38c-9aca-4e2f-9653-d9562f07331c", + "Name": { + "en": "Pattern, design" + }, + "Code": "8.3.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70953222-5bc5-4fa2-a85a-01827f7bc537", + "Name": { + "en": "Way, route" + }, + "Code": "7.2.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70963c34-dd34-40c2-bb21-e9cea73c7923", + "Name": { + "en": "Drop charges" + }, + "Code": "4.7.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "709d43dd-ce94-4df1-91b1-edb0b12fdaea", + "Name": { + "en": "Rub" + }, + "Code": "7.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70eac6be-66e8-4827-8f2f-d15427efff60", + "Name": { + "en": "Reading and writing" + }, + "Code": "3.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70f80041-af88-4521-9ebd-21d8f0b0d131", + "Name": { + "en": "In front of" + }, + "Code": "8.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "710828bc-5dfb-4685-b1a5-156700ab08f1", + "Name": { + "en": "Read" + }, + "Code": "3.5.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7110adbe-a4ce-47b0-8c2f-6b41edaf2fcb", + "Name": { + "en": "Stop moving" + }, + "Code": "7.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71430132-f2ea-40fe-b3f5-b6775741cc56", + "Name": { + "en": "Working with cloth" + }, + "Code": "6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7158c621-c46e-4173-80c1-188f514a920f", + "Name": { + "en": "Admit" + }, + "Code": "3.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7162885d-1d35-4baf-97d6-7368fff7c723", + "Name": { + "en": "Loose" + }, + "Code": "8.2.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "716b3e9d-9bb9-42a6-ba56-829b1c018b28", + "Name": { + "en": "Manage a house" + }, + "Code": "5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71757ff0-d698-426d-a791-50c4bde6f735", + "Name": { + "en": "Spatial location of an event" + }, + "Code": "9.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7185bd93-5281-46de-80af-767f0ec40ff6", + "Name": { + "en": "Mind" + }, + "Code": "3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71a2cc77-f968-4341-84c1-6c16d007a093", + "Name": { + "en": "Butcher, slaughter" + }, + "Code": "6.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71b19b9e-231c-4196-a7d7-aa56a5079782", + "Name": { + "en": "Include" + }, + "Code": "7.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71cbefc3-e0a5-4b97-9672-fa0cb34c59e4", + "Name": { + "en": "Ceremony" + }, + "Code": "4.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71dbaf5f-2afa-4282-b9b8-8a50d8c8e5e9", + "Name": { + "en": "Veterinary science" + }, + "Code": "6.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71f89512-17f0-484c-aca8-ddd226e3c794", + "Name": { + "en": "Leg" + }, + "Code": "2.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "721e2ee8-7ea5-4d17-94cc-d77d8e92bd27", + "Name": { + "en": "Polite" + }, + "Code": "4.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "721e7782-9add-41fa-a7cf-659d5ca33926", + "Name": { + "en": "Game" + }, + "Code": "4.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "72274e9d-5d3c-4ae7-93ab-db3617cdda1e", + "Name": { + "en": "Sense of touch" + }, + "Code": "2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d", + "Name": { + "en": "Irreligion" + }, + "Code": "4.9.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "726923d4-b25c-46eb-8ab0-427207177ae3", + "Name": { + "en": "Steps in food preparation" + }, + "Code": "5.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "728bbc7c-e5b3-47d8-8532-72239e5c88bb", + "Name": { + "en": "Summarize" + }, + "Code": "3.5.1.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "72d9b7cd-aa06-4f7b-a66b-b992171d2cd4", + "Name": { + "en": "Style of clothing" + }, + "Code": "5.3.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7337b2dd-b574-4a41-affa-2dfad7f6cdbc", + "Name": { + "en": "Cast lots" + }, + "Code": "3.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73499b8b-76fc-4121-8bfa-1bdebe537259", + "Name": { + "en": "Types of animals" + }, + "Code": "1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73726931-ef12-4d39-a76e-7742f4b7c9cd", + "Name": { + "en": "Economics" + }, + "Code": "6.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "738a09a5-59df-40f9-8a4e-176e00d03bbf", + "Name": { + "en": "Weapon, shoot" + }, + "Code": "4.8.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73a59333-134f-4a1d-aba7-e134bdefe059", + "Name": { + "en": "Culture" + }, + "Code": "4.3.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73adcfbe-8a74-4fda-969f-616964226b9b", + "Name": { + "en": "Boundary" + }, + "Code": "6.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73b959ab-0229-4710-af99-dfc9b5370540", + "Name": { + "en": "To a larger degree" + }, + "Code": "9.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73d580ac-dc89-474c-8048-3453ebdda807", + "Name": { + "en": "Distance" + }, + "Code": "8.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73ea23c2-db45-49fa-a72b-0fc6eff4ce30", + "Name": { + "en": "Eventually" + }, + "Code": "8.4.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73f3bd83-c9a5-4613-aeb1-0c5076d4850e", + "Name": { + "en": "Parts of a fish" + }, + "Code": "1.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "741c417a-11e9-460c-9ab3-51b8220df016", + "Name": { + "en": "Wave" + }, + "Code": "1.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "742996cd-b87f-40a8-bdb3-dba74219bd73", + "Name": { + "en": "Hot" + }, + "Code": "8.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "744d1402-05f5-4491-9c15-a5af03595edb", + "Name": { + "en": "Bad, immoral" + }, + "Code": "4.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7459c0d8-4da1-4944-a95e-bc64cde860f5", + "Name": { + "en": "Invite" + }, + "Code": "4.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "749ad6fe-5509-4e45-b236-84ea12de102e", + "Name": { + "en": "Share wealth" + }, + "Code": "6.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "74cd7314-5ef6-4505-a35a-81468b5a3f3a", + "Name": { + "en": "Situation" + }, + "Code": "9.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "751bd45c-abfb-443f-ac55-aad3472c20de", + "Name": { + "en": "Unintelligible" + }, + "Code": "3.5.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "751f726b-b7cd-470e-a9fd-f2f1b460dd0d", + "Name": { + "en": "Derivational affixes" + }, + "Code": "9.2.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "75202262-cdba-4c43-9343-764c84138797", + "Name": { + "en": "Uncle, aunt" + }, + "Code": "4.1.9.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7524887a-5cf0-4459-96d1-fd8262bef7d4", + "Name": { + "en": "Growing roots" + }, + "Code": "6.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "754ac437-2841-48c3-bbb0-7d6dff52605e", + "Name": { + "en": "Event propositions" + }, + "Code": "9.1.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7556a257-3703-40d3-91d3-c891fb250947", + "Name": { + "en": "Religion" + }, + "Code": "4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7558d071-a885-447b-9aa2-604c29669492", + "Name": { + "en": "Government" + }, + "Code": "4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "755a7462-1d87-48b0-939c-08be5b5ea002", + "Name": { + "en": "Extra" + }, + "Code": "8.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "756728a8-9eb8-4329-aee2-d6a3d64585f2", + "Name": { + "en": "Solid, liquid, gas" + }, + "Code": "1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "756f67e9-2b22-4c43-913c-ceff0e781545", + "Name": { + "en": "Put in" + }, + "Code": "7.3.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7575d654-e528-4fe0-85eb-481b0e6654bb", + "Name": { + "en": "Machine" + }, + "Code": "6.7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "75825d72-695b-4e92-9f33-0f3ab4d7dd11", + "Name": { + "en": "Spit, saliva" + }, + "Code": "2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "75eb23c7-28b5-4c98-937a-1d8f371b24cf", + "Name": { + "en": "Fly" + }, + "Code": "7.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "761706fe-d289-4ace-b2c3-ab15d80dba7f", + "Name": { + "en": "Rope, string" + }, + "Code": "7.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "763fa2e0-c119-4f50-a307-81ed8c3497ed", + "Name": { + "en": "Oppose" + }, + "Code": "4.8.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7648040b-0aa5-4d9a-8f13-ffd066b81602", + "Name": { + "en": "Long" + }, + "Code": "8.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76795fdd-55dc-4fb7-a9ad-d1423c31df50", + "Name": { + "en": "Question words" + }, + "Code": "9.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "767aa167-af3d-4e11-a68b-ec31f9d2ef1a", + "Name": { + "en": "Sign, symbol" + }, + "Code": "3.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "768aed05-dbc9-4caf-9461-76cb3720f908", + "Name": { + "en": "Pain" + }, + "Code": "2.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76a06e45-99f7-446f-a2e8-e23edf6064bd", + "Name": { + "en": "Decay" + }, + "Code": "8.3.7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76a4a286-1c8a-4c4a-9eaf-dca040be574a", + "Name": { + "en": "Brave" + }, + "Code": "4.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76d4c718-a84d-4b7b-9767-1c350c3bc124", + "Name": { + "en": "Interval" + }, + "Code": "8.4.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "771e3882-f672-4e67-8580-edd82d7e5090", + "Name": { + "en": "Do good to" + }, + "Code": "4.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "774cdff1-8cba-4f94-a519-c66abd3b5f49", + "Name": { + "en": "Clan names" + }, + "Code": "9.7.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "775b53f1-bfcf-4270-a60d-b5affc9d6a99", + "Name": { + "en": "Behind" + }, + "Code": "8.5.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "776de0c6-fdd7-46df-b33f-b1e4af6ee099", + "Name": { + "en": "Sometimes" + }, + "Code": "8.4.6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "779e4547-dee6-4780-a180-30a740f9574c", + "Name": { + "en": "Basis" + }, + "Code": "9.6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77b4d6c1-87bf-4839-b4be-6a45119b700a", + "Name": { + "en": "Ask" + }, + "Code": "3.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77bcdcab-e9fd-48ba-8dcd-63f425367735", + "Name": { + "en": "Easy, possible" + }, + "Code": "6.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77d1610f-4757-46de-b5f8-e127dc270dfd", + "Name": { + "en": "Weaving cloth" + }, + "Code": "6.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77f0d0dc-61ee-4373-9879-35a7059bd892", + "Name": { + "en": "Tooth decay" + }, + "Code": "2.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77f27500-aad8-409c-a28e-92df73794dce", + "Name": { + "en": "Enemy" + }, + "Code": "4.8.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "780fbf89-f2ba-404c-b288-f6ca637bbc90", + "Name": { + "en": "Continue, persevere" + }, + "Code": "8.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7831223b-e5ed-4186-a321-94e9ae72a27d", + "Name": { + "en": "Throw" + }, + "Code": "7.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "785e7f1f-21ed-46b6-8599-c6ced4fd26d8", + "Name": { + "en": "Status" + }, + "Code": "4.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "78b0ad1b-0766-41ba-b788-d176addd5e9f", + "Name": { + "en": "Speak little" + }, + "Code": "3.5.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "793993ac-20c1-49f0-9716-e4cdc7da4439", + "Name": { + "en": "Tense and aspect" + }, + "Code": "9.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "793d3124-8b77-4ff0-82ec-09a3a9d8d865", + "Name": { + "en": "Unfair" + }, + "Code": "4.7.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7981a8e1-cf0b-44a0-9de4-12160b2f201d", + "Name": { + "en": "Land, property" + }, + "Code": "6.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7988974c-99fd-40dd-9b5e-2d81ec603ddc", + "Name": { + "en": "Forest, grassland, desert" + }, + "Code": "1.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7992958d-fd36-469e-a94b-f8a9eb26af64", + "Name": { + "en": "Block, dam up" + }, + "Code": "7.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79a33505-0c33-4e92-89b9-6a42e6ff2228", + "Name": { + "en": "Appear" + }, + "Code": "2.3.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79b580ff-64a7-445b-abcb-b49b9093779c", + "Name": { + "en": "Animal husbandry" + }, + "Code": "6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79ca34ea-68a7-4fe9-b5ac-4f3d6a1ab99d", + "Name": { + "en": "Baby" + }, + "Code": "2.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b", + "Name": { + "en": "Bodies of water" + }, + "Code": "1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79f3b53a-eb56-4188-87f8-48317f76e7ce", + "Name": { + "en": "Fasting" + }, + "Code": "4.9.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7a8cb8d3-797d-478d-b7dd-265a1eedc0c1", + "Name": { + "en": "Fence, wall" + }, + "Code": "6.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ad54364-ca8c-4b7c-9748-f83efb44d0ea", + "Name": { + "en": "Mention" + }, + "Code": "3.5.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7adf468c-b93a-4b04-8af6-4c691122a4eb", + "Name": { + "en": "White" + }, + "Code": "8.3.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7b17e304-9a3f-463f-8216-cd1e1e119e0e", + "Name": { + "en": "Divide numbers" + }, + "Code": "8.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7b513a02-c3ae-4243-9410-16854d911258", + "Name": { + "en": "Name of a person" + }, + "Code": "9.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7b816f6a-4b46-403d-a1a2-2914ee070568", + "Name": { + "en": "Present" + }, + "Code": "8.4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7babf463-5e62-4a82-96d3-ef5989803c41", + "Name": { + "en": "Survive" + }, + "Code": "4.4.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7bca1201-31f8-4f65-8da9-af0eff36b388", + "Name": { + "en": "Gossip" + }, + "Code": "3.5.1.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7beca90c-3671-4b3c-bf9a-fb8f08ff914b", + "Name": { + "en": "Salt" + }, + "Code": "5.2.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7bf05f4e-909f-40ca-b742-9be21eba9fbb", + "Name": { + "en": "Agent-oriented modalities" + }, + "Code": "9.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7bf77556-64df-428e-bfdd-095af5bfeeda", + "Name": { + "en": "Intend" + }, + "Code": "3.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c022751-a9f9-412d-8b27-8cd03b797e2d", + "Name": { + "en": "Just, almost not" + }, + "Code": "9.4.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c1c3730-3b35-4150-b54e-bf6d344546b3", + "Name": { + "en": "Markers of emphasis " + }, + "Code": "9.6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c234ccc-0dbe-42b0-a377-db99ebd2b51e", + "Name": { + "en": "Things done to animals" + }, + "Code": "6.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c64f65b-2889-4f90-ba61-6b5f7634d4bc", + "Name": { + "en": "Male and female animals" + }, + "Code": "1.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c6ba6e5-d81e-4a50-a111-c946a0793378", + "Name": { + "en": "Advantage" + }, + "Code": "6.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c6cad26-79c3-403a-a3aa-59babdfcd46f", + "Name": { + "en": "Sick" + }, + "Code": "2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c7f62d8-0293-45ba-8658-956c38bafc66", + "Name": { + "en": "Destiny" + }, + "Code": "4.9.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c7fc1b6-3775-4881-bbe0-9d0ce50e42a9", + "Name": { + "en": "Lift" + }, + "Code": "7.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c80f6ee-e76d-4903-aee6-7a33d1da3f75", + "Name": { + "en": "Cover" + }, + "Code": "7.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c9c6263-9f7d-472c-a4c9-1767015d41fe", + "Name": { + "en": "Offer" + }, + "Code": "3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7cf6312e-f9f0-49e8-ae60-7677fac86c3f", + "Name": { + "en": "Subtract numbers" + }, + "Code": "8.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7cfc8b3c-ad67-4928-ae6a-74afd47ced89", + "Name": { + "en": "Whole, complete" + }, + "Code": "8.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d111356-e04e-4891-960c-2f35147eba82", + "Name": { + "en": "Name of a thing" + }, + "Code": "9.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d472317-b5e8-4cae-a03f-913ecdaf4c29", + "Name": { + "en": "Snake" + }, + "Code": "1.6.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d472dd5-636d-4499-bf66-83cf23c0dbe1", + "Name": { + "en": "Child" + }, + "Code": "2.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d54d3dd-5fb2-4640-9bcf-c234696af894", + "Name": { + "en": "Honest" + }, + "Code": "4.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d629c80-e5c2-409f-a592-39c56e9ace6d", + "Name": { + "en": "Navy" + }, + "Code": "4.8.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d7bc686-faf5-484b-8519-b2529ac581bf", + "Name": { + "en": "Growing rice" + }, + "Code": "6.2.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d7c81d5-9713-423f-b12e-8e11e451f0a7", + "Name": { + "en": "Forgive" + }, + "Code": "4.8.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d8898d6-6296-4d4d-b8dd-2f48c49f9e98", + "Name": { + "en": "High" + }, + "Code": "8.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d9f48f5-aba3-486f-b49d-cd2cb0ac03f8", + "Name": { + "en": "Growing grapes" + }, + "Code": "6.2.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7dbd7f43-4291-47f8-a392-6fdf3c98d522", + "Name": { + "en": "Male organs" + }, + "Code": "2.1.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7df3078c-f681-4123-a712-4b83e438ea1d", + "Name": { + "en": "Keep something" + }, + "Code": "7.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7e0bc050-5298-4808-af22-5e284526c652", + "Name": { + "en": "Exchange, trade" + }, + "Code": "6.8.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7e2b6218-0837-4b16-a982-c9535cccdb21", + "Name": { + "en": "Corpse" + }, + "Code": "2.6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ea946fb-6469-4f21-a5a4-7963878e6fe2", + "Name": { + "en": "A long time" + }, + "Code": "8.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ec98665-275f-4d57-8022-2740b9e90059", + "Name": { + "en": "Show sympathy, support" + }, + "Code": "4.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7edf9e7c-3e32-4307-b5e3-b0d704df7803", + "Name": { + "en": "Spinning thread" + }, + "Code": "6.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ee3ccb5-e6cb-4028-9af5-62ae782967b5", + "Name": { + "en": "Working with metal" + }, + "Code": "6.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ee92ca4-19aa-4abd-9f88-508766acc39c", + "Name": { + "en": "Roll up" + }, + "Code": "8.3.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ee96f62-7c8e-4c27-a373-d7a534844612", + "Name": { + "en": "Working with leather" + }, + "Code": "6.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f1dfb68-bf07-472d-a481-b802d2591ca6", + "Name": { + "en": "Circumcision" + }, + "Code": "5.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f6c81fb-02a4-415f-a363-fb11cc6b9254", + "Name": { + "en": "Supernatural being" + }, + "Code": "4.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f7fc197-5064-43c0-af51-2919fb7355c9", + "Name": { + "en": "Connected with, related " + }, + "Code": "9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f91aa6d-f342-4fb9-9448-69d694cda9c5", + "Name": { + "en": "To a large degree" + }, + "Code": "9.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7fe69c4c-2603-4949-afca-f39c010ad24e", + "Name": { + "en": "Body functions" + }, + "Code": "2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7fed6281-326a-4a15-8cbf-dc574594da19", + "Name": { + "en": "Play music" + }, + "Code": "4.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8", + "Name": { + "en": "Boast" + }, + "Code": "3.5.1.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8052744f-7a9a-49da-89e3-4c518126180b", + "Name": { + "en": "Confused" + }, + "Code": "3.4.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80563285-4de7-4040-8080-a5b22208e7d5", + "Name": { + "en": "Attack" + }, + "Code": "4.8.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8080c7ed-e69a-4a8a-bd8d-bf3447b13630", + "Name": { + "en": "Process harvest" + }, + "Code": "6.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80b48f92-0a83-4eeb-bfe0-6980285feb65", + "Name": { + "en": "Cruel" + }, + "Code": "4.3.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80bcbc99-3c85-46d6-b15c-895367231747", + "Name": { + "en": "Be at a place" + }, + "Code": "8.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80dc5ca1-44ce-4406-add8-2bbe19c122ab", + "Name": { + "en": "Recorded music" + }, + "Code": "3.5.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80de758c-537d-4c8c-8308-4babfb2c787a", + "Name": { + "en": "Occupy an area" + }, + "Code": "8.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80f26fbc-ca89-4789-996d-4c09547f2504", + "Name": { + "en": "Complete, finish" + }, + "Code": "6.1.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "811a2abc-4bf3-44e4-9ff4-e33ff4470ce6", + "Name": { + "en": "Prepositions, postpositions" + }, + "Code": "9.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "811e8c93-d97a-4aab-bd67-268b7783ff11", + "Name": { + "en": "Tend a field" + }, + "Code": "6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "816490a4-2cac-472a-bbb0-eafbb9bbe4a8", + "Name": { + "en": "Ordinal numbers" + }, + "Code": "8.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81855f47-aa24-435d-a123-7dfe61c80702", + "Name": { + "en": "Unreliable" + }, + "Code": "4.3.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "818e33ff-590e-4d0e-b84e-67771324a545", + "Name": { + "en": "Digging tool" + }, + "Code": "6.7.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81b62078-984c-4e82-94c4-39fa44dd3e56", + "Name": { + "en": "Insult" + }, + "Code": "3.5.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81e03df2-33a8-4735-aa23-80ef1c63679e", + "Name": { + "en": "Dazed, confused" + }, + "Code": "2.5.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81e366fa-450b-42ad-b23f-7074dc7823e2", + "Name": { + "en": "Attitude" + }, + "Code": "3.2.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8206415e-a915-4842-a46a-fbea64f1a0e3", + "Name": { + "en": "Idiophones" + }, + "Code": "9.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8216627d-9d20-4a5c-8bfd-0709c16e7a08", + "Name": { + "en": "More" + }, + "Code": "8.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8225de87-35a3-4c7a-b35c-f45b152caebe", + "Name": { + "en": "Show, indicate" + }, + "Code": "3.5.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8242fc85-a703-4efa-a78a-0556a84e811e", + "Name": { + "en": "Bite, chew" + }, + "Code": "5.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f", + "Name": { + "en": "Horizontal" + }, + "Code": "8.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82e4394a-2f58-4356-8d9c-1ad9dbe95293", + "Name": { + "en": "Cold" + }, + "Code": "8.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82eb3050-d382-48f6-a049-22a5f8a3b25a", + "Name": { + "en": "Stay, remain" + }, + "Code": "7.2.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82ecb5b3-9128-4b38-b9c5-612857417ceb", + "Name": { + "en": "Dislike" + }, + "Code": "3.4.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8383b4cb-e14a-4d04-a8c3-9c5276384953", + "Name": { + "en": "Ask permission" + }, + "Code": "3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "83899b19-8b39-4bf0-b124-4c6188569ec8", + "Name": { + "en": "Add numbers" + }, + "Code": "8.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "83adeb9d-c0be-4073-894d-913014420280", + "Name": { + "en": "Good" + }, + "Code": "8.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84084e67-b321-4b6a-a436-29ead0bee586", + "Name": { + "en": "Down" + }, + "Code": "8.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8411fa09-b1a5-4b62-aa47-f28bee9f6616", + "Name": { + "en": "Useful" + }, + "Code": "6.1.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "844f922b-6fb6-49aa-864b-b1c49edaa1ae", + "Name": { + "en": "Jewelry" + }, + "Code": "5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8497fb66-8b91-46b9-a0d5-fb9385319561", + "Name": { + "en": "Taste" + }, + "Code": "2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84a8d541-9571-4ce9-abea-bd9cccb8dbf0", + "Name": { + "en": "Floor, story" + }, + "Code": "6.5.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84d67c87-86ff-4e71-8a26-abe048132f8f", + "Name": { + "en": "Shave" + }, + "Code": "5.4.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84eb31d3-b932-4b3b-b945-85884ea856c7", + "Name": { + "en": "Probably " + }, + "Code": "9.4.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8503660c-03af-49ee-86b6-525aab4da828", + "Name": { + "en": "Hear" + }, + "Code": "2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85188748-1919-4210-a9e9-91171d9d6454", + "Name": { + "en": "Fish" + }, + "Code": "1.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85214614-ab45-4805-9014-092750d47511", + "Name": { + "en": "Trial" + }, + "Code": "4.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85646774-8145-4553-b8a7-6927cd077908", + "Name": { + "en": "Animal group" + }, + "Code": "1.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8570f05c-a152-4117-9f54-4edfa9c06a32", + "Name": { + "en": "Fault" + }, + "Code": "4.7.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "858af232-b570-4153-b4c0-f60930df9ced", + "Name": { + "en": "Seem" + }, + "Code": "9.4.4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85912845-21b0-41eb-8b8c-1f5c3d53df08", + "Name": { + "en": "Enthusiastic" + }, + "Code": "3.4.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8594cb26-9f3c-48f5-b00b-f055eb5a5e61", + "Name": { + "en": "Riot" + }, + "Code": "4.8.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8596f086-ee46-4245-8d45-2171a60e19e4", + "Name": { + "en": "Touching, contact" + }, + "Code": "8.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85b9908f-4f57-4baa-9ed2-bc4705b12e72", + "Name": { + "en": "Straight posture" + }, + "Code": "7.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85c5b8f7-8086-493d-b70d-a361bfa56f09", + "Name": { + "en": "Possible" + }, + "Code": "9.4.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85cb1e3c-62ba-4a77-a838-0237707fb0cb", + "Name": { + "en": "Names of regions" + }, + "Code": "9.7.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85dfc6a3-6c70-41f2-a869-32e2fb3c40ee", + "Name": { + "en": "Bend down" + }, + "Code": "7.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85f211ae-cc16-4042-8c27-e99ff8f01f61", + "Name": { + "en": "Give, donate" + }, + "Code": "6.8.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86287a4c-0d64-4f28-9a5c-17fb9df37ab6", + "Name": { + "en": "On" + }, + "Code": "8.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86615235-8cdd-413d-b722-11bc5a4653d6", + "Name": { + "en": "End" + }, + "Code": "8.4.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "867f515b-ed0f-431e-a84a-6c562e1bdbb7", + "Name": { + "en": "Smooth" + }, + "Code": "8.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "869d0c7b-d792-45ab-bf31-fd9f6fea3107", + "Name": { + "en": "Store, marketplace" + }, + "Code": "6.8.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86c065ea-2420-4619-82d4-1d43527b3371", + "Name": { + "en": "Distribute" + }, + "Code": "7.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86e5c062-d90f-476c-a363-264adfafedfa", + "Name": { + "en": "Move a part of the body" + }, + "Code": "7.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86f90eff-158b-4f6d-82e9-fab136dfd141", + "Name": { + "en": "Organization" + }, + "Code": "4.2.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "878a313b-a201-444e-8bdb-67048d60c63e", + "Name": { + "en": "Ignore" + }, + "Code": "3.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "879e66bc-af29-4fe4-86e0-0047973a57d6", + "Name": { + "en": "Walk with difficulty" + }, + "Code": "7.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87bd0d45-8a94-41cb-9864-90d53a11a4b9", + "Name": { + "en": "Law" + }, + "Code": "4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87c499b3-5fab-45e0-9999-9c4fcbba1e2b", + "Name": { + "en": "Son, daughter" + }, + "Code": "4.1.9.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87c55aea-2c3f-44ce-81ec-18a153c5deb2", + "Name": { + "en": "Send" + }, + "Code": "7.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87d344ac-94cc-49d6-9878-ebc86a933033", + "Name": { + "en": "Help" + }, + "Code": "4.3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87dd09b8-689c-4a56-b3f6-846a849f71b8", + "Name": { + "en": "Correct" + }, + "Code": "3.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87eb572c-bae2-45d8-a36a-919561b55d0d", + "Name": { + "en": "Crowd, group" + }, + "Code": "4.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "880647e5-6543-46dd-9178-8edae9272add", + "Name": { + "en": "Willing to learn" + }, + "Code": "3.2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "88269184-d033-454e-b750-559d5f53287c", + "Name": { + "en": "Move in" + }, + "Code": "7.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8841af5e-74e6-4c5d-a313-ba9aa7fdb78b", + "Name": { + "en": "Stand" + }, + "Code": "7.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8894cac9-c82a-4616-856e-0516d2ed1df7", + "Name": { + "en": "Meaning" + }, + "Code": "3.5.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "889de305-82ad-4d1a-9a97-63733ed27bfc", + "Name": { + "en": "Prepare" + }, + "Code": "6.1.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "892b66f4-5dfd-4451-a491-4c4fd2179081", + "Name": { + "en": "Bribe" + }, + "Code": "6.8.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8938e132-6534-4428-9b03-cb1f459b7cbe", + "Name": { + "en": "Basic" + }, + "Code": "8.3.7.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "896d57d4-4c25-4f0b-9985-a30974f64704", + "Name": { + "en": "Follow, be a disciple" + }, + "Code": "4.5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "89944377-8694-4394-bced-153cc22a0e30", + "Name": { + "en": "Birth order" + }, + "Code": "4.1.9.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "89ad4e41-bf08-4d93-a4f3-f72e8cc62bed", + "Name": { + "en": "In-law" + }, + "Code": "4.1.9.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "89ba59d4-b314-4070-83bb-f9f868bcd363", + "Name": { + "en": "Draw, paint" + }, + "Code": "6.6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a0c5ed9-0041-4af5-a193-329e6c9f2717", + "Name": { + "en": "Big" + }, + "Code": "8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a11e609-e88d-4247-8c5f-224ddb20de10", + "Name": { + "en": "Clothing" + }, + "Code": "5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a5c87ad-2d15-40c2-9f15-d7942ac80261", + "Name": { + "en": "Surrender" + }, + "Code": "4.8.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a7fdd75-01dc-4d40-84ff-fa0484da3abb", + "Name": { + "en": "Violent" + }, + "Code": "4.8.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a81b9bc-9c66-4d57-a2d1-2e592604c4b1", + "Name": { + "en": "Full" + }, + "Code": "8.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a9b5484-eda8-4194-95ca-c2e76e83ae67", + "Name": { + "en": "Pound in mortar and pestle" + }, + "Code": "5.2.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8add7f4d-333b-4b2c-9999-48a14162152b", + "Name": { + "en": "Self-controlled" + }, + "Code": "4.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8affe94d-a396-4404-a0d7-c65046e617e6", + "Name": { + "en": "Absent" + }, + "Code": "8.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b52a9d6-a07e-4ac8-8f84-6eb5ba578d97", + "Name": { + "en": "Cough, sneeze" + }, + "Code": "2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b5f9519-7301-4400-b93d-ebde4ea3def8", + "Name": { + "en": "Or, either" + }, + "Code": "9.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b6aecfb-071d-439d-9ee0-efa3c57967a0", + "Name": { + "en": "Diplomacy" + }, + "Code": "4.6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b76f4a2-9926-4c76-8d4f-563371683219", + "Name": { + "en": "Working with chemicals" + }, + "Code": "6.6.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b9f23f4-a147-4ea8-a13a-c5b1edc7f5e4", + "Name": { + "en": "Open" + }, + "Code": "7.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8bcc3b3d-dd0c-4838-a33a-b395f354c86f", + "Name": { + "en": "Move in a circle" + }, + "Code": "7.2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8bdf4847-903b-4af6-9553-3cfab65de516", + "Name": { + "en": "Mathematics" + }, + "Code": "8.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8be94377-a3cc-4187-a6e2-51523e953503", + "Name": { + "en": "Worker" + }, + "Code": "6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8c28c640-db5b-43e2-a1e6-b0e381962129", + "Name": { + "en": "Domesticated animal" + }, + "Code": "6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8c41d2d1-6da6-4ab8-8b29-7e226192d64e", + "Name": { + "en": "Bleed, blood" + }, + "Code": "2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8c7da1d1-d7d7-470c-b6a3-edefb0e9a4d2", + "Name": { + "en": "Shout" + }, + "Code": "3.5.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8ce6709f-f772-4638-a1aa-c132666f3563", + "Name": { + "en": "Annoyed" + }, + "Code": "3.4.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d266c98-9db3-4d3e-b204-956aa848ffa5", + "Name": { + "en": "Communication devices" + }, + "Code": "3.5.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d47c9ec-80c4-4309-9848-c453dcd71182", + "Name": { + "en": "Living things" + }, + "Code": "1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d490e91-6383-45ea-a3d7-b9c950822f98", + "Name": { + "en": "Impatient" + }, + "Code": "4.3.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d5c28b8-91be-40b0-b6c2-4d5adbb495a3", + "Name": { + "en": "Disgusted" + }, + "Code": "3.4.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d8a7656-8f8e-467e-b72e-535db6a17c6a", + "Name": { + "en": "Amphibian" + }, + "Code": "1.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8db17eef-6c42-4ba0-9f07-a3b0e7c8f1e1", + "Name": { + "en": "Relative pronouns" + }, + "Code": "9.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8db7c016-bdc9-410b-9523-3197602358f4", + "Name": { + "en": "Written material" + }, + "Code": "3.5.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e11dd10-459b-4fb3-b876-7d80ec5f8a4d", + "Name": { + "en": "Behavior" + }, + "Code": "4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e59041e-660b-4f3e-9a11-83217417209e", + "Name": { + "en": "Move forward" + }, + "Code": "7.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e65904c-f9e9-4e12-b430-c1ddc540f1ae", + "Name": { + "en": "Relaxed posture" + }, + "Code": "7.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e88ed6a-000d-400a-8cd8-7b3cc7f1818c", + "Name": { + "en": "Traditional medicine" + }, + "Code": "2.5.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8ea4e0d4-71a2-4583-a1fe-f1a941af8478", + "Name": { + "en": "Suggest" + }, + "Code": "3.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f46496a-d5b2-411d-944d-9d4d4b6f2e31", + "Name": { + "en": "Refuse permission" + }, + "Code": "3.3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f4c9266-a025-4b7a-bd67-fe0c043bf6f5", + "Name": { + "en": "Exact" + }, + "Code": "8.1.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f68d85f-70f8-4662-9b4b-1dd2900a002a", + "Name": { + "en": "Animal eating" + }, + "Code": "1.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f779877-7d86-4683-8a8b-298c7fc62815", + "Name": { + "en": "Speak poorly" + }, + "Code": "3.5.1.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef", + "Name": { + "en": "Fold" + }, + "Code": "8.3.1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8fb9a1a6-844d-45a5-86c7-977d3e420149", + "Name": { + "en": "Winnow grain" + }, + "Code": "6.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8fbed974-7d25-44c3-80cb-7d02e4069007", + "Name": { + "en": "Contain" + }, + "Code": "8.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8fff393a-23c2-42bb-8da8-9b151e790904", + "Name": { + "en": "Old person" + }, + "Code": "2.6.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "902cfcbe-6e42-4e55-b2a5-9146702fc16b", + "Name": { + "en": "Guide" + }, + "Code": "7.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9060339e-d697-4c35-bc83-ced6bebfee63", + "Name": { + "en": "Enter by force" + }, + "Code": "4.3.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "909a3113-88bc-470b-8d48-7c0d37966982", + "Name": { + "en": "Solve" + }, + "Code": "3.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "90c06635-a12c-4cd4-a190-46925ff0f43e", + "Name": { + "en": "Examine" + }, + "Code": "2.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91913920-8a6a-4ba0-9361-d6cc9e1f3639", + "Name": { + "en": "Parts of things" + }, + "Code": "8.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91cc7e8f-522e-4ff1-b545-5a5b72f4e953", + "Name": { + "en": "Worse" + }, + "Code": "8.3.7.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91ddf495-a28b-4a32-90dc-6f997d0cd069", + "Name": { + "en": "Musical instrument" + }, + "Code": "4.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91e95825-677a-4221-9e55-78a73bbac6ee", + "Name": { + "en": "Simple, plain" + }, + "Code": "8.3.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "928741b5-bff6-4dd1-be37-ec6e7a4eb6ca", + "Name": { + "en": "Island, shore" + }, + "Code": "1.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "929720f5-c264-49fd-b817-3e1ebff6e1de", + "Name": { + "en": "Food from vegetables" + }, + "Code": "5.2.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "92e441df-7e56-4e2c-b205-79a95800f567", + "Name": { + "en": "Compete with" + }, + "Code": "4.3.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "92ef1096-bae2-4bc5-b4b8-c16f429c4867", + "Name": { + "en": "Belong to an organization" + }, + "Code": "4.2.1.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93489181-ad8c-4a18-8dbc-fd7a9c871126", + "Name": { + "en": "Bad-tempered" + }, + "Code": "4.3.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9351d5b6-5a87-422a-9e82-ca6a0bacd3e9", + "Name": { + "en": "Calm" + }, + "Code": "3.4.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "935da513-126e-4cab-8e07-625458821181", + "Name": { + "en": "Come together, form a group" + }, + "Code": "4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4", + "Name": { + "en": "Wind" + }, + "Code": "1.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93de2257-8303-490d-b2fe-6d1d838b08c6", + "Name": { + "en": "Care for the fingernails" + }, + "Code": "5.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93df663c-9a5e-48aa-984f-fdf413079bc2", + "Name": { + "en": "Beneficiary of an event" + }, + "Code": "9.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "943eb131-2761-4c98-90a0-0bdfb0f8584d", + "Name": { + "en": "Bed" + }, + "Code": "5.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "944cf5af-469e-4b03-878f-a05d34b0d9f6", + "Name": { + "en": "Animal" + }, + "Code": "1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94af09fa-ff23-433b-a881-ceaca87d9d18", + "Name": { + "en": "Weak" + }, + "Code": "2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94cad4ca-c2ec-4ff3-b9b1-11107549941d", + "Name": { + "en": "Attribution" + }, + "Code": "9.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94f50cb8-9a59-42cc-9891-247cc3de7428", + "Name": { + "en": "Rust" + }, + "Code": "8.3.7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94f573ff-29f0-42ae-b1d9-f882823b2935", + "Name": { + "en": "Nickname" + }, + "Code": "9.7.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94f919c2-bf8b-4ae5-a611-8c0cd4d7a5d2", + "Name": { + "en": "Command" + }, + "Code": "4.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "95a8d932-9554-439f-afb5-ab158f2eed96", + "Name": { + "en": "Alternate" + }, + "Code": "8.4.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9612bdd6-15cb-4269-aaf9-481c7b35b5dd", + "Name": { + "en": "Speak quietly" + }, + "Code": "3.5.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "962941b2-66bd-437f-aadc-b1921bcae5b4", + "Name": { + "en": "Poison" + }, + "Code": "2.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "962cb994-0183-4ac5-94b2-82a33f1d64e4", + "Name": { + "en": "Oil" + }, + "Code": "1.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "965c6a0b-3034-4e2f-a00b-ed2eb3119a5d", + "Name": { + "en": "Imperative " + }, + "Code": "9.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "96a1ad48-1a70-425b-bd20-59294902581f", + "Name": { + "en": "Gesture" + }, + "Code": "3.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97393c87-07e2-4633-88f9-c8bf4d9b935c", + "Name": { + "en": "Hate, detest" + }, + "Code": "3.4.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "975d0109-1bba-4b0e-85b8-2c6b51c8e074", + "Name": { + "en": "Sit" + }, + "Code": "7.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97885cab-cd96-4d34-a62a-3e3daac0c165", + "Name": { + "en": "Separate, alone" + }, + "Code": "4.4.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97e1aba5-2ac1-44a3-8f18-59b2347a54a1", + "Name": { + "en": "Building materials" + }, + "Code": "6.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97ed5af8-29ca-428d-8ac5-c61b61a963fd", + "Name": { + "en": "Multicolored" + }, + "Code": "8.3.3.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97f40359-f4e8-4545-9ba5-980b47487540", + "Name": { + "en": "Artificial" + }, + "Code": "6.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "984dc2b7-6fdd-4257-abdc-5873abb7bb70", + "Name": { + "en": "To a smaller degree" + }, + "Code": "9.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "985f099d-f38c-4957-907a-769d1a45ca10", + "Name": { + "en": "Steady, unsteady" + }, + "Code": "7.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "98830eda-3997-4f4a-9ba4-664df669e7e2", + "Name": { + "en": "Fort" + }, + "Code": "4.8.3.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "98f9ceff-e8a2-4e24-abc4-561b80bb5889", + "Name": { + "en": "Preserve" + }, + "Code": "8.3.7.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "991357dc-9f56-47ed-8790-85cbd5f9b06f", + "Name": { + "en": "Transport" + }, + "Code": "7.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "993b8955-52db-4b2a-8e9a-405a155e7b60", + "Name": { + "en": "Smelting" + }, + "Code": "6.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "995751ef-d71b-429c-a4ee-032f5b309bd7", + "Name": { + "en": "Types of people" + }, + "Code": "4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "995ee828-2393-462b-be82-47f5b5439aaf", + "Name": { + "en": "Convex" + }, + "Code": "8.3.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99861dcb-c6ca-4e50-a19a-efadbb10c2cf", + "Name": { + "en": "Old, not new" + }, + "Code": "8.4.6.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99988f94-3aa4-4984-88df-ae228f01d3b7", + "Name": { + "en": "Other" + }, + "Code": "8.3.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99b40843-54bf-4c59-ae1d-d7146cebec48", + "Name": { + "en": "Lucky" + }, + "Code": "4.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99b5b80a-a2d6-4820-adfc-1da72528c272", + "Name": { + "en": "Same" + }, + "Code": "8.3.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99c51a2c-ad49-48a6-bb0b-f059da745ec4", + "Name": { + "en": "Recipient (of a patient)" + }, + "Code": "9.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99d0d129-b427-4468-b4c6-91005be63e18", + "Name": { + "en": "Growing tobacco" + }, + "Code": "6.2.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99e38da1-91ad-4dff-a68f-972607936e50", + "Name": { + "en": "Not yet" + }, + "Code": "8.4.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99ee1558-34b2-4a1b-bfd2-eb4ccbfe7728", + "Name": { + "en": "Reliable" + }, + "Code": "4.3.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a456463-3c71-4f9a-8117-dc2fcb087bd3", + "Name": { + "en": "Tend a fire" + }, + "Code": "5.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a7604b4-d42f-44b7-9aef-47847dc93f0b", + "Name": { + "en": "Suffer" + }, + "Code": "4.4.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a8f2f6a-a039-45dd-80d3-d1e0911907b2", + "Name": { + "en": "Tax" + }, + "Code": "6.8.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a9c7174-4148-43c2-875c-0d2f884a5fe3", + "Name": { + "en": "Untidy" + }, + "Code": "4.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ac6dec6-1b8f-463c-8239-e2acb93586b1", + "Name": { + "en": "Unity" + }, + "Code": "4.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9afb64d6-feae-4490-9b7e-95768627f643", + "Name": { + "en": "Make an appeal" + }, + "Code": "4.8.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b0fef63-5935-447d-801a-bb02dd6212bb", + "Name": { + "en": "Admire someone" + }, + "Code": "4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b158c9e-9ba5-4be2-a9a1-77ef888a3b06", + "Name": { + "en": "Pure, unmixed" + }, + "Code": "7.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b267cc1-983c-407a-98d2-1e27add6292c", + "Name": { + "en": "Tie" + }, + "Code": "7.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b476afd-58c2-46a2-8294-449ac4aad3a9", + "Name": { + "en": "Place of worship" + }, + "Code": "4.9.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b9ccd76-76d6-457b-93d2-c4d242a395f8", + "Name": { + "en": "Renounce claim, concede" + }, + "Code": "4.8.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bab95c4-9773-4894-9cb9-d7ad39378b45", + "Name": { + "en": "Occupation" + }, + "Code": "6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bb173c6-cf38-47cd-803f-ebdf964ca2fc", + "Name": { + "en": "Prosperity, trouble" + }, + "Code": "4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bb6f1ed-7170-4caa-a14c-747fd95ca30e", + "Name": { + "en": "Sugar" + }, + "Code": "5.2.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bf21458-0acc-4d8d-ba9a-7b9fb6b8ee0b", + "Name": { + "en": "Hypocrite" + }, + "Code": "4.3.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9c21f9bd-a7e0-4989-99f1-7fa2853ab73c", + "Name": { + "en": "Cut hair" + }, + "Code": "5.4.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9cae4ee3-03cf-46f7-9475-21d66c93ae04", + "Name": { + "en": "Food from fruit" + }, + "Code": "5.2.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9cfe4c5a-80d4-4b31-ba89-79b2e3d28a1c", + "Name": { + "en": "Finger, toe" + }, + "Code": "2.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d428e57-e125-4575-b165-9bc6fd4ec507", + "Name": { + "en": "Persuade" + }, + "Code": "3.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d6cbe74-93d6-41fb-b7e2-cc30adb28187", + "Name": { + "en": "Move up" + }, + "Code": "7.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d79be9a-f21e-4189-be39-779db79da027", + "Name": { + "en": "Wash dishes" + }, + "Code": "5.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d865347-6656-4ab7-8613-bf2e8bc53aa7", + "Name": { + "en": "Injure" + }, + "Code": "2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e2b0c61-304e-4cad-9708-792bfde880b4", + "Name": { + "en": "Stop fighting" + }, + "Code": "4.8.4.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e587127-4f2c-4796-9c67-d37332b57303", + "Name": { + "en": "Peer group" + }, + "Code": "2.6.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e6d7c69-788c-4d40-8584-32f185e91932", + "Name": { + "en": "Hunt and fish" + }, + "Code": "6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e775794-3dda-4942-b6af-087ffd57f342", + "Name": { + "en": "Side" + }, + "Code": "8.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e98c76f-6c1c-4b7d-8f71-38f9f0e8750e", + "Name": { + "en": "Uproot plants" + }, + "Code": "6.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ec62ffe-69be-4b9b-944c-29a0f4f133db", + "Name": { + "en": "Accident" + }, + "Code": "4.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ed42115-8532-4f99-b0c0-36abfe9db652", + "Name": { + "en": "Low status" + }, + "Code": "4.5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ed66151-c144-4e5e-a3a2-f5d08b0c9bb8", + "Name": { + "en": "Backward" + }, + "Code": "8.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9efa7949-de15-499a-b382-4560e06c4fb4", + "Name": { + "en": "Say" + }, + "Code": "3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f0bcab1-8256-47a1-853c-408f025e04e7", + "Name": { + "en": "Tell a lie" + }, + "Code": "3.5.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f3b4cab-dc8a-430e-88f3-d3002df64fb8", + "Name": { + "en": "Posture" + }, + "Code": "7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f6754ae-a429-4bba-8f6f-2cd4ea0cbe45", + "Name": { + "en": "Virginity" + }, + "Code": "2.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f792202-8023-4ef3-b269-5ae4b6908a0b", + "Name": { + "en": "Offering, sacrifice" + }, + "Code": "4.9.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f868391-f1df-4682-bdcb-2c2c799006cf", + "Name": { + "en": "Remember" + }, + "Code": "3.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f8b8c01-f790-469f-bc37-dece6227e276", + "Name": { + "en": "At the same time" + }, + "Code": "8.4.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f91cd53-8b9e-4d76-82e4-5ede39112322", + "Name": { + "en": "Goal (of movement)" + }, + "Code": "9.5.1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9fc25175-3b4a-4248-bc7f-b86012ec584f", + "Name": { + "en": "Fuel" + }, + "Code": "5.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9fcae400-ce8f-4e30-9516-97ab794c30a9", + "Name": { + "en": "Pardon, release" + }, + "Code": "4.7.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a01a1900-fc1f-462e-ba3d-ae822711b034", + "Name": { + "en": "Mental illness" + }, + "Code": "2.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a03663ca-0c66-4570-be2d-b40105cc4400", + "Name": { + "en": "Yes" + }, + "Code": "9.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a0d073df-d413-4dfd-9ba1-c3c68f126d90", + "Name": { + "en": "Planet" + }, + "Code": "1.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a105e31c-1268-4fc2-8655-838d34860ece", + "Name": { + "en": "Names of oceans and lakes" + }, + "Code": "9.7.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a139558a-8df9-4fc9-bd3e-816a1408ba7f", + "Name": { + "en": "Personally" + }, + "Code": "9.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a1959b00-9702-4b45-ac46-93f18d3bc5e6", + "Name": { + "en": "Breathe, breath" + }, + "Code": "2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a197dbfb-20e4-40c2-9c76-6abbeb1a9b12", + "Name": { + "en": "Insurance" + }, + "Code": "6.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a19e219a-6cc1-4057-a8d9-18554ae88de1", + "Name": { + "en": "Care for a baby" + }, + "Code": "2.6.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a1ce19c4-d12c-46da-a718-6d03949b3db1", + "Name": { + "en": "Hunt" + }, + "Code": "6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a1dd1d94-fa8e-4325-9f72-b39bcac69755", + "Name": { + "en": "Make peace" + }, + "Code": "4.8.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a220a734-af03-4de3-8d05-369a3cad14cf", + "Name": { + "en": "Household decoration" + }, + "Code": "5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2240259-608b-40f1-990a-7f8e00ef1d07", + "Name": { + "en": "Spread, smear" + }, + "Code": "7.3.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a22d5c1c-daed-4e7a-8243-493f2d841314", + "Name": { + "en": "Do intensely" + }, + "Code": "9.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2508183-7ea5-434e-a773-00d53087d27b", + "Name": { + "en": "Mental state" + }, + "Code": "3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3", + "Name": { + "en": "Despise someone" + }, + "Code": "4.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2ae0c29-df1c-486d-a44b-96fcc4e0aa8c", + "Name": { + "en": "Give up" + }, + "Code": "6.1.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2bbf179-8d38-4d2e-84cd-0e00bb6c74f3", + "Name": { + "en": "Crawl" + }, + "Code": "7.2.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2ce1453-9832-447c-9481-70c9e2da4227", + "Name": { + "en": "Irrigate" + }, + "Code": "6.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a30e0391-ea64-4938-9eca-023c351d60af", + "Name": { + "en": "Disclose" + }, + "Code": "3.5.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a31c85df-02a9-4dd8-a094-0f07a0afbcca", + "Name": { + "en": "Remove, take apart" + }, + "Code": "7.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a345d090-14e2-4897-9186-debcb05ab27c", + "Name": { + "en": "Next" + }, + "Code": "8.4.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a36b3354-8598-4228-b779-c7c922b1e61d", + "Name": { + "en": "Smuggle" + }, + "Code": "6.8.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3ba10f3-66e3-4ad5-8057-453b8941e497", + "Name": { + "en": "War" + }, + "Code": "4.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3ba23d2-618e-4618-af18-9befae2f888b", + "Name": { + "en": "Grind" + }, + "Code": "7.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3bc1fbd-9f2f-4a9d-ae6e-7b02da8a05b4", + "Name": { + "en": "Poking tool" + }, + "Code": "6.7.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3ca2a31-259e-4e15-9696-75b0c81886e9", + "Name": { + "en": "Straight" + }, + "Code": "8.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3d95c6a-4b0b-4af0-aca8-addd042becd2", + "Name": { + "en": "Play, fun" + }, + "Code": "4.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3e905b8-107b-4311-bb50-0abe151131b3", + "Name": { + "en": "Give permission" + }, + "Code": "3.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3f1d702-8ca1-457a-a569-eb6fdf696bbe", + "Name": { + "en": "Approve of something" + }, + "Code": "3.2.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3fb18fd-befb-493f-8a19-760883ed9697", + "Name": { + "en": "Wedged in, stuck" + }, + "Code": "8.2.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3fe0ca2-64fe-44db-ac3f-14513385bc25", + "Name": { + "en": "Go to sleep" + }, + "Code": "5.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a42aa891-e4fd-489e-b573-b9d20dfc5c2a", + "Name": { + "en": "Phrase conjunctions" + }, + "Code": "9.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a42db5b4-6317-4d3f-beff-cb92dbaca914", + "Name": { + "en": "Learn" + }, + "Code": "3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4627ca8-f27b-44ce-91f5-cc992332bc86", + "Name": { + "en": "Husband, wife" + }, + "Code": "4.1.9.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4958dd9-03cc-4863-ab76-cd0682060cb0", + "Name": { + "en": "Praise" + }, + "Code": "3.5.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4b03891-c2df-4d72-bbdc-13bc8d4eceba", + "Name": { + "en": "Area" + }, + "Code": "8.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4f4943f-ad94-4736-bf5d-f8a3cb15919f", + "Name": { + "en": "Noun affixes" + }, + "Code": "9.2.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4fa9f98-73c6-4c3e-9dad-d73d2634be3b", + "Name": { + "en": "Verbal tradition" + }, + "Code": "3.5.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a57185c3-0cb5-41fa-94bf-da0c9edac600", + "Name": { + "en": "Multiples" + }, + "Code": "8.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a6616a09-df51-4ca6-850f-733ee73c8750", + "Name": { + "en": "Working in the sea" + }, + "Code": "6.6.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a6797fd1-e368-422b-9710-96e0af39552d", + "Name": { + "en": "Meet a standard" + }, + "Code": "4.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a72515ec-998d-4b48-bd69-c67cf9245abc", + "Name": { + "en": "Waste" + }, + "Code": "6.1.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a72ca6f7-e389-408a-8276-fec4d60a3a56", + "Name": { + "en": "Be" + }, + "Code": "9.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb", + "Name": { + "en": "Deceive" + }, + "Code": "4.3.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a755eaba-fce9-4a8b-b9cf-b3970a49f464", + "Name": { + "en": "Expensive" + }, + "Code": "6.8.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7568031-43e3-4cf9-b162-ac2fe74125f1", + "Name": { + "en": "Opportunity" + }, + "Code": "6.1.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a758718d-6e90-471d-acde-a637ba9ff9eb", + "Name": { + "en": "Sell" + }, + "Code": "6.8.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a764174f-ccb7-48b1-add7-158bc89a5e81", + "Name": { + "en": "Fail" + }, + "Code": "6.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a781d57d-174d-47a6-b6a1-ae635a13df84", + "Name": { + "en": "Family, clan" + }, + "Code": "4.1.9.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7824686-a3f3-4c8a-907e-5d841cf846c8", + "Name": { + "en": "Shine" + }, + "Code": "8.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7b32d1b-1be7-43ec-94a1-fc7bdd826168", + "Name": { + "en": "Particles" + }, + "Code": "9.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9", + "Name": { + "en": "Country" + }, + "Code": "4.6.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7e4f8a8-3fe3-4c86-85df-059f8983df26", + "Name": { + "en": "Use a person" + }, + "Code": "4.3.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a80f12aa-c30d-4892-978a-b076985742d5", + "Name": { + "en": "Torso" + }, + "Code": "2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a84a5ffc-006c-4d29-b71f-5215cc40a5a8", + "Name": { + "en": "Discipline, train" + }, + "Code": "4.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f", + "Name": { + "en": "See" + }, + "Code": "2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a86b2e14-1299-4f59-842c-c4c5a401aace", + "Name": { + "en": "Recognize" + }, + "Code": "3.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a894d991-d5da-45a6-9c62-009133257f36", + "Name": { + "en": "Symptom of disease" + }, + "Code": "2.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8ae0ee7-56ca-4bdf-bd9a-c56da3ff9254", + "Name": { + "en": "Extort money" + }, + "Code": "6.8.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8b2abb3-d09f-4ff1-89ce-6ae99f16401c", + "Name": { + "en": "Set self apart" + }, + "Code": "4.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4", + "Name": { + "en": "Change color" + }, + "Code": "8.3.3.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8b9e892-df3e-44c4-8c68-7a0f7f4468bb", + "Name": { + "en": "Rodent" + }, + "Code": "1.6.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8bfd196-8b54-4084-b11a-fe6e8bc5da4c", + "Name": { + "en": "Gather wild plants" + }, + "Code": "6.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a90e47fb-667c-46f7-beab-5ec4e9e6edb5", + "Name": { + "en": "Caution" + }, + "Code": "4.4.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9470e53-ee43-4c87-9cce-09cc4fa6b1c1", + "Name": { + "en": "Path (of movement)" + }, + "Code": "9.5.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9625460-7162-447c-b400-84fbc5744f1b", + "Name": { + "en": "Say farewell" + }, + "Code": "3.5.1.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a977c4b6-1004-448f-b6b0-daf5ce87d76d", + "Name": { + "en": "High status" + }, + "Code": "4.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9fbc056-3134-41af-baf4-9f63fa5bd5ae", + "Name": { + "en": "Drip" + }, + "Code": "1.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9fe3347-12ae-4624-b55e-45ea42cdbf9b", + "Name": { + "en": "Trim plants" + }, + "Code": "6.2.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa0f165d-3013-4a0c-b68c-14ea317013f9", + "Name": { + "en": "Compose music" + }, + "Code": "4.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa2b547c-2c82-4ce0-a1b3-35fa809d666c", + "Name": { + "en": "Narrow" + }, + "Code": "8.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa5658da-8926-4519-83a5-d451dc5a6b49", + "Name": { + "en": "Egg dishes" + }, + "Code": "5.2.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa57936d-f8a9-4603-8c3d-27abccd13531", + "Name": { + "en": "Nature, environment" + }, + "Code": "1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa8d812b-7c13-414a-ad02-a4240d2cef68", + "Name": { + "en": "Come" + }, + "Code": "7.2.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aab82dc7-de9f-44b3-845e-0c926f47cfb6", + "Name": { + "en": "Case" + }, + "Code": "9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aabc32ee-46e4-469f-93ad-673373cb2e8d", + "Name": { + "en": "Attendant circumstances" + }, + "Code": "9.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aad7c9b0-aff3-4684-86d5-657a20e39288", + "Name": { + "en": "Authority" + }, + "Code": "4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aadefee4-ed14-4753-952e-e945f2972e37", + "Name": { + "en": "Part" + }, + "Code": "8.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aaf63abd-c8a5-4546-8fc1-a51c6e607683", + "Name": { + "en": "Hope" + }, + "Code": "3.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52", + "Name": { + "en": "Degree" + }, + "Code": "9.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab127348-7f98-43e5-801d-01241ecdb517", + "Name": { + "en": "Lower something" + }, + "Code": "7.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8ca07c-b23c-43dc-b705-7fe34ddf6d4d", + "Name": { + "en": "Exaggerate" + }, + "Code": "3.5.1.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8d8dc9-eeb7-41ff-93a9-cbbd50b89a73", + "Name": { + "en": "Can\u0027t" + }, + "Code": "9.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8f12fb-57b0-4d61-8ae0-50d7cbc412df", + "Name": { + "en": "Snow, ice" + }, + "Code": "1.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8f5391-ad8b-42dc-a43c-22590a09ce77", + "Name": { + "en": "Islam" + }, + "Code": "4.9.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8", + "Name": { + "en": "Weigh" + }, + "Code": "8.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac187298-85e8-43ed-ba85-cc06a62c08ba", + "Name": { + "en": "Animal life cycle" + }, + "Code": "1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac2e424b-6aee-4031-8864-7b3f4a6fb5a3", + "Name": { + "en": "True" + }, + "Code": "3.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac4a936e-6c05-4e73-8d40-dfe4223b47fa", + "Name": { + "en": "Card game" + }, + "Code": "4.2.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac527685-f31d-42f3-81bd-97221a01c7ef", + "Name": { + "en": "Pattern, model" + }, + "Code": "8.3.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac550d1f-ec74-46a8-bf81-7832ace533ee", + "Name": { + "en": "Popular" + }, + "Code": "3.4.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac7de73d-0059-4f35-9317-462a1813edba", + "Name": { + "en": "Grind flour" + }, + "Code": "5.2.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac9ee84f-f0c7-48b3-8e5a-b4c967112394", + "Name": { + "en": "Quality" + }, + "Code": "8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "acddd447-bf8a-4d74-8501-7defb0525cc0", + "Name": { + "en": "Animal diseases" + }, + "Code": "6.3.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "acf5e294-d169-45c1-a9d3-960536e018cc", + "Name": { + "en": "Sound" + }, + "Code": "2.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ad4d28f0-5cbb-4b82-b736-9b41860a248c", + "Name": { + "en": "Demonstrative pronouns" + }, + "Code": "9.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ad56dc48-9c39-43f6-9386-f7df80d93cd4", + "Name": { + "en": "Insist" + }, + "Code": "3.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da", + "Name": { + "en": "Certainly, definitely" + }, + "Code": "9.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "adde4a66-9040-47a9-91ab-327934a2e97e", + "Name": { + "en": "Working with wood" + }, + "Code": "6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "adf6ad2b-7af9-4bd8-a7b4-f864b9dad86d", + "Name": { + "en": "Initiation" + }, + "Code": "2.6.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "adfc2bcd-6b8e-486c-b105-29b286b61cc0", + "Name": { + "en": "Get" + }, + "Code": "7.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ae04020a-3bb2-4672-ad75-71ce72d461ea", + "Name": { + "en": "Sentence conjunctions" + }, + "Code": "9.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ae6f73ab-432d-42e8-aa1a-c848652a13f0", + "Name": { + "en": "Woman" + }, + "Code": "2.6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aeb20093-26ba-492b-a69d-af18d5ba51eb", + "Name": { + "en": "Show affection" + }, + "Code": "4.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aec8c246-0ef7-414a-94a6-b9fdd6812a7c", + "Name": { + "en": "Social class" + }, + "Code": "4.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aecf2aad-b7a4-444f-9b13-64bc534126d2", + "Name": { + "en": "Bad" + }, + "Code": "8.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aed6c1ec-abbe-47e3-a6cc-a99ecff3b825", + "Name": { + "en": "Shiny" + }, + "Code": "8.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af0909a5-928a-4421-baaa-f33b14302714", + "Name": { + "en": "Part of speech" + }, + "Code": "9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af399519-5d7c-4100-9c79-8162cb4641cb", + "Name": { + "en": "Slow" + }, + "Code": "8.4.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af4ac058-d4b3-4c7a-ade8-6af762d0486d", + "Name": { + "en": "Decide, plan" + }, + "Code": "3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af5bcf27-56e2-4072-b321-30a31b58af78", + "Name": { + "en": "Growing fruit" + }, + "Code": "6.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af62c8f6-43c7-4c44-a0d1-ab9bcff8e26f", + "Name": { + "en": "Imitate" + }, + "Code": "8.3.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af6fe2d6-576d-473f-8a32-583779d95d1d", + "Name": { + "en": "Sure" + }, + "Code": "9.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af700054-258a-458a-9e38-e90397833e51", + "Name": { + "en": "Write" + }, + "Code": "3.5.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afa77a2a-8b0f-4a39-91bc-040e90ffbb3a", + "Name": { + "en": "Happy" + }, + "Code": "3.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afc25fbb-9060-4af2-8225-3fddbab2227d", + "Name": { + "en": "Patient" + }, + "Code": "4.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afdd8b8e-9502-4d06-94ee-e79815b65750", + "Name": { + "en": "Almost" + }, + "Code": "8.1.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afe7cc92-e0ad-40d9-be56-aa12d2693a3f", + "Name": { + "en": "Day" + }, + "Code": "8.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aff720bd-fb3d-4f85-bbc4-41d5fc5b83f8", + "Name": { + "en": "Celebrate" + }, + "Code": "4.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0156a7c-928a-4cc8-a021-4af4dc74fead", + "Name": { + "en": "Unusual" + }, + "Code": "8.3.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b015f460-faeb-4aa5-b453-9e5e9ae061fe", + "Name": { + "en": "Old fashioned" + }, + "Code": "8.4.6.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b035dcf9-1dd0-4fb3-bd04-7c8945e92cdf", + "Name": { + "en": "Put in back" + }, + "Code": "7.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b044e890-ce30-455c-aede-7e9d5569396e", + "Name": { + "en": "Star" + }, + "Code": "1.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b08424b7-a2f1-4a0e-82d1-665249e12cfc", + "Name": { + "en": "Arrive" + }, + "Code": "7.2.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0905fa9-2f90-410b-8eb5-7c7944c4f0f9", + "Name": { + "en": "Sexual immorality" + }, + "Code": "2.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b09205d4-fbb4-4bcd-94ef-f8d83e298462", + "Name": { + "en": "Calm, rough" + }, + "Code": "1.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0a9a631-e0dc-47d4-a762-e9a627732218", + "Name": { + "en": "Submit to authority" + }, + "Code": "4.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0b161b2-e773-4b04-99eb-23778fd2aa80", + "Name": { + "en": "Tear, rip" + }, + "Code": "7.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0e2635e-47c4-4995-942b-07f6635faf6f", + "Name": { + "en": "Beekeeping" + }, + "Code": "6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0e3486c-bd3d-4b5c-be9a-40cd2c0ce2a1", + "Name": { + "en": "Plait hair" + }, + "Code": "5.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0e5042d-1ade-4fb1-a6fd-9a165f5c4763", + "Name": { + "en": "Kidnap" + }, + "Code": "4.3.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31", + "Name": { + "en": "Fall" + }, + "Code": "7.2.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b158fe11-5af2-4467-bbc0-cc1aee766592", + "Name": { + "en": "Happen" + }, + "Code": "9.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b1688009-474d-4e2e-a137-acc1e32a435f", + "Name": { + "en": "Thick" + }, + "Code": "8.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b16de6a0-71dd-448c-9ffa-49f6646a5219", + "Name": { + "en": "Run" + }, + "Code": "7.2.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b1756402-83c4-476d-8f55-010a0a10b5d9", + "Name": { + "en": "Make profit" + }, + "Code": "6.8.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b21ace5f-9307-4bdc-b103-9fdf14a5655e", + "Name": { + "en": "Week" + }, + "Code": "8.4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2830b72-c642-484f-9485-24682aa11ed8", + "Name": { + "en": "Omen, divination" + }, + "Code": "4.9.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b285bc3b-ba9f-4160-8e79-81dd43dfdbaa", + "Name": { + "en": "Unemployed, not working" + }, + "Code": "6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2bb077a-92c8-4e54-8dfa-c89efd60b82d", + "Name": { + "en": "Poultry raising" + }, + "Code": "6.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2fa4109-1165-4c1f-9613-c5b2d349d2d4", + "Name": { + "en": "Speak a lot" + }, + "Code": "3.5.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2fd2d29-1389-4114-91a8-15b8d9742794", + "Name": { + "en": "Dependency relations" + }, + "Code": "9.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2fee662-c451-4d32-aca5-a913ca0b2164", + "Name": { + "en": "Holding tool" + }, + "Code": "6.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b33da469-fefa-44f3-b35c-d70411bfe7e1", + "Name": { + "en": "Marketing" + }, + "Code": "6.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b34dc5c9-3367-4bfc-b077-cd014250dc5c", + "Name": { + "en": "Interjections" + }, + "Code": "9.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3745f13-3632-4f13-b0cc-a74c51f8f2a1", + "Name": { + "en": "Earthquake" + }, + "Code": "1.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3be00a9-41a4-42ae-ba51-320b5000a563", + "Name": { + "en": "Underground" + }, + "Code": "1.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3d3dd7d-0cb1-4c25-bcae-cc402fcfa3ea", + "Name": { + "en": "Fast, not eat" + }, + "Code": "5.2.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3fb9960-8f42-43bc-9595-dfb3e04f5bfd", + "Name": { + "en": "Substitute" + }, + "Code": "7.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b40637e5-be76-4a82-96bb-c55306ee293d", + "Name": { + "en": "Girlfriend, boyfriend" + }, + "Code": "4.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b43fae8e-6b19-42ed-98cd-d363174b9cf8", + "Name": { + "en": "Small" + }, + "Code": "8.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b47d2604-8b23-41e9-9158-01526dd83894", + "Name": { + "en": "World" + }, + "Code": "1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4aa4bbd-8abf-4503-96e4-05c75efd23d5", + "Name": { + "en": "Weather" + }, + "Code": "1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4c1e05f-f741-45cc-8d13-a1f60f474325", + "Name": { + "en": "Markers expecting an affirmative answer" + }, + "Code": "9.4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4dc89dc-3811-4d45-b0ee-0b71e28305cc", + "Name": { + "en": "Use up" + }, + "Code": "6.1.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4e6c077-4f5e-44f3-8868-1f7ae3486585", + "Name": { + "en": "Eating utensil" + }, + "Code": "5.2.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4fc91fe-68f7-45a6-8863-75bba1029bef", + "Name": { + "en": "Take by force" + }, + "Code": "6.8.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4fe4698-54a2-4bcd-9490-e07ee1ee97af", + "Name": { + "en": "Cry, tear" + }, + "Code": "3.5.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b50f39cb-3152-4d56-9ddc-4b98f763e76a", + "Name": { + "en": "Want" + }, + "Code": "3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b536622c-80a3-4b31-9d22-4ed2fb76324d", + "Name": { + "en": "City" + }, + "Code": "4.6.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b53deac1-26c7-4fe9-9109-8496e248e8c7", + "Name": { + "en": "Election" + }, + "Code": "4.6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5499348-b8ca-4fae-8486-b23863560ae5", + "Name": { + "en": "Chance" + }, + "Code": "4.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b553e989-2b2a-4b1e-a987-ae75f3862501", + "Name": { + "en": "Not care" + }, + "Code": "4.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5700ad7-36a1-4608-8789-8f84007244f8", + "Name": { + "en": "Tired" + }, + "Code": "2.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b59f6fc4-629d-4e62-8673-cf62f8ad8197", + "Name": { + "en": "Mediocre" + }, + "Code": "8.3.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5aa5873-4c66-4d2d-935a-18e0ab231dbb", + "Name": { + "en": "Clumsy" + }, + "Code": "7.2.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5b36c31-c56d-44b9-933c-fe0e62d80c25", + "Name": { + "en": "Share with" + }, + "Code": "4.3.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5d679e3-506a-4994-81a2-be48a698d945", + "Name": { + "en": "Meet for the first time" + }, + "Code": "4.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b602c0e1-5398-4cc9-850b-7cfb5c592d13", + "Name": { + "en": "Blind" + }, + "Code": "2.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b60bf544-7774-4623-8c67-19b32b53dea2", + "Name": { + "en": "God" + }, + "Code": "4.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b62b5fc7-1b20-4f63-8459-8eb4991839ee", + "Name": { + "en": "Crack" + }, + "Code": "7.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b632b00b-b03f-4549-8e02-6402c05a4f06", + "Name": { + "en": "Obey" + }, + "Code": "4.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6686c7c-39de-40b5-adee-67fc7dc54374", + "Name": { + "en": "Cardinal numbers" + }, + "Code": "8.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6a40216-fe93-4b0f-b85b-5622327031d0", + "Name": { + "en": "Egg" + }, + "Code": "1.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6b73d41-e23f-4f22-b01e-7e75f4115fce", + "Name": { + "en": "Purpose, goal" + }, + "Code": "3.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6baa8bf-7691-431d-8715-3937372b9da0", + "Name": { + "en": "Exempt" + }, + "Code": "3.3.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6e45998-9f6a-4b19-9cda-62410a11afa2", + "Name": { + "en": "Sorcery" + }, + "Code": "4.9.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6e9b9c9-632b-48e7-99f7-fa53ebcb3bc5", + "Name": { + "en": "Knitting" + }, + "Code": "6.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6ead5e6-dab5-4941-9017-d03452182709", + "Name": { + "en": "Expert" + }, + "Code": "6.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b760a3a7-ea7f-4a4b-a4b5-81752f2ca158", + "Name": { + "en": "Work poorly" + }, + "Code": "6.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7662b2b-e57c-400b-8ef6-6fb612f5ee9f", + "Name": { + "en": "Growing bananas" + }, + "Code": "6.2.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7801f6e-683b-4d5d-9bab-57f6e593db8c", + "Name": { + "en": "List" + }, + "Code": "3.5.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b790470f-ed4e-42ac-932d-cd15ef701b03", + "Name": { + "en": "Religious purification" + }, + "Code": "4.9.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b79f8775-d8d0-4aa5-b4ab-917f6f3d6c13", + "Name": { + "en": "Chase away" + }, + "Code": "7.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7b0819b-eceb-4f16-ae6d-2298c4df1e6f", + "Name": { + "en": "On time" + }, + "Code": "8.4.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7ed2482-6883-4a02-a992-e86c2573cc74", + "Name": { + "en": "Put down" + }, + "Code": "7.3.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7f058af-9ce6-4dd0-b555-00526975300e", + "Name": { + "en": "Special" + }, + "Code": "7.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7f4fd44-fa17-46a8-bdaf-d3399d6cb0ac", + "Name": { + "en": "Lose, misplace" + }, + "Code": "7.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b82c7ba0-9f4e-44da-bcd0-d30f5b224de5", + "Name": { + "en": "Medicine" + }, + "Code": "2.5.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b844d2f8-d3ef-4605-b038-8bc0a2cff0af", + "Name": { + "en": "Tall" + }, + "Code": "8.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8d2fdb9-22ea-4040-8abb-aeeff0399f23", + "Name": { + "en": "Kill" + }, + "Code": "2.6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8df8589-d03c-4e6d-bbeb-4f24fbf6a1dc", + "Name": { + "en": "Vertical" + }, + "Code": "8.3.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8e633f7-ca67-40cb-84e7-8b42887d161b", + "Name": { + "en": "Philosophy" + }, + "Code": "3.2.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8e66bb4-140c-45b4-89ce-d9a77b9e5d21", + "Name": { + "en": "Names of cities" + }, + "Code": "9.7.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8f59ddd-48de-4b3d-af47-687c9237ccd9", + "Name": { + "en": "Have authority" + }, + "Code": "4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8fc54d8-afd2-4ef8-b811-efb8aa7064db", + "Name": { + "en": "Beside" + }, + "Code": "8.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b917ffec-ab7e-496a-bfe4-35c567fa0785", + "Name": { + "en": "Working with electricity" + }, + "Code": "6.6.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b93bdfa4-486c-44a0-8266-557ccdc78b31", + "Name": { + "en": "What fires produce" + }, + "Code": "5.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b97531df-8256-4796-8335-f69753a8f2e3", + "Name": { + "en": "Idol" + }, + "Code": "4.9.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b9a4b336-080a-4973-a7e3-a9af10fc347c", + "Name": { + "en": "Stomach" + }, + "Code": "2.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b9c752a4-66be-493c-8955-cfa5324a54c1", + "Name": { + "en": "Practice religion" + }, + "Code": "4.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba06de9e-63e1-43e6-ae94-77bea498379a", + "Name": { + "en": "Person" + }, + "Code": "2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796", + "Name": { + "en": "Worried" + }, + "Code": "3.4.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba8d18bd-2556-47a0-aa33-3ebef3e90814", + "Name": { + "en": "Record" + }, + "Code": "3.5.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba98f891-77df-4910-8657-38f4ba79d3a5", + "Name": { + "en": "Reward" + }, + "Code": "4.7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bafa274e-8bf0-4cf7-8ce7-2c28293db809", + "Name": { + "en": "Door" + }, + "Code": "6.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb29001e-97f3-4bb4-8946-7c33b9835fcb", + "Name": { + "en": "Brother, sister" + }, + "Code": "4.1.9.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb2a112f-af6f-4a54-bbf0-ba7b8289e58b", + "Name": { + "en": "Attract" + }, + "Code": "3.4.1.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb4e0a69-db20-4757-beff-5dcb1c5e0f92", + "Name": { + "en": "Oppress" + }, + "Code": "4.7.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb8ddf5f-707d-46c0-aff4-45683d26fd68", + "Name": { + "en": "Primary cases" + }, + "Code": "9.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bba30b56-6cd8-4542-81ab-f983cf1354bd", + "Name": { + "en": "Far" + }, + "Code": "8.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbb21324-089d-4368-a2ac-37c6bbfcbffc", + "Name": { + "en": "Both" + }, + "Code": "8.1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbb897b5-f09b-4263-9f81-826ca61084f1", + "Name": { + "en": "Cleaning" + }, + "Code": "5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbc5b3a2-4c6e-4d07-849b-4d616615a794", + "Name": { + "en": "Past" + }, + "Code": "8.4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbd3c3f1-7387-4ec6-a75d-66c1355a94ef", + "Name": { + "en": "Hoofed animals" + }, + "Code": "1.6.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc61bd8d-295b-4965-a183-703d21a56996", + "Name": { + "en": "Title, name of honor" + }, + "Code": "4.5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db", + "Name": { + "en": "Eye" + }, + "Code": "2.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc96b3e3-6185-4925-b79e-8f0f9555bfb7", + "Name": { + "en": "Language" + }, + "Code": "3.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc9d763c-e4fe-48ab-ad44-87a36f6cc06f", + "Name": { + "en": "Criticize" + }, + "Code": "3.5.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bca1af45-7621-43c0-9152-fac0018e5319", + "Name": { + "en": "Drive along" + }, + "Code": "7.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bcb1252c-7cb4-4fbc-b83f-e5f9c65b4afb", + "Name": { + "en": "Next to" + }, + "Code": "8.5.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bce3f390-452c-4ca9-8c36-5fbcfd6b4755", + "Name": { + "en": "Change behavior" + }, + "Code": "4.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd002dfa-e842-47d6-b11b-3c213cbf133a", + "Name": { + "en": "Fetus" + }, + "Code": "2.6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd31529c-ab67-419b-89a4-949aee8b3b11", + "Name": { + "en": "Act harshly" + }, + "Code": "4.7.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd4a2527-f66c-4f48-922e-8b180bba8ef6", + "Name": { + "en": "Household equipment" + }, + "Code": "5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd7d0c9c-791e-4c34-b9ed-ebddad8f9724", + "Name": { + "en": "Judge, render a verdict" + }, + "Code": "4.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd9bb361-3c12-4c70-8098-40b0df9824ce", + "Name": { + "en": "Lack respect" + }, + "Code": "4.5.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd9de99f-6a92-47ee-b6bc-e9877ea21202", + "Name": { + "en": "Find" + }, + "Code": "7.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bdaecf2f-d0fa-49f7-891e-bcb0a31ae630", + "Name": { + "en": "After" + }, + "Code": "8.4.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bddc70ea-d46f-4e4b-83a1-a47bea858dd6", + "Name": { + "en": "Front" + }, + "Code": "8.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be280123-dda6-49a0-bd8c-5e2855b56159", + "Name": { + "en": "Plant a field" + }, + "Code": "6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be2f2785-7219-4a35-b8d3-aa56b9b78514", + "Name": { + "en": "Multiple things moving" + }, + "Code": "7.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be3559d9-d69f-4e06-8184-071c35aa2e10", + "Name": { + "en": "Without cause" + }, + "Code": "9.6.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be4a63e7-f4ba-4de2-be69-d26219d99cb6", + "Name": { + "en": "Kick" + }, + "Code": "7.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be4ab208-1fa0-463f-9ca0-4c7e3e03aafd", + "Name": { + "en": "Lifting tool" + }, + "Code": "6.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be89e0ba-4c6a-4986-ac0d-859a901b89a1", + "Name": { + "en": "Imagine" + }, + "Code": "3.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf007cd9-925d-4073-a1d6-16d64a45ca25", + "Name": { + "en": "Subjugate" + }, + "Code": "4.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf0b24d2-4bd6-4e9c-8775-a623ace8db56", + "Name": { + "en": "Spice" + }, + "Code": "5.2.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf0bdeeb-564d-407b-8bdf-31221aff7364", + "Name": { + "en": "Appoint, delegate" + }, + "Code": "4.5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf1f9360-6dd4-4ee3-b9f8-a5539baeb53b", + "Name": { + "en": "Growing flowers" + }, + "Code": "6.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf25931d-4760-4c66-abe8-c05a6dc5adbe", + "Name": { + "en": "Be in water" + }, + "Code": "1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf5175f6-fbe4-4ac6-9041-f8aa78b7ac78", + "Name": { + "en": "Execute" + }, + "Code": "4.7.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf6e1719-11ee-4ace-9c84-72019c01aabc", + "Name": { + "en": "Spring, well" + }, + "Code": "1.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf9606ec-9a8e-4822-8bfd-d5eebc58c65b", + "Name": { + "en": "Dark" + }, + "Code": "8.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1", + "Name": { + "en": "Rain" + }, + "Code": "1.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfbfb9b5-363d-4767-a5cb-1b11b348efd6", + "Name": { + "en": "None, nothing" + }, + "Code": "8.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfe8902a-32a7-4092-93b2-9dcf3dce205f", + "Name": { + "en": "Upset" + }, + "Code": "3.4.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfeba2a4-4479-49e9-838c-3baa2ad0fcae", + "Name": { + "en": "Type, kind" + }, + "Code": "8.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c01bbcef-7d89-4753-bafd-3a7f23648982", + "Name": { + "en": "Doctor, nurse" + }, + "Code": "2.5.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c029eed8-2ec0-4f6f-aa22-3a066bb23ea6", + "Name": { + "en": "And, also" + }, + "Code": "9.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c05bf8c3-78f2-4ec5-b0d7-32d4963a5794", + "Name": { + "en": "Made of, material" + }, + "Code": "8.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c09eedd3-c4e1-4cf9-b6d1-a01624c6426a", + "Name": { + "en": "Wipe, erase" + }, + "Code": "5.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c0b7f354-a75c-41d5-a489-ae2df6364d02", + "Name": { + "en": "Travel by land" + }, + "Code": "7.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c0d903bf-6502-45dd-9dd8-cff7f022c696", + "Name": { + "en": "Count" + }, + "Code": "8.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c0f4715e-55c9-4379-ab6f-ad561a5e7151", + "Name": { + "en": "Believe" + }, + "Code": "3.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c103d339-24f2-45c6-8539-d3c445e15c49", + "Name": { + "en": "Prompters of attention " + }, + "Code": "9.6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1144a6e-3fce-4084-93d6-6f305eda8b1f", + "Name": { + "en": "Prosperity" + }, + "Code": "4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c13ca251-6103-4475-85af-933311923f2c", + "Name": { + "en": "Above" + }, + "Code": "8.5.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c16334a0-be29-4a1e-a870-4cb3f1df984d", + "Name": { + "en": "Gather" + }, + "Code": "7.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1a63ba2-1db6-410d-a4ed-5f64d1798bc1", + "Name": { + "en": "Tide" + }, + "Code": "1.3.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1a70060-ba04-4f16-879e-5563492aee02", + "Name": { + "en": "Rich" + }, + "Code": "6.8.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1c1dcb4-8fe5-43ac-9b91-b2b2bc33de5b", + "Name": { + "en": "Threaten" + }, + "Code": "3.3.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1ceebe1-1274-40c1-a932-696265d9d412", + "Name": { + "en": "Yard" + }, + "Code": "6.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c21c28e8-9731-4ee0-acbb-32501bf8abd1", + "Name": { + "en": "Crocodile" + }, + "Code": "1.6.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c223335b-4803-4f1b-bf4d-f1ee077513cf", + "Name": { + "en": "Private, public" + }, + "Code": "4.1.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2630384-2f72-4a96-baed-3fff03383362", + "Name": { + "en": "Harvest" + }, + "Code": "6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c27b87cf-1211-4df2-96b1-12c416edabbe", + "Name": { + "en": "Humor" + }, + "Code": "4.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2b720f5-1123-446e-9f60-088a3272b889", + "Name": { + "en": "Take time" + }, + "Code": "8.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2dbe83a-d638-45ac-a6d5-5f041b9dde71", + "Name": { + "en": "Disabled" + }, + "Code": "2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2ec9cee-7fe3-44f2-9008-c8b42f6f78dd", + "Name": { + "en": "Family names" + }, + "Code": "9.7.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2f01aa8-9f94-43c9-9ada-b1e4a60aba07", + "Name": { + "en": "Arm" + }, + "Code": "2.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c345f278-91ff-463d-b9a6-8abac8a267eb", + "Name": { + "en": "Grass, herb, vine" + }, + "Code": "1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c358b041-7a1a-43d6-8e61-26b9507f559f", + "Name": { + "en": "Meet together" + }, + "Code": "4.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c35cba91-742c-4b98-b848-dfd520d959cf", + "Name": { + "en": "Touch" + }, + "Code": "7.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74", + "Name": { + "en": "Goat" + }, + "Code": "6.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c3b808d4-d94e-4c8e-b7b2-87b4f4a83198", + "Name": { + "en": "Clothes for special occasions" + }, + "Code": "5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c3ddfc77-e3a6-450e-a853-111f5595df87", + "Name": { + "en": "Moods" + }, + "Code": "9.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c3f20ce7-d30e-40fd-af8a-713a65c46cd0", + "Name": { + "en": "Bow" + }, + "Code": "7.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c4330001-83ca-485d-8b9b-09f7e1be60cc", + "Name": { + "en": "Interpreting messages" + }, + "Code": "3.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c4b110cf-d968-4bc6-ac0c-7e70cbad2756", + "Name": { + "en": "Social event" + }, + "Code": "4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c4fdb9ce-93cc-405b-b673-4058821bf794", + "Name": { + "en": "Clock, watch" + }, + "Code": "8.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c5282457-be5f-4ce9-a802-91140cb0a22b", + "Name": { + "en": "Limb" + }, + "Code": "2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc", + "Name": { + "en": "Mining" + }, + "Code": "6.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c5b8c936-1e01-4e86-9145-a2b721ec9e39", + "Name": { + "en": "Dig" + }, + "Code": "7.8.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c60cf6a1-7868-4536-ac73-387bfa26e04b", + "Name": { + "en": "Rebel against authority" + }, + "Code": "4.5.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6132280-d2aa-46f8-9e94-b087dbda09cb", + "Name": { + "en": "Balance" + }, + "Code": "7.2.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6688928-6694-4264-8048-a60b665b5793", + "Name": { + "en": "Tobacco" + }, + "Code": "5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6b62d63-b355-46c9-a8c7-e0a0bf112a9e", + "Name": { + "en": "Infrastructure" + }, + "Code": "6.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6c772af-7b6b-4393-b0da-5b4a329d3426", + "Name": { + "en": "Quantity" + }, + "Code": "8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c72985cf-b07f-4ed5-873a-a2209929667e", + "Name": { + "en": "States" + }, + "Code": "8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c753fc8b-22ae-4e71-807f-56fb3ebd3cdd", + "Name": { + "en": "Sexual relations" + }, + "Code": "2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7990233-ef2e-4ea6-8d1e-ccf56e540394", + "Name": { + "en": "Farmland" + }, + "Code": "6.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c79d49f1-74ec-4dba-a5aa-5e861af63d05", + "Name": { + "en": "Blame" + }, + "Code": "3.5.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c1c25a-d89d-4720-846c-d6e1dd723a17", + "Name": { + "en": "Cooking oil" + }, + "Code": "5.2.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c2d82e-d86c-4bf3-81a1-82772e87d709", + "Name": { + "en": "Between" + }, + "Code": "8.5.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c3aa7d-a4b5-45af-9a31-a640179e8fa4", + "Name": { + "en": "Attribution of an attribute" + }, + "Code": "9.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c85346-158d-4881-839d-9a6a8e47209b", + "Name": { + "en": "Move" + }, + "Code": "7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7ccc5bb-181d-420f-8665-64793fefb37b", + "Name": { + "en": "Perfect" + }, + "Code": "8.3.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7dbd50e-0ff5-42af-a7a9-9eaf03671c49", + "Name": { + "en": "Convenient" + }, + "Code": "8.3.7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c81004a7-499e-4e05-84c8-3d74a17e97fd", + "Name": { + "en": "Care for the teeth" + }, + "Code": "5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c817af65-7cc8-4105-a8ed-47067d97b73b", + "Name": { + "en": "Clothes for special people" + }, + "Code": "5.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8185ca6-567a-40ef-939f-ffefdd9a4770", + "Name": { + "en": "Forever" + }, + "Code": "8.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c82fa28f-7e26-489e-a244-4d69cea87b94", + "Name": { + "en": "Work and occupation" + }, + "Code": "6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8595a5f-4dde-4260-b8d8-265d0554ce93", + "Name": { + "en": "Win" + }, + "Code": "4.8.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8602dc5-5c91-480a-b5ce-1c82fe3da83a", + "Name": { + "en": "Tooth" + }, + "Code": "2.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c880c81f-65dc-4d93-8c39-22920fdbe4c7", + "Name": { + "en": "Wool production" + }, + "Code": "6.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c888c7ac-8cf4-49d2-a33e-20d19d84c47b", + "Name": { + "en": "Pig" + }, + "Code": "6.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8aea8b2-4088-4d20-a0d2-45c2ad974ee1", + "Name": { + "en": "Furrow" + }, + "Code": "8.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8c74ec6-3f7a-4b45-b0e9-399b97c4a800", + "Name": { + "en": "Free to do what you want" + }, + "Code": "3.3.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8c8b1f6-a898-4d5b-a1ce-fa7284915e8f", + "Name": { + "en": "Disaster" + }, + "Code": "4.4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8d94c8f-db0b-4016-bdd2-e41a2eae4288", + "Name": { + "en": "Region" + }, + "Code": "4.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8e3c39c-d895-4e42-8e1e-1574137ba016", + "Name": { + "en": "Types of houses" + }, + "Code": "6.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c956a98a-4c85-4c85-868d-f27f44bd6422", + "Name": { + "en": "Predict" + }, + "Code": "3.2.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c96ac1eb-12f2-47af-9e96-9d99fce7e8f5", + "Name": { + "en": "Receive" + }, + "Code": "7.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c9741b97-ad50-465c-a4ca-b21d488f45fe", + "Name": { + "en": "Physical, non-physical" + }, + "Code": "9.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c982941c-0cff-47aa-9e08-5234a8e0d6e8", + "Name": { + "en": "Growing potatoes" + }, + "Code": "6.2.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c9aee4df-ac3e-4159-bd1a-060db1a5f070", + "Name": { + "en": "Communication" + }, + "Code": "3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c9b5f83e-529d-45af-949f-4cc6b0591b66", + "Name": { + "en": "Improve" + }, + "Code": "8.3.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca0f9b9b-31fc-4ae6-9563-abedc4a5af98", + "Name": { + "en": "Beneficiary (of a patient)" + }, + "Code": "9.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca495e57-a8e0-4294-bfe3-7b7995dc96c7", + "Name": { + "en": "Don\u0027t think so, doubt it" + }, + "Code": "9.4.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca511a0c-5628-4726-8a6e-aa9fa3b73bfc", + "Name": { + "en": "Witness, testify" + }, + "Code": "4.7.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca752706-1c9e-43e7-bd17-845c4736ccd8", + "Name": { + "en": "Approximate" + }, + "Code": "8.1.5.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca91e41a-81c3-4c96-87e6-f67477fcd686", + "Name": { + "en": "Rear a child" + }, + "Code": "2.6.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d", + "Name": { + "en": "Destroy" + }, + "Code": "7.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca9c215a-e568-4d09-b3a9-b5727cd831d6", + "Name": { + "en": "Bury" + }, + "Code": "2.6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cab8e9dc-5e4f-4a12-8b3d-4acbb7ad2059", + "Name": { + "en": "Misunderstand" + }, + "Code": "3.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cac1d7a8-7382-466e-ba4a-ba2bfe50f13b", + "Name": { + "en": "Mass communication" + }, + "Code": "3.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe", + "Name": { + "en": "Growing crops" + }, + "Code": "6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb783ad9-4650-416e-bf63-88c4ca43fe6a", + "Name": { + "en": "Reputation" + }, + "Code": "4.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb95189c-8c74-465b-af07-48e08dbf7c39", + "Name": { + "en": "Emotion" + }, + "Code": "3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb99a086-8c6d-4f90-81db-6afa69ae5455", + "Name": { + "en": "Animal sounds" + }, + "Code": "1.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cba1f6cc-58ac-4d09-aa6a-1661f5945787", + "Name": { + "en": "Understandable" + }, + "Code": "3.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cba6876c-5b48-42f4-ae0a-7fbe9bb971ef", + "Name": { + "en": "Shadow" + }, + "Code": "8.3.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4", + "Name": { + "en": "Laugh" + }, + "Code": "3.5.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cbc24a98-1c64-467e-98aa-251a28e4c0b8", + "Name": { + "en": "Defecate, feces" + }, + "Code": "2.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cbcff912-e1c2-4d9b-9938-85d73e7e7265", + "Name": { + "en": "Some" + }, + "Code": "8.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cc121082-2d07-484e-8a6f-7382f7d71f39", + "Name": { + "en": "Stubborn" + }, + "Code": "3.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cc3f1dc8-a31e-4459-ba13-f82b45df37b5", + "Name": { + "en": "Report" + }, + "Code": "3.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cc6f100a-5220-4f53-801c-b1fdcc619608", + "Name": { + "en": "Old, not young" + }, + "Code": "8.4.6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cca44b46-437c-42ee-93d7-a8820d61d0c8", + "Name": { + "en": "Legal personnel" + }, + "Code": "4.7.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ccbbd16f-58c5-45c1-bfff-1fba64d9740e", + "Name": { + "en": "Aspect--dynamic verbs" + }, + "Code": "9.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cce98603-ff8f-4213-945a-bd6746716139", + "Name": { + "en": "Land" + }, + "Code": "1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd01db6c-8aa6-42d1-93ac-05e81a8be523", + "Name": { + "en": "Serve food" + }, + "Code": "5.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd403434-a5a1-4700-8ad3-b7c9aabd99d9", + "Name": { + "en": "Valley" + }, + "Code": "1.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd4300c9-265e-4457-8e33-4e0c9a4d4ba8", + "Name": { + "en": "Value" + }, + "Code": "8.3.7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd436263-30a3-498c-93f6-3d5682f7f7c0", + "Name": { + "en": "Commerce" + }, + "Code": "6.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd6f1b37-5bdd-4237-8827-b1c947c8e1b4", + "Name": { + "en": "Transparent" + }, + "Code": "2.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd8b2a8b-687b-42e9-91e7-cfb8812b64ee", + "Name": { + "en": "Mistake" + }, + "Code": "4.3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cde96694-79e5-44af-8d38-d988d1938e5f", + "Name": { + "en": "Working with buildings" + }, + "Code": "6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ce30eb9c-8260-476b-878c-0a078d596955", + "Name": { + "en": "Forget" + }, + "Code": "3.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ce6a862d-a4bb-4378-b14d-439806870c41", + "Name": { + "en": "Unlucky" + }, + "Code": "4.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a", + "Name": { + "en": "Self-esteem" + }, + "Code": "3.4.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ceedce41-cdef-4766-9c5e-8ff5608c5464", + "Name": { + "en": "Store the harvest" + }, + "Code": "6.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cf337287-c9fa-43d2-93c4-284f45e262c0", + "Name": { + "en": "Disease" + }, + "Code": "2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cf5f83be-2c19-4cf8-8cc5-53bd32b50530", + "Name": { + "en": "Evaluator" + }, + "Code": "9.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cf93b8e0-9f28-4485-b9d6-22293ccd73ce", + "Name": { + "en": "Lose your way" + }, + "Code": "7.2.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cfb159f7-82f6-4789-b9b4-8f611820f350", + "Name": { + "en": "Spider" + }, + "Code": "1.6.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d01f1c51-522e-4b35-81b3-00577dbfa3bd", + "Name": { + "en": "Color" + }, + "Code": "8.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d030f0c7-31a3-47da-be35-46f1eba63ae9", + "Name": { + "en": "Like, love" + }, + "Code": "3.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d067b555-e53c-4c16-bb09-5314862d8bae", + "Name": { + "en": "Drunk" + }, + "Code": "5.2.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d06dae77-134a-403f-ba88-52ecd66c0522", + "Name": { + "en": "Moss, fungus, algae" + }, + "Code": "1.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d086c2ad-2d11-4250-a25a-dc6538439db6", + "Name": { + "en": "Two" + }, + "Code": "8.1.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d0b14231-1471-41b3-aeb5-69199acaaefb", + "Name": { + "en": "Way, manner" + }, + "Code": "9.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d0dee676-f3ae-43cc-96f1-7e3bb65870f5", + "Name": { + "en": "Fit, size" + }, + "Code": "8.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d10301f3-573c-4005-ad65-1c73fb80b3b6", + "Name": { + "en": "Understand" + }, + "Code": "3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d117aa22-3f18-47c4-9683-51ecf1dc7134", + "Name": { + "en": "Parts of a plant" + }, + "Code": "1.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1687857-0f1d-4098-affb-b283a6677b6b", + "Name": { + "en": "Most, almost all" + }, + "Code": "8.1.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1aecdba-3938-4b0c-a2e6-7dc3b7cc5cde", + "Name": { + "en": "Produce wealth" + }, + "Code": "6.8.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1b3d0f0-5319-4a6a-8a70-2179a8e76d22", + "Name": { + "en": "Need" + }, + "Code": "8.1.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1e58469-52e3-4b50-b0de-00bf9f09f8d4", + "Name": { + "en": "Grandfather, grandmother" + }, + "Code": "4.1.9.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2001c9c-3c37-4910-8b8a-adcffc6fbf26", + "Name": { + "en": "Across" + }, + "Code": "8.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d21db541-4122-465f-9db5-4c76f5e84426", + "Name": { + "en": "Earn" + }, + "Code": "6.8.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d25f7907-091e-4cf7-bd8c-bdb97278b616", + "Name": { + "en": "Hit" + }, + "Code": "7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d27a5602-ece1-452e-9ed6-7261082dc8b8", + "Name": { + "en": "Soon" + }, + "Code": "8.4.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2b61570-af54-44f3-846e-6d7ec9d3737f", + "Name": { + "en": "Room" + }, + "Code": "6.5.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2ca3194-e393-480e-ae1d-dd67bed55227", + "Name": { + "en": "Growth of plants" + }, + "Code": "1.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2e73238-ff99-4ba3-8ce6-d8ae98721710", + "Name": { + "en": "Agree to do something" + }, + "Code": "3.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2f05cc8-1a3f-4bc2-9a2b-38174bb84091", + "Name": { + "en": "Mute" + }, + "Code": "2.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2f516f4-df1c-44f6-8704-76dd52201317", + "Name": { + "en": "Foreigner" + }, + "Code": "4.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d345142f-d51e-4023-a25a-2a4c0f1fbcbf", + "Name": { + "en": "Land preparation" + }, + "Code": "6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d395edc8-fb58-4ba4-8446-dacf8ea0477a", + "Name": { + "en": "Sweat" + }, + "Code": "2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d39b2432-87d5-4f3e-8101-de06001b42d6", + "Name": { + "en": "Each other" + }, + "Code": "9.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d4521b0f-0703-48cc-94a0-f42ccc09959c", + "Name": { + "en": "Indefinite pronouns" + }, + "Code": "9.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d4769748-7c4e-4359-9da5-2ea64d5948d9", + "Name": { + "en": "Milk products" + }, + "Code": "5.2.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d47b69e0-ab4a-4111-aec3-2c889a4e70b3", + "Name": { + "en": "Create" + }, + "Code": "9.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d49f2c9d-1b4a-4370-b107-71f9b9fbdc8e", + "Name": { + "en": "Neighbor" + }, + "Code": "4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d502512c-966b-4752-8636-716fb29facfe", + "Name": { + "en": "Sleep" + }, + "Code": "5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d50f3921-fcea-4ac9-b64a-25bf47dc3292", + "Name": { + "en": "Volcano" + }, + "Code": "1.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d574c970-6834-4566-ae37-f42c7e95483b", + "Name": { + "en": "Heavy" + }, + "Code": "8.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d586a164-ac8f-4356-8aa8-07721c2b5e09", + "Name": { + "en": "Letter" + }, + "Code": "3.5.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d59a84e1-5e12-4cb7-b72b-15c51810ad48", + "Name": { + "en": "Disunity" + }, + "Code": "4.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d60faf11-cc6e-48db-8a13-82f86d78ab00", + "Name": { + "en": "Physical actions" + }, + "Code": "7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d68911f6-6507-483a-b015-44726fdf868a", + "Name": { + "en": "Work" + }, + "Code": "6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d6c29733-beeb-4fc9-975f-5e78a8acc273", + "Name": { + "en": "Work well" + }, + "Code": "6.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7140538-fb99-4af9-8398-8c31a1b79fb5", + "Name": { + "en": "Prevent from moving" + }, + "Code": "7.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7349bac-efc0-41ba-ba60-f23d38e97a36", + "Name": { + "en": "Informal justice" + }, + "Code": "4.6.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d74914e7-e329-49d4-8513-ec8d850241e4", + "Name": { + "en": "Partly" + }, + "Code": "9.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7861def-70c1-470f-bca6-8230cbbaa3e9", + "Name": { + "en": "Look" + }, + "Code": "2.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7ae7208-7869-46e3-90c1-676342c3d7af", + "Name": { + "en": "Cheat" + }, + "Code": "6.8.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7e0ed88-6d5a-44cc-a0fe-070a5aab3e60", + "Name": { + "en": "Fish with hooks" + }, + "Code": "6.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7e4bf3e-e539-43bc-bb43-3ae0980ffb86", + "Name": { + "en": "Shut, close" + }, + "Code": "7.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7e4e538-039f-47bb-aa42-a2cf455668cc", + "Name": { + "en": "Growing wheat" + }, + "Code": "6.2.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d80360f9-7319-40a7-a2bc-fd8718711ba4", + "Name": { + "en": "Before" + }, + "Code": "8.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8366daf-ae1d-4b2c-a447-478c73580639", + "Name": { + "en": "Method" + }, + "Code": "6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8389a63-8b39-4e23-8528-cd756dae2f5c", + "Name": { + "en": "Working with paper" + }, + "Code": "6.6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d83ebe2c-c1d6-49ec-a4a9-1cdced843387", + "Name": { + "en": "Lose consciousness" + }, + "Code": "2.5.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d853597b-f3ed-470b-b6dd-8fe93b8e43eb", + "Name": { + "en": "Quiet" + }, + "Code": "2.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d85391fa-680a-4715-81ac-c0835acac8c5", + "Name": { + "en": "Milk" + }, + "Code": "6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d85d0838-a9e4-4787-8fce-7d0466bc24b9", + "Name": { + "en": "Number of times" + }, + "Code": "8.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8631167-08bd-4571-bc7c-57a4407da51c", + "Name": { + "en": "Politics" + }, + "Code": "4.6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d88d862c-01d4-4b43-9fbe-59208922e022", + "Name": { + "en": "Wait" + }, + "Code": "7.2.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8dfa6fc-84ea-4178-b4f5-95e0c113140a", + "Name": { + "en": "Dissociation" + }, + "Code": "9.6.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f", + "Name": { + "en": "Group of things" + }, + "Code": "8.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d90db6d4-6c78-4ac8-9764-0cafa79b8b31", + "Name": { + "en": "Army" + }, + "Code": "4.8.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d90e71bf-2898-4501-9d09-c518999f83e2", + "Name": { + "en": "Names of mountains" + }, + "Code": "9.7.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d95ed463-ac64-4004-9c3b-0fce2f7639be", + "Name": { + "en": "Move out" + }, + "Code": "7.2.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d975a233-1e48-4313-8bed-aada7460487e", + "Name": { + "en": "Put aside" + }, + "Code": "7.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d98c1c67-b70e-4a35-89db-2e744bd5197f", + "Name": { + "en": "Head" + }, + "Code": "2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d9b9db39-d87e-4d04-8298-1f1b969dbda1", + "Name": { + "en": "General adverbs" + }, + "Code": "9.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d9cb2e69-133d-4525-bca5-50b0f3402cbb", + "Name": { + "en": "Own, possess" + }, + "Code": "6.8.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d9f336cf-0682-4702-ab94-5ade755ddc64", + "Name": { + "en": "Move something in a direction" + }, + "Code": "7.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da203891-90a2-48f0-955a-8a80b6c62af9", + "Name": { + "en": "Arrange an event" + }, + "Code": "6.1.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da39c0d9-a5c1-4f10-bd3b-4e988abcab5a", + "Name": { + "en": "Sorry" + }, + "Code": "3.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da41ea1f-dd09-421d-a1a5-174ff43f4eff", + "Name": { + "en": "Classifiers" + }, + "Code": "9.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da988f73-fc9d-4a23-b70d-22299a7c6097", + "Name": { + "en": "Have, of" + }, + "Code": "9.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dae6488c-7fea-4fa3-84c9-b611d017b6a5", + "Name": { + "en": "Wash clothes" + }, + "Code": "5.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "daefd275-98e3-4534-a991-c7d396b54c69", + "Name": { + "en": "Postpone" + }, + "Code": "8.4.5.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dafc4b97-2b70-4986-b2b4-c05eb060786d", + "Name": { + "en": "Accept" + }, + "Code": "3.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "db2232d9-8b17-4920-936f-2b6249c6f7fa", + "Name": { + "en": "Steal" + }, + "Code": "6.8.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dbebc3bd-2d01-4d62-a009-866c18ee3527", + "Name": { + "en": "Miscarriage" + }, + "Code": "2.6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc177f3c-d0fd-4232-adf1-a77b339cdbb2", + "Name": { + "en": "Building" + }, + "Code": "6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb", + "Name": { + "en": "Sun" + }, + "Code": "1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc1ab28c-3e1e-474c-8359-2548b7ad5595", + "Name": { + "en": "Describe" + }, + "Code": "3.5.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc71598d-21a2-4598-9c12-13978796d2c9", + "Name": { + "en": "Sweep, rake" + }, + "Code": "5.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dd12ac0f-55cc-4c79-a50c-d23cc7ea60b3", + "Name": { + "en": "Bathe" + }, + "Code": "5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dd3e872a-fb50-4204-9646-7a24c644013b", + "Name": { + "en": "Names of languages" + }, + "Code": "9.7.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dd830047-d7f5-4010-a8ea-ae20468a0cbf", + "Name": { + "en": "Greedy" + }, + "Code": "6.8.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ddc96103-4bc5-44d3-9412-c57569d2a9f5", + "Name": { + "en": "Festival, show" + }, + "Code": "4.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ddef260e-b183-47f7-837e-165ffbd1af2c", + "Name": { + "en": "Put in front" + }, + "Code": "7.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de1ffd73-af3b-47a2-8e98-ac1659a84cac", + "Name": { + "en": "Sensible" + }, + "Code": "4.3.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de544ebd-9f94-4831-8887-944c3bbbc254", + "Name": { + "en": "Days of the week" + }, + "Code": "8.4.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de6b15d3-6409-4998-b03d-903133f4ad70", + "Name": { + "en": "Sing" + }, + "Code": "4.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de7b8df5-83a7-4456-a63a-1075ff17dbaf", + "Name": { + "en": "Blemish" + }, + "Code": "8.3.7.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ded0e58d-8ad7-4909-b0f1-b9ab9c10bb0d", + "Name": { + "en": "King\u0027s family" + }, + "Code": "4.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "deff977c-a664-4456-9d44-a5127dd2a7d1", + "Name": { + "en": "Wander" + }, + "Code": "7.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df149819-608f-46cd-ba0f-55f1d9d2e8ec", + "Name": { + "en": "Speed" + }, + "Code": "8.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df2b9d7a-9b90-4704-8bc3-11dcffe985f4", + "Name": { + "en": "Skin" + }, + "Code": "2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df2ee830-0668-43d7-8a32-e2fd3e7b31d8", + "Name": { + "en": "Tense" + }, + "Code": "9.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df47f55d-b15d-4261-881e-3c4b0dc6d9be", + "Name": { + "en": "Extend" + }, + "Code": "7.3.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df647b1a-ed79-4a8e-b781-56ed25fe4405", + "Name": { + "en": "Buddhism" + }, + "Code": "4.9.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df9ee372-e92e-4f73-aac5-d36908497698", + "Name": { + "en": "Think" + }, + "Code": "3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dfdcfa24-b013-4566-af4a-28ef1dfd4742", + "Name": { + "en": "Measure" + }, + "Code": "8.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dfe59469-d1bf-4ed2-9faa-6d5af52eefdd", + "Name": { + "en": "Fill, cover" + }, + "Code": "7.5.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e033ca92-ee8c-4ab9-9368-5f6f4e942987", + "Name": { + "en": "Contact" + }, + "Code": "3.5.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e072bd42-eb0f-48c8-97fd-ae9ca8bc3a75", + "Name": { + "en": "Fight for something good" + }, + "Code": "4.8.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e080687b-0900-4dd0-9677-e3aaa3eae641", + "Name": { + "en": "Explain" + }, + "Code": "3.5.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e08e252a-9227-42e4-bcb8-b803d25071b6", + "Name": { + "en": "Embarrassed" + }, + "Code": "3.4.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0a8e1d9-c43e-4092-a8dc-476a3417924e", + "Name": { + "en": "Confident" + }, + "Code": "3.4.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0ad6bb1-d422-408a-83f8-f1a7661ed225", + "Name": { + "en": "Up" + }, + "Code": "8.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0b00a13-8648-4635-afe5-0be3c0b6a05c", + "Name": { + "en": "Maybe" + }, + "Code": "9.4.4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0c32642-7c51-4e23-a776-f63f2f2f936d", + "Name": { + "en": "Uncertain" + }, + "Code": "9.4.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0e83cc9-b876-47f6-8e66-60c9c505b927", + "Name": { + "en": "Danger" + }, + "Code": "4.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0e8af5a-04c1-49a1-9955-9a2af7879068", + "Name": { + "en": "Secret" + }, + "Code": "3.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e10b9449-08a3-4c13-aff2-31486749b62f", + "Name": { + "en": "Investigate a crime" + }, + "Code": "4.7.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e11d6360-6fa9-45a9-a23e-2252a301cf86", + "Name": { + "en": "Leaven" + }, + "Code": "5.2.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e173ea34-c216-4702-aa24-ca9ab40d48dd", + "Name": { + "en": "Reason" + }, + "Code": "9.6.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e173f481-ec57-4d1c-b517-be38ccb038f5", + "Name": { + "en": "Leave an organization" + }, + "Code": "4.2.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e1ac83c2-352f-4a2e-9612-99e66d6d3d0c", + "Name": { + "en": "Slave" + }, + "Code": "4.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e1dd83dd-955a-4bc7-a761-fc91555da1f8", + "Name": { + "en": "Completely" + }, + "Code": "9.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e1e0b800-85ad-4886-abe5-9f67c022a5ed", + "Name": { + "en": "End, point" + }, + "Code": "8.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e22d860a-d207-4649-8ab5-4592b838febb", + "Name": { + "en": "Sea mammal" + }, + "Code": "1.6.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e27adda9-0761-4b7f-abbf-24938ce1c01a", + "Name": { + "en": "Drama" + }, + "Code": "4.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e2806bed-b450-4469-900a-1afa7ded2224", + "Name": { + "en": "Outer part" + }, + "Code": "8.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e28f3f79-d4a5-402c-8a70-196856791078", + "Name": { + "en": "Do" + }, + "Code": "9.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e2d3294b-4463-48bb-95e4-8c9b5238ecec", + "Name": { + "en": "Mock" + }, + "Code": "3.5.1.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e311cc3a-a387-449e-a05a-07ed9678411d", + "Name": { + "en": "Religious things" + }, + "Code": "4.9.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e3300171-d7b2-4fb4-a103-e8fdcf3ff2ed", + "Name": { + "en": "Area of knowledge" + }, + "Code": "3.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e3a6f918-4b0f-4515-bd6c-4f3370bcbf67", + "Name": { + "en": "Join an organization" + }, + "Code": "4.2.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e43c9905-ae67-4627-8b10-bd7a453828b4", + "Name": { + "en": "Stick together" + }, + "Code": "7.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e442afe1-e7cd-4ab2-b456-963e2e041a1e", + "Name": { + "en": "Move slowly" + }, + "Code": "7.2.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e4517880-aa2d-4977-b55a-dcb0b6d1f533", + "Name": { + "en": "Beautiful" + }, + "Code": "2.3.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e45b8bac-9623-4f84-a113-9dec13a8db64", + "Name": { + "en": "Talk about a subject" + }, + "Code": "3.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e482bb5a-5a32-4bc5-a0de-32cbe0aa7908", + "Name": { + "en": "Speech style" + }, + "Code": "3.5.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e496a6d3-a00c-470e-81c3-314f3f97840e", + "Name": { + "en": "Food from leaves" + }, + "Code": "5.2.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e4bacc52-dcaa-4e68-b736-f0b5d9aeca41", + "Name": { + "en": "Class, lesson" + }, + "Code": "3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e4e05724-01ec-4c61-90f0-b8658cc8ca51", + "Name": { + "en": "Something used to see" + }, + "Code": "2.3.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e5020b79-6fb0-4be4-a359-d4f899da5c7e", + "Name": { + "en": "Quarrel" + }, + "Code": "3.5.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e545baab-581d-4af8-81f2-5a884e272349", + "Name": { + "en": "Beast of burden" + }, + "Code": "6.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e54cd744-d106-4bcf-bd07-b8783c075c21", + "Name": { + "en": "Fashionable" + }, + "Code": "3.4.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00", + "Name": { + "en": "Divide into pieces" + }, + "Code": "7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6221c7a-4608-4114-ba9f-532a3b943113", + "Name": { + "en": "Parts of a bird" + }, + "Code": "1.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e626c65e-eb79-4230-b07a-a6d975d3fe3d", + "Name": { + "en": "Mouth" + }, + "Code": "2.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e64e647e-a5fb-463c-8eef-44879e2e70b2", + "Name": { + "en": "Markers expecting a negative answer" + }, + "Code": "9.4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6b21531-b7d0-4e37-b01b-3ca49a285168", + "Name": { + "en": "Drought" + }, + "Code": "1.1.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6c9fe4c-199e-4934-b622-739a85b0830d", + "Name": { + "en": "Organize" + }, + "Code": "7.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6cf2c28-7630-41d7-835d-bd171ab67378", + "Name": { + "en": "Altruistic, selfless" + }, + "Code": "4.3.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6ec43ef-0100-4cf4-a047-c575ee8613b4", + "Name": { + "en": "Control" + }, + "Code": "3.3.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7119442-3063-422a-a03e-d02e570ccd0f", + "Name": { + "en": "Not have" + }, + "Code": "7.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e76227e8-4a04-4fbd-a16e-5baa3d9e97a9", + "Name": { + "en": "Animal actions" + }, + "Code": "1.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e791df50-8880-4080-a5ee-d4e58bb7b8ca", + "Name": { + "en": "Free time" + }, + "Code": "4.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7c58c11-2911-446a-96b0-2113247f3792", + "Name": { + "en": "Kinship" + }, + "Code": "4.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7caa24f-155d-47cd-946d-cc0d06dfc764", + "Name": { + "en": "Love" + }, + "Code": "4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7e5dbf2-6d5b-4869-b357-8a7860c29002", + "Name": { + "en": "Solutions of water" + }, + "Code": "1.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7f94aea-ba50-481d-b640-d5cd8bdedc72", + "Name": { + "en": "Urinate, urine" + }, + "Code": "2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e83586c6-8d8e-4a23-bdda-a1731a5ece22", + "Name": { + "en": "Defend against accusation" + }, + "Code": "4.7.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e836b01b-6c1a-4d41-b90a-ea5f349f88d4", + "Name": { + "en": "Air" + }, + "Code": "1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e86364ac-6fa1-4aad-a6c1-068d56b6a1f1", + "Name": { + "en": "Strong, brittle" + }, + "Code": "8.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e8ec3885-c692-4b90-a5b3-4c86da642666", + "Name": { + "en": "Names of rivers" + }, + "Code": "9.7.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e931da8a-efc1-46cb-836a-72fba4a1eb4f", + "Name": { + "en": "Take somewhere" + }, + "Code": "7.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e949f393-2a5b-4792-af8f-75138322ceee", + "Name": { + "en": "Strong" + }, + "Code": "2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e94a5cf3-1fd4-4b52-902f-bbf0ad6bac2b", + "Name": { + "en": "Only" + }, + "Code": "8.1.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e96f6860-0914-4324-9c49-48f24a0ff7f1", + "Name": { + "en": "Speak well" + }, + "Code": "3.5.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9947962-a243-4a44-a94d-64d68718d88c", + "Name": { + "en": "Independent" + }, + "Code": "4.5.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c", + "Name": { + "en": "Empty" + }, + "Code": "8.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9ef98d9-8844-4804-88a5-614493d150f5", + "Name": { + "en": "Alert" + }, + "Code": "3.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9fdc131-addb-4db6-8f79-ae0044e1eb81", + "Name": { + "en": "Sacred writings" + }, + "Code": "4.9.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea17aba7-6d4e-4dbf-89ea-84a1b1c47647", + "Name": { + "en": "Big container, volume" + }, + "Code": "8.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea2d0dc5-2cdb-4686-9f48-abe65ed295a4", + "Name": { + "en": "Move past, over, through" + }, + "Code": "7.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea46de30-a1a9-4828-84a8-9165f61f8b20", + "Name": { + "en": "Fishing" + }, + "Code": "6.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea7c06d0-5e33-4702-b6a0-51582b216fe8", + "Name": { + "en": "Distribution" + }, + "Code": "9.6.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea839451-f89e-4432-b361-3086ca4f13fd", + "Name": { + "en": "Accustomed to" + }, + "Code": "6.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eac4b58e-1fd7-4ce1-9a68-c7516470e876", + "Name": { + "en": "Realize" + }, + "Code": "3.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eaed8c63-9f97-4116-927c-19f364a99e72", + "Name": { + "en": "Unfriendly" + }, + "Code": "4.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eafdea8e-521e-4614-8fd5-e8446adf9203", + "Name": { + "en": "Debate" + }, + "Code": "3.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb00b4c2-5b87-4ef8-9548-800fc5c9b524", + "Name": { + "en": "Damage" + }, + "Code": "7.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb07e333-38d2-4ddb-9bc9-5990403600b4", + "Name": { + "en": "Fishing equipment" + }, + "Code": "6.4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb0c9e02-e4c1-4e5e-84b6-be63aaf439d5", + "Name": { + "en": "Nephew, niece" + }, + "Code": "4.1.9.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb662979-604c-455e-a2c6-a84b03a2ee3a", + "Name": { + "en": "Early" + }, + "Code": "8.4.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb821083-3fb0-441a-9f1d-ad2a9ed918d8", + "Name": { + "en": "Support" + }, + "Code": "7.3.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb842dc1-ad9c-4c1a-9eb2-a48b7f3092be", + "Name": { + "en": "Air force" + }, + "Code": "4.8.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ebac5ec8-dc4c-4b2b-a727-3ca82404cdbb", + "Name": { + "en": "Demonstrate" + }, + "Code": "3.5.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ebb5f3e5-bfe5-4a40-986a-938c1bdb9c76", + "Name": { + "en": "Terms of endearment" + }, + "Code": "9.7.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec118a28-fd23-48b3-8819-bfe1329f028d", + "Name": { + "en": "Reflect, mirror" + }, + "Code": "2.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec1bcace-fc10-45df-8e1f-29bce1ef786a", + "Name": { + "en": "Speak with others" + }, + "Code": "3.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec6f626c-e7a0-4ec7-a541-d683f20c9271", + "Name": { + "en": "Vicinity" + }, + "Code": "8.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec79e90e-ecd3-497f-bc14-ac64181f53d7", + "Name": { + "en": "Do evil to" + }, + "Code": "4.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec8e1481-827c-4554-bf50-0d3f592f3702", + "Name": { + "en": "Cloth" + }, + "Code": "6.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec90e061-e6a0-435f-8784-7269a24c670a", + "Name": { + "en": "Give pledge, bond" + }, + "Code": "6.8.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec998dc6-d509-4832-8434-d2abac34ba70", + "Name": { + "en": "Community" + }, + "Code": "4.6.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecaff061-6a12-4ad6-b818-9b140a9a3e11", + "Name": { + "en": "Design" + }, + "Code": "9.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecbdf1c5-9d7f-4446-b6a1-644a379a480b", + "Name": { + "en": "Cheap" + }, + "Code": "6.8.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecc39bc2-6336-48ca-be46-cf5e49a3c267", + "Name": { + "en": "Insect" + }, + "Code": "1.6.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecf1cce7-ed58-44bf-870a-e8579b309c54", + "Name": { + "en": "Combinative relation" + }, + "Code": "9.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecf9ebd7-f991-41df-98cd-bcf1254d5d0b", + "Name": { + "en": "Go first" + }, + "Code": "7.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed2113c8-1784-4808-ab1a-fd269f86fa99", + "Name": { + "en": "Accounting" + }, + "Code": "6.8.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed4a2ca6-c03c-4c72-9431-b72fb7294b8f", + "Name": { + "en": "Wedding" + }, + "Code": "2.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed7930df-e7b4-43c9-a11a-b09521276b57", + "Name": { + "en": "Smell" + }, + "Code": "2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed976bbe-4fb2-4365-b136-d2fce077a73f", + "Name": { + "en": "Back" + }, + "Code": "8.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "edbfc928-049c-4cb7-8c88-8e8af38287c7", + "Name": { + "en": "Romantic love" + }, + "Code": "2.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "edeb9458-3bdb-4d14-aaa1-6eb457307b9c", + "Name": { + "en": "Hortative" + }, + "Code": "9.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "edf17f72-7e7a-4f8d-a5ee-f4889492d73a", + "Name": { + "en": "Meaningless" + }, + "Code": "3.5.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee0585b1-627a-4a71-888d-b5d82619431e", + "Name": { + "en": "Names of countries" + }, + "Code": "9.7.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee446395-781b-4651-afef-cad78b71f843", + "Name": { + "en": "Reptile" + }, + "Code": "1.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee6e993c-5551-42ae-b35e-26bc6aeeb3a4", + "Name": { + "en": "Men\u0027s clothing" + }, + "Code": "5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee8a20b7-4202-489a-b8cd-bdebaf770313", + "Name": { + "en": "Alcohol preparation" + }, + "Code": "5.2.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eea7c79b-6150-4aba-8105-a94b7e6aeab7", + "Name": { + "en": "Faithful" + }, + "Code": "4.3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eec72226-106c-4825-b245-6e18110ee917", + "Name": { + "en": "Roof" + }, + "Code": "6.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eeee02e1-157e-4786-ab92-80c92e5023b8", + "Name": { + "en": "Window" + }, + "Code": "6.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eef8c50e-c391-482c-9f60-1bba2d8892b3", + "Name": { + "en": "Radio, television" + }, + "Code": "3.5.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef025cd9-dd92-442b-a8f9-fe7ac944ccec", + "Name": { + "en": "Catch" + }, + "Code": "7.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef409fc6-bd89-4cc6-ade5-abb882272313", + "Name": { + "en": "Prefer" + }, + "Code": "3.4.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef5ee2be-8a32-452a-818b-80191edb8e41", + "Name": { + "en": "Growing trees" + }, + "Code": "6.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef6d136e-ac1d-48b9-819d-252485534557", + "Name": { + "en": "Legal contract" + }, + "Code": "4.7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef860ee3-a4a5-4a42-b810-fdf41e35d151", + "Name": { + "en": "Religious person" + }, + "Code": "4.9.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef876104-eb3e-420d-9c7b-124538a7b2a6", + "Name": { + "en": "Point at" + }, + "Code": "3.5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "efd03c89-bf8b-4d46-a921-06cc06f28356", + "Name": { + "en": "Participate" + }, + "Code": "4.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "efe8e7b5-e008-4a3a-b3e1-23ae03a0083e", + "Name": { + "en": "Cutting tool" + }, + "Code": "6.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "efef45bd-26be-46f8-b85b-424be55bcdac", + "Name": { + "en": "New" + }, + "Code": "8.4.6.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "effc49dd-6322-4302-899c-4cf540f0e2e4", + "Name": { + "en": "Prepared food" + }, + "Code": "5.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f02ae505-d6b7-4b30-9d97-8505d0d1a0c7", + "Name": { + "en": "Discourse markers" + }, + "Code": "9.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0404b23-db91-46c7-87e1-9f1be0712980", + "Name": { + "en": "Fable, myth" + }, + "Code": "3.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f07f867d-808f-4750-92ca-859aea59e58c", + "Name": { + "en": "Live, stay" + }, + "Code": "5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0de6c5a-3df6-4483-8c63-2d8fcd6c97be", + "Name": { + "en": "Malnutrition, starvation" + }, + "Code": "2.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4", + "Name": { + "en": "Study" + }, + "Code": "3.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0f3c371-166e-4a66-849f-60d6fa7ad889", + "Name": { + "en": "Poetry" + }, + "Code": "3.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0fdbdfa-094e-4bec-ae19-af23d2c02ed6", + "Name": { + "en": "Contentment" + }, + "Code": "3.4.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f1373316-7917-4dca-9d33-c6b520bd4034", + "Name": { + "en": "Working with machines" + }, + "Code": "6.6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f1af3f4c-6e0e-4cfa-adcf-9dcddf05feab", + "Name": { + "en": "Guess" + }, + "Code": "3.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f2022802-4f43-4fa2-8c58-33a8b9e75895", + "Name": { + "en": "Increase" + }, + "Code": "8.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f211defe-d80f-4e40-9842-af19cb0719e7", + "Name": { + "en": "Judaism" + }, + "Code": "4.9.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f2342d42-bdc4-449c-9891-58f90318b9f1", + "Name": { + "en": "News, message" + }, + "Code": "3.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f29dccae-1654-4eb7-8aae-04f7df4fe90c", + "Name": { + "en": "Right, proper" + }, + "Code": "8.3.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f2d0f288-5bbe-4fa0-9e8f-ddcc74891701", + "Name": { + "en": "Mourn" + }, + "Code": "2.6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f352a437-58f2-4920-aec3-eda8041f7447", + "Name": { + "en": "First" + }, + "Code": "8.4.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3627c41-5daf-4f73-ac42-8a0522035e0b", + "Name": { + "en": "Medicinal plants" + }, + "Code": "2.5.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3654a7f-d16e-4870-9ef0-4b4268faeffb", + "Name": { + "en": "Discontent" + }, + "Code": "3.4.2.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f38f8344-838f-44ba-b103-22289c2d2793", + "Name": { + "en": "Wet" + }, + "Code": "1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f39b14c4-52cf-4afa-956c-f0f5815ef6ac", + "Name": { + "en": "Check" + }, + "Code": "3.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3a26e0a-727f-43ab-9310-88b8cec8f6d7", + "Name": { + "en": "Temporary" + }, + "Code": "8.4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3d162d7-da79-4ce4-9610-040f03b57d9d", + "Name": { + "en": "Unusual birth" + }, + "Code": "2.6.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3dbb078-6265-4861-a6e3-46cc151c5d72", + "Name": { + "en": "Complain" + }, + "Code": "3.5.1.8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4491f9b-3c5e-42ab-afc0-f22e19d0fff5", + "Name": { + "en": "Language and thought" + }, + "Code": "3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4580c19-ba9e-4f71-a46a-6f3c4b19c36c", + "Name": { + "en": "Travel by water" + }, + "Code": "7.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f45a456e-8e23-4364-8842-047cc73f529b", + "Name": { + "en": "Space, room" + }, + "Code": "8.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f472b2d2-b4d3-4852-914d-71b66bdb6f26", + "Name": { + "en": "Hang" + }, + "Code": "7.3.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f47d681b-4f0d-43ca-a465-2e1724825752", + "Name": { + "en": "Grandson, granddaughter" + }, + "Code": "4.1.9.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4829d9d-a93f-4fc5-918c-6d4c501a6573", + "Name": { + "en": "Out, outside" + }, + "Code": "8.5.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4b18e9c-b465-4763-ba79-d7eed2cebcfa", + "Name": { + "en": "Move sideways" + }, + "Code": "7.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4b77866-c607-43f0-b816-95459c269525", + "Name": { + "en": "Foolish talk" + }, + "Code": "3.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4ec8f2e-f89e-40c1-ae50-900927d20af6", + "Name": { + "en": "Impolite" + }, + "Code": "4.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4ed1712-c072-4213-b89d-eb3a9be233b2", + "Name": { + "en": "Natural" + }, + "Code": "1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4f99472-0b23-42b9-8b51-1d56fe24715b", + "Name": { + "en": "Multiple births" + }, + "Code": "2.6.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5156cde-9735-4249-920d-597fb0a7a8e3", + "Name": { + "en": "Break, wear out" + }, + "Code": "7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f51bcafa-e624-4555-b8f1-b5726d74734d", + "Name": { + "en": "Laws" + }, + "Code": "4.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5567550-e3c9-4589-8f88-8159eadcd194", + "Name": { + "en": "Custom" + }, + "Code": "4.3.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5642647-9b9c-499b-a66e-349593c863f1", + "Name": { + "en": "Say nothing" + }, + "Code": "3.5.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f56a2511-10cc-4829-940d-49051429bfba", + "Name": { + "en": "Liquid" + }, + "Code": "1.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f595deab-1838-4ddb-9ebe-55fb3007b309", + "Name": { + "en": "Military organization" + }, + "Code": "4.8.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5e2ad18-5ad4-4186-9572-b1542096759e", + "Name": { + "en": "Soldier" + }, + "Code": "4.8.3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6134be5-3f96-4750-a03e-fca381a42db1", + "Name": { + "en": "Animism " + }, + "Code": "4.9.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6896060-4d5c-45e2-b89a-f9f6328a479c", + "Name": { + "en": "Usual" + }, + "Code": "8.3.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6e416b3-50b1-4e48-8a39-2998725b1c79", + "Name": { + "en": "Divorce" + }, + "Code": "2.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6eb81d5-caba-4735-be6f-ae038656b555", + "Name": { + "en": "Crafts" + }, + "Code": "6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f70907c6-a064-425a-830f-e669319c38da", + "Name": { + "en": "Lead" + }, + "Code": "4.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f718fc15-59b2-4b6a-a9e3-39b3e8d487d7", + "Name": { + "en": "Grow, get bigger" + }, + "Code": "2.6.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f726d9bb-ae80-4c01-bdef-b600cb27736e", + "Name": { + "en": "Business organization" + }, + "Code": "6.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f732bdb5-9a04-468a-b50b-510f94d20fb4", + "Name": { + "en": "Table" + }, + "Code": "5.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f74f28d1-8742-4c9f-95dc-d08336e91249", + "Name": { + "en": "Youth" + }, + "Code": "2.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f76c3803-1c7a-4181-9a87-64ae7231a67d", + "Name": { + "en": "Here, there" + }, + "Code": "8.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f77053f4-ed5a-4376-bcba-17552ea447ba", + "Name": { + "en": "Prepare something for use" + }, + "Code": "6.1.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7706644-542f-4fcb-b8e1-e91d04c8032a", + "Name": { + "en": "Body condition" + }, + "Code": "2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7960e84-5af9-4999-9028-783058aa8c5c", + "Name": { + "en": "All" + }, + "Code": "8.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7b7eb3c-b784-4ba5-8dac-a68fd27ce0ea", + "Name": { + "en": "Plant diseases" + }, + "Code": "1.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7da1907-e6c5-4d21-a8e8-81376f3467df", + "Name": { + "en": "Conflict" + }, + "Code": "4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7e625a6-53e3-4f9b-8764-119e3906f5cf", + "Name": { + "en": "Unmarried" + }, + "Code": "2.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f81b7632-3e5a-4a2d-8a93-648872a6616b", + "Name": { + "en": "Social group" + }, + "Code": "4.2.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f858278a-2727-4403-9cf0-565cdececb1e", + "Name": { + "en": "Condition" + }, + "Code": "9.6.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f883266a-146a-41c7-b1db-85120840c3a8", + "Name": { + "en": "Impossible" + }, + "Code": "9.4.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f8863b67-b911-4334-a1b6-6eb913bd14af", + "Name": { + "en": "Wide" + }, + "Code": "8.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f899802d-bd32-427f-a101-c84219f7e14e", + "Name": { + "en": "Substance, matter" + }, + "Code": "1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f8c6a6a9-49f0-408a-9237-a66e852da7d3", + "Name": { + "en": "Calendar" + }, + "Code": "8.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f94e9041-49b0-4d25-aa54-9446c5ab45f4", + "Name": { + "en": "Instead" + }, + "Code": "9.6.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f950b7cc-fb85-4dbb-b8ca-934d38cae7fc", + "Name": { + "en": "Conjunctions" + }, + "Code": "9.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f9516c66-ac2c-49dd-951a-0d3606450463", + "Name": { + "en": "Discriminate, be unfair" + }, + "Code": "4.7.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f957a4aa-d3d4-4dad-93d1-20565b5158d4", + "Name": { + "en": "Cousin" + }, + "Code": "4.1.9.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f9935962-9a14-485d-9bef-bd4a52dd92c1", + "Name": { + "en": "Governing body" + }, + "Code": "4.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f9d020d6-b129-4bb8-9509-3b4a6c27482e", + "Name": { + "en": "Interested" + }, + "Code": "3.4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa32115e-e389-47bd-91e1-61779172ccf2", + "Name": { + "en": "Cause of disease" + }, + "Code": "2.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa41dbc5-adbb-4ad0-9fd2-0278d4689a28", + "Name": { + "en": "Non-relative" + }, + "Code": "4.1.9.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa660c9d-8787-4335-8744-3dbc139b2df1", + "Name": { + "en": "Accuse, confront" + }, + "Code": "4.7.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa8e72a0-1bfe-4b49-a287-293b44213960", + "Name": { + "en": "Adverbial clauses" + }, + "Code": "9.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "faf0ae24-6584-4766-a93b-389c1cb06d8d", + "Name": { + "en": "Turtle" + }, + "Code": "1.6.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fb84538a-17a8-4adc-8d50-e2b66f8e4099", + "Name": { + "en": "Number" + }, + "Code": "8.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fba27833-d6f1-4c36-ac39-28902b29261b", + "Name": { + "en": "Like, similar" + }, + "Code": "8.3.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fbf40f2e-e743-479d-80b2-63325407d5d1", + "Name": { + "en": "Markers of identificational and explanatory clauses " + }, + "Code": "9.6.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc0afb69-a4d4-439a-91cd-ed0ce67677b5", + "Name": { + "en": "Cooking methods" + }, + "Code": "5.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc170f70-520e-4f3e-b8b8-98e4b898fd24", + "Name": { + "en": "Edge" + }, + "Code": "8.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc193988-26ca-49e9-849a-b12456d98792", + "Name": { + "en": "Crazy" + }, + "Code": "4.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc1e4ea7-15fa-4bbf-8697-f312762504ba", + "Name": { + "en": "Comb hair" + }, + "Code": "5.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc82fcec-d03c-4fb0-bf62-714c71754402", + "Name": { + "en": "Adult" + }, + "Code": "2.6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fcc204a3-eae4-46d1-a9dc-08864fde1772", + "Name": { + "en": "Less" + }, + "Code": "8.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fcd22c85-7ee1-4d31-8633-9dbd32344211", + "Name": { + "en": "Move toward something" + }, + "Code": "7.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fcf16495-5226-4192-afdb-e748192efc3a", + "Name": { + "en": "Year" + }, + "Code": "8.4.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fd33670e-ef16-4566-a62e-aa077e58407b", + "Name": { + "en": "Types of sounds" + }, + "Code": "2.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fd7e03f8-61c9-47e9-afa4-ab8917db03a5", + "Name": { + "en": "Appease" + }, + "Code": "4.8.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fd9b8618-1f62-419b-85c3-365a12e85523", + "Name": { + "en": "Agree with someone" + }, + "Code": "3.2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fda0c1ac-5728-4ba2-9f8e-827f161b5bb1", + "Name": { + "en": "Watch" + }, + "Code": "2.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe58ae61-ab0b-43a4-86fb-d9aedd199932", + "Name": { + "en": "Mix" + }, + "Code": "7.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe66d433-5135-498e-a29d-b42bf0317252", + "Name": { + "en": "Meddle" + }, + "Code": "4.3.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe89a0f4-2155-424b-bf90-c1133dc41c8d", + "Name": { + "en": "Cabinet" + }, + "Code": "5.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe9253f4-d063-4d63-91af-85273d61337f", + "Name": { + "en": "Compare" + }, + "Code": "8.3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "feca6b23-1ca1-4d99-ac79-3672d1d1f7db", + "Name": { + "en": "Fine" + }, + "Code": "4.7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fed2b7bd-2315-4085-b0a7-2ced988120f3", + "Name": { + "en": "Choose" + }, + "Code": "3.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff0a16f2-c44d-4ed4-9520-c214acfb68e5", + "Name": { + "en": "Rule" + }, + "Code": "4.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff505092-6d88-4b5e-8095-04e471d7ad4c", + "Name": { + "en": "Resurrection" + }, + "Code": "4.9.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff736f67-197b-46b9-bc14-edbeb1fb3d5a", + "Name": { + "en": "Have wealth" + }, + "Code": "6.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff73fb69-7dac-43e2-876b-0ead264c3f2d", + "Name": { + "en": "Black" + }, + "Code": "8.3.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff7e3abd-6810-4128-83c9-701b4925c2fe", + "Name": { + "en": "Fire" + }, + "Code": "5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff9dfc70-526d-405e-b613-5a2a21c1b2d8", + "Name": { + "en": "Farm worker" + }, + "Code": "6.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffa13b7d-5eaa-43be-8518-51d9aa08f321", + "Name": { + "en": "Numbered group" + }, + "Code": "8.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffcc57f8-6c6d-4bf4-85be-9220ca7c739d", + "Name": { + "en": "Marriage" + }, + "Code": "2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffe84c4f-8c38-4b84-ac36-e79ffadbd426", + "Name": { + "en": "Free of charge" + }, + "Code": "6.8.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fffa74fb-5b5c-453f-9120-94686033d894", + "Name": { + "en": "Swim" + }, + "Code": "7.2.4.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + }, + { + "Id": "98c273c4-f723-4fb0-80df-eede2204dfca", + "Name": { + "en": "Derivative", + "pt": "Derivado" + }, + "DeletedAt": null + }, + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + }, + { + "Id": "7d3b1116-4489-4cc1-bc17-1734198e044f", + "Name": { + "en": "Abstract", + "pt": "Substantivo Abstrato" + }, + "DeletedAt": null + }, + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + }, + { + "Id": "6fcdabd6-a74f-47b1-b36d-bd40eaebed36", + "Name": { + "en": "Benefactive", + "pt": "Aplicativa" + }, + "DeletedAt": null + }, + { + "Id": "b2276dec-b1a6-4d82-b121-fd114c009c59", + "Name": { + "en": "Idiom", + "pt": "Palavra idioma\u0301tica" + }, + "DeletedAt": null + }, + { + "Id": "cce519d8-a9c5-4f28-9c7d-5370788bfbd5", + "Name": { + "en": "Keyterm Phrase", + "pt": "Frase de Palavra Chave" + }, + "DeletedAt": null + }, + { + "Id": "aa8efd98-0f8d-4276-89f5-65e012d6b9d8", + "Name": { + "en": "Phrasal Adjective", + "pt": "Frase Adjetival" + }, + "DeletedAt": null + }, + { + "Id": "35cee792-74c8-444e-a9b7-ed0461d4d3b7", + "Name": { + "en": "Phrasal Verb", + "pt": "Frase Verbal" + }, + "DeletedAt": null + }, + { + "Id": "9466d126-246e-400b-8bba-0703e09bc567", + "Name": { + "en": "Saying", + "pt": "Rifa\u0303o" + }, + "DeletedAt": null + }, + { + "Id": "73266a3a-48e8-4bd7-8c84-91c730340b7d", + "Name": { + "en": "Contraction" + }, + "DeletedAt": null + }, + { + "Id": "fec038ed-6a8c-4fa5-bc96-a4f515a98c50", + "Name": { + "en": "Unspecified Complex Form" + }, + "DeletedAt": null + } + ], + "WritingSystems": { + "Analysis": [ + { + "Id": "1c2fb918-c838-4fc8-a81e-71496199c5cf", + "MaybeId": "1c2fb918-c838-4fc8-a81e-71496199c5cf", + "WsId": "pt", + "IsAudio": false, + "Name": "pt", + "Abbreviation": "Por", + "Font": "Times New Roman", + "DeletedAt": null, + "Type": 1, + "Exemplars": [], + "Order": 1 + }, + { + "Id": "5321a0c0-23b7-43ba-855f-05a88af8c96c", + "MaybeId": "5321a0c0-23b7-43ba-855f-05a88af8c96c", + "WsId": "en", + "IsAudio": false, + "Name": "en", + "Abbreviation": "Eng", + "Font": "Times New Roman", + "DeletedAt": null, + "Type": 1, + "Exemplars": [], + "Order": 2 + } + ], + "Vernacular": [ + { + "Id": "9d7dc727-b9bd-487c-be2f-5bfb59d105b2", + "MaybeId": "9d7dc727-b9bd-487c-be2f-5bfb59d105b2", + "WsId": "seh", + "IsAudio": false, + "Name": "seh", + "Abbreviation": "Sen", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "-", + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 1 + }, + { + "Id": "7052c1e3-ee94-4e3e-a842-d2755ffba41c", + "MaybeId": "7052c1e3-ee94-4e3e-a842-d2755ffba41c", + "WsId": "seh-fonipa-x-etic", + "IsAudio": false, + "Name": "seh-fonipa-x-etic", + "Abbreviation": "Sen", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 0, + "Exemplars": [], + "Order": 2 + } + ] + } +} \ No newline at end of file diff --git a/backend/FwLite/FwLiteProjectSync.Tests/WritingSystemSyncTests.cs b/backend/FwLite/FwLiteProjectSync.Tests/WritingSystemSyncTests.cs index 4150a1bca0..fbb07a1065 100644 --- a/backend/FwLite/FwLiteProjectSync.Tests/WritingSystemSyncTests.cs +++ b/backend/FwLite/FwLiteProjectSync.Tests/WritingSystemSyncTests.cs @@ -1,5 +1,6 @@ using FwLiteProjectSync.Tests.Fixtures; using MiniLcm.Models; +using MiniLcm; namespace FwLiteProjectSync.Tests; diff --git a/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live.verified.sqlite b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live.verified.sqlite new file mode 100644 index 0000000000..380b4421af Binary files /dev/null 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 new file mode 100644 index 0000000000..5d3d27b8ab --- /dev/null +++ b/backend/FwLite/FwLiteProjectSync.Tests/sena-3-live_snapshot.verified.txt @@ -0,0 +1,124400 @@ +{ + "Entries": [ + { + "Id": "34779c06-5a73-4fe9-8325-b110b23f9293", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "f53f0f28-3ec1-4051-b9a3-fafdca6209ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": { + "en": { + "Spans": [ + { + "Text": "they", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "eles", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "3P\u002B2", + "pt": "3P\u002B2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e73d5de2-b5ec-4cc8-a679-7f7ca8f673f9", + "Order": 2, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "04f6ebb2-31c2-4089-a9e8-68cc32b6d5d1", + "Order": 3, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b2565e07-2e43-43cb-b533-247f100ac548", + "Order": 4, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3360f2c7-1026-4558-a0fb-e9574aae16ee", + "Order": 5, + "DeletedAt": null, + "EntryId": "34779c06-5a73-4fe9-8325-b110b23f9293", + "Definition": {}, + "Gloss": { + "en": "2", + "pt": "2" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "88d44583-89e9-46f9-a0b1-a627503e16fb", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "513cede9-4db7-43db-86e0-86a382f79087", + "Order": 1, + "DeletedAt": null, + "EntryId": "88d44583-89e9-46f9-a0b1-a627503e16fb", + "Definition": {}, + "Gloss": { + "en": "he\u002BPST", + "pt": "ele\u002BPST" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f34831ff-af51-4e62-b56f-4968e1f294fa", + "Order": 2, + "DeletedAt": null, + "EntryId": "88d44583-89e9-46f9-a0b1-a627503e16fb", + "Definition": {}, + "Gloss": { + "en": "they\u002BPST", + "pt": "eles\u002BPST" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "71d39408-9158-429d-9fb2-7f0967c9016c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": { + "en": { + "Spans": [ + { + "Text": "he", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ele", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "6e869577-8f59-4ebe-bbff-a45c07f4e4c2", + "Order": 2, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e8ef7f59-3646-459a-96c7-482d3c747e8f", + "Order": 3, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "8b2c9d67-ff37-429f-a3ca-678fe960e001", + "Order": 4, + "DeletedAt": null, + "EntryId": "a632a960-f6e1-4327-8575-5cd1fad0a048", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af56599e-3eb6-4b61-984d-f69267a0b4a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "6b9b59b9-629f-4c8d-90c8-878a40a35ee8", + "Order": 1, + "DeletedAt": null, + "EntryId": "af56599e-3eb6-4b61-984d-f69267a0b4a2", + "Definition": {}, + "Gloss": { + "en": "-er", + "pt": "nominalizador" + }, + "PartOfSpeech": { + "Id": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "Name": { + "en": "Nominalizer", + "pt": "Nominalizador" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd045907-e8fc-46a3-8f8d-f71bd956275f", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd045907-e8fc-46a3-8f8d-f71bd956275f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "of", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "de", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "ASSOC", + "pt": "ASSOC" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6f7fe99a-de48-4761-b58f-688bfec15073", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mwana wa Fa\u0301tima", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "child of Fatima", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "crianc\u0327a de Fa\u0301tima", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c33c51d4-f405-4d34-99c3-5eb36881a0d1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d7029d27-45bc-4e53-968e-3c754805eb0a", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "82d967cc-94e1-47ee-ab71-303394ab0470", + "Order": 1, + "DeletedAt": null, + "EntryId": "d7029d27-45bc-4e53-968e-3c754805eb0a", + "Definition": {}, + "Gloss": { + "en": "3S\u002B1", + "pt": "3S\u002B1" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d7a3eba8-7cd3-43c2-8f77-2dd39d41643c", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "b2c77883-9555-4f6f-9b63-2d5e3e0921e7", + "Order": 1, + "DeletedAt": null, + "EntryId": "d7a3eba8-7cd3-43c2-8f77-2dd39d41643c", + "Definition": {}, + "Gloss": { + "en": "IND", + "pt": "IND" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7727ed9-55da-4c34-bdec-f34b7a07019e", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1af27ad8-7b07-462b-90fe-115b5bd63ecd", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7727ed9-55da-4c34-bdec-f34b7a07019e", + "Definition": {}, + "Gloss": { + "en": "PAST", + "pt": "PASSADO" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f91cf0e0-b3c2-4478-9f1f-becaecf307e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "9e9ad5c2-26f8-4ed1-9803-2af452088701", + "Order": 1, + "DeletedAt": null, + "EntryId": "f91cf0e0-b3c2-4478-9f1f-becaecf307e5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "associative prefix", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "prefixo associativo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "assocpx", + "pt": "assocpx" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc02be9f-32fb-470b-b305-1395b664a1fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9e9ad5c2-26f8-4ed1-9803-2af452088701", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a15b8ae6-207c-4999-b1e0-f95a348d1bdc", + "DeletedAt": null, + "LexemeForm": { + "seh": "adidi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "892fa71e-e2cb-4e2f-9ca9-d37d77c5acda", + "Order": 1, + "DeletedAt": null, + "EntryId": "a15b8ae6-207c-4999-b1e0-f95a348d1bdc", + "Definition": {}, + "Gloss": { + "en": "good", + "pt": "bom" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e488d546-1af3-4d79-8ec5-2063442fc8e9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akazi adidi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "boas mulheres", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "892fa71e-e2cb-4e2f-9ca9-d37d77c5acda", + "DeletedAt": null + } + ] + }, + { + "Id": "13e26eb7-5809-40d3-a08d-78c704ba8a30", + "Order": 2, + "DeletedAt": null, + "EntryId": "a15b8ae6-207c-4999-b1e0-f95a348d1bdc", + "Definition": {}, + "Gloss": { + "en": "right side", + "pt": "direita" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eef348ea-4321-400c-a29b-8a101b6dea79", + "DeletedAt": null, + "LexemeForm": { + "seh": "aji" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "8e037741-77d2-4149-abc1-1f40881a50c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "eef348ea-4321-400c-a29b-8a101b6dea79", + "Definition": {}, + "Gloss": { + "en": "agent", + "pt": "agent" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b05564f5-3b1e-4ac5-b7ed-b3cd1e77b57f", + "DeletedAt": null, + "LexemeForm": { + "seh": "aka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "65b0d7bb-29ee-4982-909a-9871001ba0cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "b05564f5-3b1e-4ac5-b7ed-b3cd1e77b57f", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5db6e79d-de66-4ec6-84c1-af3cd170f90d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ambuk" + }, + "CitationForm": { + "seh": "ambuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "67d78fa6-b914-4ac0-94c5-6acd1c2fe657", + "Order": 1, + "DeletedAt": null, + "EntryId": "5db6e79d-de66-4ec6-84c1-af3cd170f90d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to cross a body of water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cross", + "pt": "atravessar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b8846f7-7b55-436d-b47a-5f9a8a5897f2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ng\u0027ona yaambuka.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "The crocodile crossed (the river).", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "O crocodilo atravessou (rio).", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "67d78fa6-b914-4ac0-94c5-6acd1c2fe657", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd7231ed-843a-4ec3-b14d-934ecf90635d", + "DeletedAt": null, + "LexemeForm": { + "seh": "an" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "0f19a966-61e5-47ae-9388-cf8c4c6ef04c", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd7231ed-843a-4ec3-b14d-934ecf90635d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Reciprocal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Reci\u0301proca", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "REC", + "pt": "REC" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "023c3f6e-4868-4839-ae3b-4cb78878c735", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "For \u0022iyan\u0022, nikijibiya\u0301na, nikidairiya\u0301na; akakutana", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "0f19a966-61e5-47ae-9388-cf8c4c6ef04c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "425289f4-fbcd-4644-99d7-c9417e20fa66", + "DeletedAt": null, + "LexemeForm": { + "seh": "ande" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f71411f-5cd2-475c-b194-ea8f19a72a58", + "Order": 1, + "DeletedAt": null, + "EntryId": "425289f4-fbcd-4644-99d7-c9417e20fa66", + "Definition": {}, + "Gloss": { + "en": "yes", + "pt": "sim" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7121a57e-a4da-4c79-b310-3543c30f676a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ani" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b9d67f3d-1e16-4216-932d-b0c6cbb24bc7", + "Order": 1, + "DeletedAt": null, + "EntryId": "7121a57e-a4da-4c79-b310-3543c30f676a", + "Definition": {}, + "Gloss": { + "en": "who?", + "pt": "quem?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4db108bc-e229-4c8f-bd18-3b2b01e8d474", + "DeletedAt": null, + "LexemeForm": { + "seh": "anji" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a282c3c1-ed8d-4f68-8c21-767c95ac2822", + "Order": 1, + "DeletedAt": null, + "EntryId": "4db108bc-e229-4c8f-bd18-3b2b01e8d474", + "Definition": {}, + "Gloss": { + "en": "what?", + "pt": "que?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3af2c61b-b41b-43f4-9915-bb2957437f18", + "Order": 2, + "DeletedAt": null, + "EntryId": "4db108bc-e229-4c8f-bd18-3b2b01e8d474", + "Definition": {}, + "Gloss": { + "en": "which?", + "pt": "qual?" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8b58b2b6-99db-401c-b491-0b770483c52a", + "DeletedAt": null, + "LexemeForm": { + "seh": "apa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f7405ef5-b9d6-4ce5-85ec-9d31f699368f", + "Order": 1, + "DeletedAt": null, + "EntryId": "8b58b2b6-99db-401c-b491-0b770483c52a", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "240a69e1-0f0d-4086-99d3-67bb1b24769d", + "DeletedAt": null, + "LexemeForm": { + "seh": "api" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e66b59dd-3258-4135-91a1-f9c488aa8c92", + "Order": 1, + "DeletedAt": null, + "EntryId": "240a69e1-0f0d-4086-99d3-67bb1b24769d", + "Definition": {}, + "Gloss": { + "en": "what", + "pt": "o que" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8ee372e-24dd-4a72-99b5-ddb4691f0a04", + "DeletedAt": null, + "LexemeForm": { + "seh": "awa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a61ace74-399d-41fb-9ca4-51f82adbc934", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8ee372e-24dd-4a72-99b5-ddb4691f0a04", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c360ef88-a3e8-4d17-85f0-106e3713b17d", + "DeletedAt": null, + "LexemeForm": { + "seh": "b" + }, + "CitationForm": { + "seh": "ba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "74fb07c9-24d4-4b19-b496-c66dc02011e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "c360ef88-a3e8-4d17-85f0-106e3713b17d", + "Definition": {}, + "Gloss": { + "en": "steal", + "pt": "roubar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "75f95bb3-0ab4-46be-b846-f63061c0a82e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mbava aba.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "O ladra\u0303o roubou.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "74fb07c9-24d4-4b19-b496-c66dc02011e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "baba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "983254a5-8270-438b-8bbc-09cbca7a6611", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "Definition": {}, + "Gloss": { + "en": "father", + "pt": "pai" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0bf786a4-79ce-47fb-952c-9665228d7d62", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,33; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "983254a5-8270-438b-8bbc-09cbca7a6611", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "2ca9f7fe-e0a4-4f81-a8d0-17c0e4adef19", + "MaybeId": "2ca9f7fe-e0a4-4f81-a8d0-17c0e4adef19", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "ComponentSenseId": null, + "ComponentHeadword": "baba" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62aca34b-6826-40fd-b6bf-7c93aa8151c1", + "DeletedAt": null, + "LexemeForm": { + "seh": "bal" + }, + "CitationForm": { + "seh": "bala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "018a07df-4eac-4c21-becd-717530e1ff84", + "Order": 1, + "DeletedAt": null, + "EntryId": "62aca34b-6826-40fd-b6bf-7c93aa8151c1", + "Definition": {}, + "Gloss": { + "en": "give birth", + "pt": "dar a\u0300 luz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "855a0bfc-b305-41de-aa78-69632523b2be", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "018a07df-4eac-4c21-becd-717530e1ff84", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "701bbea4-6b2f-45c9-8a01-86d512091405", + "DeletedAt": null, + "LexemeForm": { + "seh": "balalik" + }, + "CitationForm": { + "seh": "balalika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", + "Order": 1, + "DeletedAt": null, + "EntryId": "701bbea4-6b2f-45c9-8a01-86d512091405", + "Definition": {}, + "Gloss": { + "en": "flee", + "pt": "fugir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2ec0a2fb-c15e-4d6e-a900-2843e8b77752", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", + "DeletedAt": null + }, + { + "Id": "a8ce8e9f-0d3c-42b3-8097-088e1d5aa328", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7b0399ba-f65d-4a8d-a58c-123281cd7c74", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f577d57d-c388-44c5-893e-3ea9e86fef1f", + "DeletedAt": null, + "LexemeForm": { + "seh": "balangaz" + }, + "CitationForm": { + "seh": "balangaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d51d8ad2-5320-4551-a267-5d3379d91fb8", + "Order": 1, + "DeletedAt": null, + "EntryId": "f577d57d-c388-44c5-893e-3ea9e86fef1f", + "Definition": {}, + "Gloss": { + "en": "console", + "pt": "consolar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0420aef-0469-43e7-9f3a-c292efa3eeee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d51d8ad2-5320-4551-a267-5d3379d91fb8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bc811169-1d4c-4b34-b5db-c3e6bae77eaa", + "DeletedAt": null, + "LexemeForm": { + "seh": "balik" + }, + "CitationForm": { + "seh": "balika" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fdd35987-d88b-4fba-b815-b255c72f8329", + "Order": 1, + "DeletedAt": null, + "EntryId": "bc811169-1d4c-4b34-b5db-c3e6bae77eaa", + "Definition": {}, + "Gloss": { + "en": "be beautiful", + "pt": "ser bonito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57026efa-52e6-4c48-869a-f835431e0865", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iye abalika", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "ela e\u0301 bonito", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "fdd35987-d88b-4fba-b815-b255c72f8329", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "770499a2-61b0-4a78-bbd3-ce224000426a", + "DeletedAt": null, + "LexemeForm": { + "seh": "balis" + }, + "CitationForm": { + "seh": "balisa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7cc77c4a-6c21-4d00-8d27-b032bc94803d", + "Order": 1, + "DeletedAt": null, + "EntryId": "770499a2-61b0-4a78-bbd3-ce224000426a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "help give birth", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ajudar dar a luz; fazer trabalho de parteira", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "midwiving", + "pt": "partejar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3c6317f-d236-46bf-90de-c7f53f75e1fa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7cc77c4a-6c21-4d00-8d27-b032bc94803d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c436590-64d7-4e22-a23b-faa24483af9f", + "DeletedAt": null, + "LexemeForm": { + "seh": "baliw" + }, + "CitationForm": { + "seh": "baliwa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "496bf17c-c4c9-4aff-adf2-ed9aa9761409", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c436590-64d7-4e22-a23b-faa24483af9f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be born", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "nascer-se", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "be born", + "pt": "nascer-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2bebdc10-9dc9-40bb-8c93-42e67394332e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "496bf17c-c4c9-4aff-adf2-ed9aa9761409", + "DeletedAt": null + } + ] + }, + { + "Id": "61fe82af-1b62-47a8-9d3e-e0f7684b12fa", + "Order": 2, + "DeletedAt": null, + "EntryId": "6c436590-64d7-4e22-a23b-faa24483af9f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to strap on one\u0027s back", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "strap on back", + "pt": "por ao colo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03d6652b-0af8-40a3-b2ee-574c53dcfb2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bambaya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d59756d9-3fe2-4cd6-9e2e-372ae603152a", + "Order": 1, + "DeletedAt": null, + "EntryId": "03d6652b-0af8-40a3-b2ee-574c53dcfb2c", + "Definition": {}, + "Gloss": { + "en": "sweet potato", + "pt": "batata doce" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "707c1239-2753-4584-a698-58af283cb5f7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mabambaya mikulu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "batata doce grande", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d59756d9-3fe2-4cd6-9e2e-372ae603152a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "883129d8-a131-4cd0-97d1-2c9e7f64af65", + "DeletedAt": null, + "LexemeForm": { + "seh": "bandazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38b340b9-6fb4-4134-a7aa-e69a4000c9bf", + "Order": 1, + "DeletedAt": null, + "EntryId": "883129d8-a131-4cd0-97d1-2c9e7f64af65", + "Definition": { + "en": { + "Spans": [ + { + "Text": "servant", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "empregado de casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "servant", + "pt": "empregado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cffb14ac-72f1-46d2-9b56-5b9fdc5bf98f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,26 (mbandazi - sic)", + "Ws": "en" + } + ] + }, + "SenseId": "38b340b9-6fb4-4134-a7aa-e69a4000c9bf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c75d29f-519c-4dc8-9eb7-a249ded94116", + "DeletedAt": null, + "LexemeForm": { + "seh": "bande" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fc0fef0-c127-467b-8c09-f10fdd3ddb6a", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c75d29f-519c-4dc8-9eb7-a249ded94116", + "Definition": { + "en": { + "Spans": [ + { + "Text": "flower , type that floats in mass on water w/ red flower", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "flor aqua\u0301tica vermelha", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "flower", + "pt": "flor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c345f278-91ff-463d-b9a6-8abac8a267eb", + "Name": { + "en": "Grass, herb, vine" + }, + "Code": "1.5.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8da005e-99a9-4a5b-acb2-d9037e417e7d", + "DeletedAt": null, + "LexemeForm": { + "seh": "banja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14301224-b2b0-42d9-b443-6cdaf860db27", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8da005e-99a9-4a5b-acb2-d9037e417e7d", + "Definition": {}, + "Gloss": { + "en": "marriage", + "pt": "casamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adcc7584-28dc-4e3a-969c-7cfc8914126a", + "DeletedAt": null, + "LexemeForm": { + "seh": "banku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f5ba1c7-2628-4669-899e-7615d7862b3d", + "Order": 1, + "DeletedAt": null, + "EntryId": "adcc7584-28dc-4e3a-969c-7cfc8914126a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "stool", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "banco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stool", + "pt": "banco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4c138b44-773a-4423-8a63-00bcb36707a3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "6f5ba1c7-2628-4669-899e-7615d7862b3d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96cc590b-25cf-4334-8ac3-a066de706286", + "DeletedAt": null, + "LexemeForm": { + "seh": "bara" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fea4ede0-f970-4b38-97eb-5d7075f0288b", + "Order": 1, + "DeletedAt": null, + "EntryId": "96cc590b-25cf-4334-8ac3-a066de706286", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sea, a body of water in which one can not see the other side", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sea", + "pt": "mar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7c4b9531-23e3-4053-bbd0-1e918f894c44", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fea4ede0-f970-4b38-97eb-5d7075f0288b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c2d5080f-e67a-45ce-8a2a-cbddc75a3657", + "DeletedAt": null, + "LexemeForm": { + "seh": "ba\u0301rigi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef626122-aeda-4bd1-951b-63ba29d6e74a", + "Order": 1, + "DeletedAt": null, + "EntryId": "c2d5080f-e67a-45ce-8a2a-cbddc75a3657", + "Definition": {}, + "Gloss": { + "en": "barge", + "pt": "barco (tipo)" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3d586ba6-4f08-46d8-b02c-3bbb822f3092", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef626122-aeda-4bd1-951b-63ba29d6e74a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f562c819-73e1-4236-91e4-847fe06a8be8", + "DeletedAt": null, + "LexemeForm": { + "seh": "basa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "db7715d2-59de-4222-a5b7-18c72ba46beb", + "Order": 1, + "DeletedAt": null, + "EntryId": "f562c819-73e1-4236-91e4-847fe06a8be8", + "Definition": {}, + "Gloss": { + "en": "work", + "pt": "trabalho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d68911f6-6507-483a-b015-44726fdf868a", + "Name": { + "en": "Work" + }, + "Code": "6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f1f0113c-ecbc-4ece-bf02-9ef61cfa9afb", + "DeletedAt": null, + "LexemeForm": { + "seh": "basi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", + "Order": 1, + "DeletedAt": null, + "EntryId": "f1f0113c-ecbc-4ece-bf02-9ef61cfa9afb", + "Definition": {}, + "Gloss": { + "en": "only", + "pt": "so\u0301mente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "153977d2-d0d6-41e3-9e2e-4e11ec288295", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisalonga ciSena basi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Falo somente Sena.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", + "DeletedAt": null + }, + { + "Id": "ca86d398-f420-48e1-8f8e-5f816dfa35ac", + "Order": 2, + "Sentence": {}, + "Translation": { + "pt": { + "Spans": [ + { + "Text": ".", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "e3de7d97-1e9d-4229-9a3f-d1bacd5bc183", + "DeletedAt": null + } + ] + }, + { + "Id": "333e5026-83bf-4acd-a0b0-af2f04e1687e", + "Order": 2, + "DeletedAt": null, + "EntryId": "f1f0113c-ecbc-4ece-bf02-9ef61cfa9afb", + "Definition": {}, + "Gloss": { + "en": "it is enough", + "pt": "chega" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9899f188-30ef-41b5-9fc0-bb92576fd18a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Basi, lekani kulongabve.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Chega, na\u0303o fala mais", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "333e5026-83bf-4acd-a0b0-af2f04e1687e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "221797c8-b045-4baf-82fb-891c3efa1fcd", + "DeletedAt": null, + "LexemeForm": { + "seh": "batha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09ccd17c-8e0a-4208-95dc-e41cb6b78de9", + "Order": 1, + "DeletedAt": null, + "EntryId": "221797c8-b045-4baf-82fb-891c3efa1fcd", + "Definition": {}, + "Gloss": { + "en": "duck", + "pt": "pato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b2bb077a-92c8-4e54-8dfa-c89efd60b82d", + "Name": { + "en": "Poultry raising" + }, + "Code": "6.3.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "18f15fd1-f614-490d-9f56-65a805892b0a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "09ccd17c-8e0a-4208-95dc-e41cb6b78de9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8d55e377-05d0-425a-941b-60881e640fa5", + "DeletedAt": null, + "LexemeForm": { + "seh": "baulu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef8ce53f-c686-4c74-80c2-ada05ff8a85a", + "Order": 1, + "DeletedAt": null, + "EntryId": "8d55e377-05d0-425a-941b-60881e640fa5", + "Definition": {}, + "Gloss": { + "en": "coffin", + "pt": "caixa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5c4c434b-5a06-4172-ae1d-673f39d729ec", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ef8ce53f-c686-4c74-80c2-ada05ff8a85a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41989bc6-8c43-426f-8465-6e78018dc115", + "DeletedAt": null, + "LexemeForm": { + "seh": "bemberuwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58d47fd5-21e6-4a19-8ca9-768b77eb0c8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "41989bc6-8c43-426f-8465-6e78018dc115", + "Definition": {}, + "Gloss": { + "en": "butterfly", + "pt": "borboleta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "144f8d59-ea75-444d-8077-9890b72470f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogeiro", + "Ws": "en" + } + ] + }, + "SenseId": "58d47fd5-21e6-4a19-8ca9-768b77eb0c8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "164ebd28-78ff-424d-9fb0-038ef844b184", + "DeletedAt": null, + "LexemeForm": { + "seh": "benga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc7b9218-27a9-4ba7-9b69-79a469019855", + "Order": 1, + "DeletedAt": null, + "EntryId": "164ebd28-78ff-424d-9fb0-038ef844b184", + "Definition": {}, + "Gloss": { + "en": "hole", + "pt": "buraco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bb87e9c7-fe9d-4bd2-a3cd-36042fcb7709", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cc7b9218-27a9-4ba7-9b69-79a469019855", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35a5b430-b2cf-4268-8fc7-8552624e7332", + "DeletedAt": null, + "LexemeForm": { + "seh": "ber" + }, + "CitationForm": { + "seh": "bera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5ec694c-59ec-4765-af3b-314095d1bd7d", + "Order": 1, + "DeletedAt": null, + "EntryId": "35a5b430-b2cf-4268-8fc7-8552624e7332", + "Definition": {}, + "Gloss": { + "en": "rob someone", + "pt": "robar alguem" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efbcca31-d5c8-4b33-a152-d8acd16b1eb6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a5ec694c-59ec-4765-af3b-314095d1bd7d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f61ef333-e7aa-498d-862a-09f451bbf42f", + "DeletedAt": null, + "LexemeForm": { + "seh": "bere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6fa0e00f-3280-498a-b33b-cca6d76f3857", + "Order": 1, + "DeletedAt": null, + "EntryId": "f61ef333-e7aa-498d-862a-09f451bbf42f", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "mama, seio", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "breast", + "pt": "mama" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e24f4f31-b037-4649-a4d5-55e6075f41a4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "6fa0e00f-3280-498a-b33b-cca6d76f3857", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d22403db-fb8c-456b-8c97-452893cae4bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "beser" + }, + "CitationForm": { + "seh": "besera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a88193aa-85c7-471f-8f05-939690f832b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "d22403db-fb8c-456b-8c97-452893cae4bb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake up between midnight and sunrise", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Acordar depois de meianoite ate nascer de sol.", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake up early", + "pt": "amanhecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57a87af7-4487-4527-8236-cab4ace6559c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iye abesera kugombe", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "He woke up early to go to the river.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Ele amadrugou para rio", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a88193aa-85c7-471f-8f05-939690f832b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f394fcf-b537-4ac5-9c99-cc4c58faac9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bhande" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d028302e-d03b-4cc8-a588-5c3ef9e449e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f394fcf-b537-4ac5-9c99-cc4c58faac9e", + "Definition": {}, + "Gloss": { + "en": "belt", + "pt": "cinto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ee6e993c-5551-42ae-b35e-26bc6aeeb3a4", + "Name": { + "en": "Men\u0027s clothing" + }, + "Code": "5.3.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "0d058fef-c535-41ef-be83-0980ee1c650e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d028302e-d03b-4cc8-a588-5c3ef9e449e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "681f3444-dff2-4ce8-bba8-afa28818de7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "bhonzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d4bf84ed-04fd-41a4-a4ca-312a0a8f171e", + "Order": 1, + "DeletedAt": null, + "EntryId": "681f3444-dff2-4ce8-bba8-afa28818de7f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "leg bone of a certain animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "osso de perna dum certo animal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "leg bone", + "pt": "osso de perna " + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "381c1f98-3295-492f-afb2-41805596f99c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d4bf84ed-04fd-41a4-a4ca-312a0a8f171e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81e36df2-9f0a-4a06-90f8-188016d62937", + "DeletedAt": null, + "LexemeForm": { + "seh": "bibvu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bfe613da-5e41-4cce-ac69-4f4b4d1e29ff", + "Order": 1, + "DeletedAt": null, + "EntryId": "81e36df2-9f0a-4a06-90f8-188016d62937", + "Definition": {}, + "Gloss": { + "en": "jealousy", + "pt": "inveja" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2376f4c-8713-44f7-8058-1ded7b253968", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bfe613da-5e41-4cce-ac69-4f4b4d1e29ff", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "23ab3e8b-5244-4f83-8134-869dd17442e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "bichu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "82e9e4c7-3572-4246-8a6b-5dc29d16a278", + "Order": 1, + "DeletedAt": null, + "EntryId": "23ab3e8b-5244-4f83-8134-869dd17442e8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "slave, person under punishment, one who works against one\u0027s will", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "escravo, pessoa castigada, na\u0303o trabalho pelo vontade", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "slave", + "pt": "escravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "434d7ed9-9efb-47a2-bb84-d9ecf24625d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "82e9e4c7-3572-4246-8a6b-5dc29d16a278", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a73d442f-8314-4b6f-a396-206fde5f7804", + "DeletedAt": null, + "LexemeForm": { + "seh": "bidz" + }, + "CitationForm": { + "seh": "bidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "40cf2e97-7ba4-4deb-953a-491f165099e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a73d442f-8314-4b6f-a396-206fde5f7804", + "Definition": {}, + "Gloss": { + "en": "submerge", + "pt": "mergulhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86e857fa-f9c8-40b8-b617-1c0ef4ae71dd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "40cf2e97-7ba4-4deb-953a-491f165099e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e18419f9-a34a-4afe-ad7b-3c56b77b097d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bimbi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a92f97b-b8fd-47f4-9a0b-6bc48878475a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e18419f9-a34a-4afe-ad7b-3c56b77b097d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ocean wave", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "wave", + "pt": "onda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "741c417a-11e9-460c-9ab3-51b8220df016", + "Name": { + "en": "Wave" + }, + "Code": "1.3.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "d3653a1b-0521-46d9-91a2-7d17f5c4d744", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6a92f97b-b8fd-47f4-9a0b-6bc48878475a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6b0df727-94e7-47cd-96c6-a37662297947", + "DeletedAt": null, + "LexemeForm": { + "seh": "bira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "161e717b-55e7-45a5-800b-4dc9e1c4fa30", + "Order": 1, + "DeletedAt": null, + "EntryId": "6b0df727-94e7-47cd-96c6-a37662297947", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sheep, ewe or ram", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "orvelho ou orvelha", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "sheep", + "pt": "ovelho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "26b97047-edb1-44e9-8c7b-463de9cfbe78", + "Name": { + "en": "Sheep" + }, + "Code": "6.3.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "53bbf6a2-c41a-43ec-9a04-9aa5da9c119c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "161e717b-55e7-45a5-800b-4dc9e1c4fa30", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fdc4ebf8-8a7a-4584-9256-a10267b68669", + "DeletedAt": null, + "LexemeForm": { + "seh": "biri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b8639913-e8cf-4bbf-8598-0cb7c2421f01", + "Order": 1, + "DeletedAt": null, + "EntryId": "fdc4ebf8-8a7a-4584-9256-a10267b68669", + "Definition": {}, + "Gloss": { + "en": "glory", + "pt": "glo\u0301ria" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68b2b516-b793-4ff1-8abe-a0d6e3399b3a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b8639913-e8cf-4bbf-8598-0cb7c2421f01", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ca8ab7e5-b8e8-4263-bbbf-96caf53c6adc", + "DeletedAt": null, + "LexemeForm": { + "seh": "bisal" + }, + "CitationForm": { + "seh": "bisala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c2a64c53-bb9f-4485-adce-56aa1bca3acc", + "Order": 1, + "DeletedAt": null, + "EntryId": "ca8ab7e5-b8e8-4263-bbbf-96caf53c6adc", + "Definition": {}, + "Gloss": { + "en": "hide", + "pt": "esconder-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aa987582-1d47-4a14-b81c-869eae50f4f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c2a64c53-bb9f-4485-adce-56aa1bca3acc", + "DeletedAt": null + } + ] + }, + { + "Id": "d74a27ca-630a-4e62-9ad1-0dce9252870f", + "Order": 2, + "DeletedAt": null, + "EntryId": "ca8ab7e5-b8e8-4263-bbbf-96caf53c6adc", + "Definition": {}, + "Gloss": { + "en": "hidden", + "pt": "escondido" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3330d4cb-d668-4a8d-bad9-6d35e750d3b7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "pinthu pya kubisala", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "coisas escondidos", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "d74a27ca-630a-4e62-9ad1-0dce9252870f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4b4e98b0-7b69-44a0-8444-9b447c5764b9", + "Order": 1, + "DeletedAt": null, + "EntryId": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "Definition": {}, + "Gloss": { + "en": "one", + "pt": "um" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db0b3ff3-6d48-49e2-9b22-ae909d9690e0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nkazi m\u0027bodzi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "one wife", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "esposa uma", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "4b4e98b0-7b69-44a0-8444-9b447c5764b9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "5a03669e-6428-4c00-9065-594b92bebd50", + "MaybeId": "5a03669e-6428-4c00-9065-594b92bebd50", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "ComplexFormHeadword": "bodzi-bodzi", + "ComponentEntryId": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "ComponentSenseId": null, + "ComponentHeadword": "bodzi" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "DeletedAt": null, + "LexemeForm": { + "seh": "bodzi-bodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "79b8ab72-2b9c-4afa-ad44-47fefb074746", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "Definition": { + "en": { + "Spans": [ + { + "Text": "indicating ephatically", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "the very", + "pt": "o mesmo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac1e8487-62d0-4a0a-b1b2-8ea157d340b1", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Awene abodzi-bodzi ndio adalonga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eles mesmos foram falar. (Sa\u0303o eles mesmo que falaram.)", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "79b8ab72-2b9c-4afa-ad44-47fefb074746", + "DeletedAt": null + }, + { + "Id": "fd20594d-5831-462d-a460-ce4ca3687bc7", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cinthu cibodzi-bodzi; pinthu pibodzi-bodzi; cibodzi na cibodzi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "aquele coisa mesmo; aqueles mesmos coisas; um por um", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "79b8ab72-2b9c-4afa-ad44-47fefb074746", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "5a03669e-6428-4c00-9065-594b92bebd50", + "MaybeId": "5a03669e-6428-4c00-9065-594b92bebd50", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb81d563-d40e-4f90-bdeb-794a8d532c47", + "ComplexFormHeadword": "bodzi-bodzi", + "ComponentEntryId": "d333f64f-d388-431f-bb2b-7dd9b7f3fe3c", + "ComponentSenseId": null, + "ComponentHeadword": "bodzi" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05ef2b9c-f0a3-498e-b26b-47e860f20fe7", + "DeletedAt": null, + "LexemeForm": { + "seh": "bokho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "036e4c4f-31f1-4824-8ebe-51fa5a9fbe43", + "Order": 1, + "DeletedAt": null, + "EntryId": "05ef2b9c-f0a3-498e-b26b-47e860f20fe7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "goat male", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cabrito masculino", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "goat", + "pt": "cabrito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b3fcded-5440-4ca7-a870-4de86d693b27", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18,26", + "Ws": "en" + } + ] + }, + "SenseId": "036e4c4f-31f1-4824-8ebe-51fa5a9fbe43", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91f2b11a-1ee4-4725-aef4-0a03366ed0e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "bokosi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57bd9b42-76ed-4fa4-8a43-d8ca70973b03", + "Order": 1, + "DeletedAt": null, + "EntryId": "91f2b11a-1ee4-4725-aef4-0a03366ed0e4", + "Definition": {}, + "Gloss": { + "en": "box", + "pt": "caixa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21752c5c-ccd4-4cf0-8347-5580173da164", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "57bd9b42-76ed-4fa4-8a43-d8ca70973b03", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb7504eb-e687-454b-89e5-8f5b459e085d", + "DeletedAt": null, + "LexemeForm": { + "seh": "boliboli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e138d2ab-fea1-421d-bd27-1a901309ac1a", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb7504eb-e687-454b-89e5-8f5b459e085d", + "Definition": {}, + "Gloss": { + "en": "blind", + "pt": "cego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f16bfb0b-a465-492c-b2b2-4c70672fc7ba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e138d2ab-fea1-421d-bd27-1a901309ac1a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "97d765f4-286b-48e8-a76c-b66a61428cb2", + "DeletedAt": null, + "LexemeForm": { + "seh": "bondia" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "229fdf0b-c330-423a-8eb2-6a0fc8c76d2b", + "Order": 1, + "DeletedAt": null, + "EntryId": "97d765f4-286b-48e8-a76c-b66a61428cb2", + "Definition": {}, + "Gloss": { + "en": "good morning", + "pt": "bom dia" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0155b177-1fe0-4d45-8fe7-b25a438fa67f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "229fdf0b-c330-423a-8eb2-6a0fc8c76d2b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b5afaed-1da7-4062-8992-e2f6076d2886", + "DeletedAt": null, + "LexemeForm": { + "seh": "bongwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eea4e67f-9514-4bfb-9bfc-af148446d34f", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b5afaed-1da7-4062-8992-e2f6076d2886", + "Definition": { + "en": { + "Spans": [ + { + "Text": "baboon", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "baboon", + "pt": "babui\u0301no" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "03ae473b-9283-4e4f-a4fe-9f1733c22c66", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "eea4e67f-9514-4bfb-9bfc-af148446d34f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "afc73a10-6dd1-464d-9633-c05541c427d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "bonzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09c319ff-53fe-4453-b088-8327effb47b7", + "Order": 1, + "DeletedAt": null, + "EntryId": "afc73a10-6dd1-464d-9633-c05541c427d7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the clan name for the Nyazeze family", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "nome duma cla\u0303", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "name", + "pt": "nome" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f120be26-15b0-45c0-b215-d84417a7ed57", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "09c319ff-53fe-4453-b088-8327effb47b7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a3ddb7a7-7adc-4b30-b4de-578bcecd95f9", + "DeletedAt": null, + "LexemeForm": { + "seh": "boo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3301cd02-b803-4fdd-8e0b-1fd9802b699d", + "Order": 1, + "DeletedAt": null, + "EntryId": "a3ddb7a7-7adc-4b30-b4de-578bcecd95f9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the deepest part of a river or ocean", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "ocean bottom", + "pt": "fundu do mar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fd5cade4-bafb-47c2-8c60-389c43bfcca1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3301cd02-b803-4fdd-8e0b-1fd9802b699d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16f79c67-c08f-4c8f-8df1-9209bc4005b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "botari" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "93dd2162-dedc-42bf-9fc6-49e6a765bdf8", + "Order": 1, + "DeletedAt": null, + "EntryId": "16f79c67-c08f-4c8f-8df1-9209bc4005b2", + "Definition": {}, + "Gloss": { + "en": "good afternoon", + "pt": "boa tarde" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "79b53161-d4d7-4aec-8b0b-91ae794b596e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "93dd2162-dedc-42bf-9fc6-49e6a765bdf8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "97fc469d-9916-454d-8ff0-277f973f8674", + "DeletedAt": null, + "LexemeForm": { + "seh": "bote" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1dc5dfb2-e140-4fa2-85b4-ebf9c7cce900", + "Order": 1, + "DeletedAt": null, + "EntryId": "97fc469d-9916-454d-8ff0-277f973f8674", + "Definition": {}, + "Gloss": { + "en": "boat", + "pt": "barco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c167ffe-9941-4d5a-894a-225aa7be4b20", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1dc5dfb2-e140-4fa2-85b4-ebf9c7cce900", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a9f24a4-3148-448c-a6c0-097c8bc5dcb5", + "DeletedAt": null, + "LexemeForm": { + "seh": "bukhu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84fe5c47-2cac-4abd-b53f-7f75700cb745", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a9f24a4-3148-448c-a6c0-097c8bc5dcb5", + "Definition": {}, + "Gloss": { + "en": "book", + "pt": "livro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5def4ccd-951a-4cc6-b6e0-45a0918f77eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulangeti" + }, + "CitationForm": { + "seh": "bulangeti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ffe18b3-db9e-4cf9-9076-107940104d19", + "Order": 1, + "DeletedAt": null, + "EntryId": "5def4ccd-951a-4cc6-b6e0-45a0918f77eb", + "Definition": {}, + "Gloss": { + "en": "cover", + "pt": "manta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ed29ce4-ff90-4fed-92c8-c77769e4699b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "5ffe18b3-db9e-4cf9-9076-107940104d19", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d4060ee2-f42b-4ae0-a47e-1781a0b3310d", + "DeletedAt": null, + "LexemeForm": { + "seh": "buluk" + }, + "CitationForm": { + "seh": "buluka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4517e997-6cec-46b3-9596-1e51ac14702d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d4060ee2-f42b-4ae0-a47e-1781a0b3310d", + "Definition": {}, + "Gloss": { + "en": "leave", + "pt": "sair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f0208049-06e8-4d15-a0be-81c2844bf1e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "4517e997-6cec-46b3-9596-1e51ac14702d", + "DeletedAt": null + } + ] + }, + { + "Id": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", + "Order": 2, + "DeletedAt": null, + "EntryId": "d4060ee2-f42b-4ae0-a47e-1781a0b3310d", + "Definition": {}, + "Gloss": { + "en": "produce", + "pt": "produzir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d824a4dc-3b6d-466d-9d77-6b42c5750487", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mpunga wabuluka maningi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "O arroz produziu muito.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "The rice produced a lot.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e9aff5a9-58d4-4d35-99e4-b8acfc167860", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulukir" + }, + "CitationForm": { + "seh": "bulukira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21bac99f-c587-4576-b08c-14ca69dadd83", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "Definition": {}, + "Gloss": { + "en": "appear", + "pt": "aparecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df765343-ce79-4d76-b9c5-76ab706fa840", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ya kumabulukira dzuwa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "east (lit the place of the sunrise) ma- = lugar", + "Ws": "en" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "21bac99f-c587-4576-b08c-14ca69dadd83", + "DeletedAt": null + } + ] + }, + { + "Id": "35a38de9-1800-47e0-b4ad-5db19ac79db2", + "Order": 2, + "DeletedAt": null, + "EntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "Definition": {}, + "Gloss": { + "en": "come out", + "pt": "sair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ef9ddb54-2d19-450d-9264-f872a8f94776", + "Order": 3, + "DeletedAt": null, + "EntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "Definition": {}, + "Gloss": { + "en": "from then on", + "pt": "partindo dali\u0301" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "c70fce40-a2f2-489e-af48-2e5111674ee4", + "MaybeId": "c70fce40-a2f2-489e-af48-2e5111674ee4", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "ComplexFormHeadword": "kubulukira", + "ComponentEntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "ComponentSenseId": null, + "ComponentHeadword": "bulukira" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c06eb11b-067a-44cd-aa2e-2e56a2ea8970", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulumund" + }, + "CitationForm": { + "seh": "bulumunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3fe67f6b-5514-47fc-be95-ac53ee7d8b56", + "Order": 1, + "DeletedAt": null, + "EntryId": "c06eb11b-067a-44cd-aa2e-2e56a2ea8970", + "Definition": {}, + "Gloss": { + "en": "roll in", + "pt": "rebolando" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "81c6e631-7e90-4b11-aac5-b859ad71f327", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3fe67f6b-5514-47fc-be95-ac53ee7d8b56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b77ab23f-1a6f-46f3-a01d-19948315b026", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulus" + }, + "CitationForm": { + "seh": "bulusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6edd952c-0bdc-4c73-bfb9-1051f163db9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b77ab23f-1a6f-46f3-a01d-19948315b026", + "Definition": {}, + "Gloss": { + "en": "throw out", + "pt": "tirar fora" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c104ff5-8b88-4abf-af74-edacf61cf379", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6edd952c-0bdc-4c73-bfb9-1051f163db9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9df0b4e0-33e8-4bf3-9dbf-6e3c5048a569", + "DeletedAt": null, + "LexemeForm": { + "seh": "bulusir" + }, + "CitationForm": { + "seh": "bulusira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "574b5528-5784-42ff-b9d9-fcc156dcc49f", + "Order": 1, + "DeletedAt": null, + "EntryId": "9df0b4e0-33e8-4bf3-9dbf-6e3c5048a569", + "Definition": { + "en": { + "Spans": [ + { + "Text": "remove, release prisoner", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "remove", + "pt": "tirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d98551bd-e134-4bb1-967a-5a2fd25051da", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "574b5528-5784-42ff-b9d9-fcc156dcc49f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29f67617-7668-4535-943f-40c4d62c408c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bume" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0d40e283-a355-41fa-9919-a800096e3319", + "Order": 1, + "DeletedAt": null, + "EntryId": "29f67617-7668-4535-943f-40c4d62c408c", + "Definition": {}, + "Gloss": { + "en": "dew", + "pt": "orvalho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b8ede155-d17b-4a90-8846-e34ea3237320", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13,19; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0d40e283-a355-41fa-9919-a800096e3319", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dafecdb2-b969-43eb-8e9f-fa35aed5e5a1", + "DeletedAt": null, + "LexemeForm": { + "seh": "buru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b98fbde-93bd-4cca-a342-180aa7b92411", + "Order": 1, + "DeletedAt": null, + "EntryId": "dafecdb2-b969-43eb-8e9f-fa35aed5e5a1", + "Definition": {}, + "Gloss": { + "en": "donkey", + "pt": "juntameta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "edca7805-b861-4979-a18a-63ef1086eeff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b98fbde-93bd-4cca-a342-180aa7b92411", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bv" + }, + "CitationForm": { + "seh": "bva" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "528e7166-69ba-4991-b067-f411475442b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "Definition": {}, + "Gloss": { + "en": "hear", + "pt": "ouvir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f68490f8-f661-4b39-ac14-867caef887f7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisabva pisa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "I feel hot.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Sinto quente.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4 (bv a); Orth; sulo037; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "528e7166-69ba-4991-b067-f411475442b1", + "DeletedAt": null + }, + { + "Id": "e848d802-b842-44fb-b389-fcb84a113fe9", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musabvanji? Ndisabva kupha manungo onsene.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "como se sente? Sinto dores corpo inteiro.", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "528e7166-69ba-4991-b067-f411475442b1", + "DeletedAt": null + } + ] + }, + { + "Id": "fabcc53e-8dd3-4be5-9af5-4f81981ba5be", + "Order": 2, + "DeletedAt": null, + "EntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "Definition": {}, + "Gloss": { + "en": "feel", + "pt": "sentir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "aeec88c3-32b7-4625-80ce-187c332e2731", + "MaybeId": "aeec88c3-32b7-4625-80ce-187c332e2731", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "ComplexFormHeadword": "kubverana", + "ComponentEntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "ComponentSenseId": null, + "ComponentHeadword": "bva" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35385d36-a39a-4d8f-8d15-6f6207a555a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "bval" + }, + "CitationForm": { + "seh": "bvala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "23a00ada-22b0-402a-a714-8264414db39e", + "Order": 1, + "DeletedAt": null, + "EntryId": "35385d36-a39a-4d8f-8d15-6f6207a555a8", + "Definition": {}, + "Gloss": { + "en": "wear", + "pt": "vestir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ac6299b-ee72-4c3e-af84-3e3ae1c82f29", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndabvala capeu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Usei chapeu.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "23a00ada-22b0-402a-a714-8264414db39e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "def608e7-d69a-4460-b60b-ad5af7ea9e4c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvalir" + }, + "CitationForm": { + "seh": "bvalira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ea6aae0-5081-4ec7-b418-80d6294553d5", + "Order": 1, + "DeletedAt": null, + "EntryId": "def608e7-d69a-4460-b60b-ad5af7ea9e4c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be well dressed", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dapper", + "pt": "vestir bem" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ade98355-401b-4349-8d9c-1187277048be", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0ea6aae0-5081-4ec7-b418-80d6294553d5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ec4b20c-c13e-4e8f-bf8f-a6440d6fd302", + "DeletedAt": null, + "LexemeForm": { + "seh": "bve" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "c15ddf45-a80c-411b-9dbc-d844af283e5f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ec4b20c-c13e-4e8f-bf8f-a6440d6fd302", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Negative intensifier, \u0022never ever\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Intensificador negative \u0022nunca, jamais\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NEGINT", + "pt": "NEGINT" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f3d7730-31a4-46bb-8345-2bdfb13714d4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Hadaonabve munthu unango tayu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o viram mais o outra pessoa na\u0303o", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c15ddf45-a80c-411b-9dbc-d844af283e5f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba97a4b2-f81a-4831-987f-41bfaef251ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvek" + }, + "CitationForm": { + "seh": "bveka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba97a4b2-f81a-4831-987f-41bfaef251ed", + "Definition": {}, + "Gloss": { + "en": "understand", + "pt": "percerber-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe2f5c16-ea3b-43fd-b9c6-6d932bf22dd3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", + "DeletedAt": null + }, + { + "Id": "9142ca40-bc9d-4713-a120-bd2e68d4b188", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1f2d0e89-19c1-4d51-8919-f3aa2682598b", + "DeletedAt": null + } + ] + }, + { + "Id": "6e0952c8-002d-4c3c-b00a-313f65628c58", + "Order": 2, + "DeletedAt": null, + "EntryId": "ba97a4b2-f81a-4831-987f-41bfaef251ed", + "Definition": {}, + "Gloss": { + "en": "comprehend", + "pt": "compreender-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f616266-624b-46cc-9fe6-37721bd7dad1", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvembe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df9f4687-672d-4c65-a178-49a1b007c18e", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f616266-624b-46cc-9fe6-37721bd7dad1", + "Definition": {}, + "Gloss": { + "en": "watermelon", + "pt": "melancia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dd6ef32-e6bc-4973-b8b3-b6fa340b7675", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "df9f4687-672d-4c65-a178-49a1b007c18e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c5b197a-70a3-49dc-a9be-776b5d0b4fc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "bver" + }, + "CitationForm": { + "seh": "bvera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "82f97729-0549-4583-876e-d3adf864f6c1", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c5b197a-70a3-49dc-a9be-776b5d0b4fc1", + "Definition": {}, + "Gloss": { + "en": "obey", + "pt": "obedecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2b5fab2-cfc5-4b08-b309-f2ef0950e2d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "82f97729-0549-4583-876e-d3adf864f6c1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "85672120-e3c4-4b47-9f5a-be0ace166f78", + "DeletedAt": null, + "LexemeForm": { + "seh": "bveran" + }, + "CitationForm": { + "seh": "bverana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d9a83e05-e52d-41e1-bbab-7733e09b0ca1", + "Order": 1, + "DeletedAt": null, + "EntryId": "85672120-e3c4-4b47-9f5a-be0ace166f78", + "Definition": {}, + "Gloss": { + "en": "make agreement", + "pt": "combinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "69455770-fca7-4f41-9e7d-236e8f094ce6", + "Name": { + "en": "Covenant" + }, + "Code": "4.7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ac6dec6-1b8f-463c-8239-e2acb93586b1", + "Name": { + "en": "Unity" + }, + "Code": "4.1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3c6ec08e-0069-4cd1-9024-95d07407159d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndisabverana na Antonyo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eu combina-se bem com Anto\u0301nio.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "sulo2:16", + "Ws": "en" + } + ] + }, + "SenseId": "d9a83e05-e52d-41e1-bbab-7733e09b0ca1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c68ec3c-1814-4ff5-8142-7c2bf40b2b3e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bves" + }, + "CitationForm": { + "seh": "bvesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14c24243-dc54-422a-880f-1d326cbad344", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c68ec3c-1814-4ff5-8142-7c2bf40b2b3e", + "Definition": {}, + "Gloss": { + "en": "listen", + "pt": "escutar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f0fa93ae-aa47-46bd-9022-e0f3a9b6e366", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sidapibvesa tayu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o percebi", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "14c24243-dc54-422a-880f-1d326cbad344", + "DeletedAt": null + } + ] + }, + { + "Id": "346cb2f1-ca16-47ec-bc29-5451f89fed1d", + "Order": 2, + "DeletedAt": null, + "EntryId": "6c68ec3c-1814-4ff5-8142-7c2bf40b2b3e", + "Definition": {}, + "Gloss": { + "en": "understand", + "pt": "perceber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7b88f2c2-647f-4f46-86d9-9f9207db465c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvin" + }, + "CitationForm": { + "seh": "bvina" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "71fc904e-ac67-4964-8db3-f5c8f2d8c477", + "Order": 1, + "DeletedAt": null, + "EntryId": "7b88f2c2-647f-4f46-86d9-9f9207db465c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "dance any dance", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dance", + "pt": "danc\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d88db3c5-62ed-4ac3-bd70-7f74230d069a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "71fc904e-ac67-4964-8db3-f5c8f2d8c477", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "19df53f9-3790-49a9-a8ab-c37003eed83c", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvumb" + }, + "CitationForm": { + "seh": "bvumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "19034ed9-ec16-4284-92f7-905c3d5ef8f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "19df53f9-3790-49a9-a8ab-c37003eed83c", + "Definition": {}, + "Gloss": { + "en": "rain", + "pt": "chover" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d681a231-c74b-4969-afd9-13b9c5f2eae6", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu zulo abvumba", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ontem choveu", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "19034ed9-ec16-4284-92f7-905c3d5ef8f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13acc98c-1d92-4456-9516-180ec96c0ac3", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvumbe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6cc2b1b5-5dbe-45f6-8afb-66b2449798be", + "Order": 1, + "DeletedAt": null, + "EntryId": "13acc98c-1d92-4456-9516-180ec96c0ac3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Vlei rat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "water rat", + "pt": "rato de agua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "92cd4bc7-7c50-4a70-936a-3bc2cd4e5c1f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "6cc2b1b5-5dbe-45f6-8afb-66b2449798be", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a1c97fba-7489-4390-9da8-2fbcda2cb8dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvun" + }, + "CitationForm": { + "seh": "bvuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73e108cc-db6b-4233-b1ad-b72688055779", + "Order": 1, + "DeletedAt": null, + "EntryId": "a1c97fba-7489-4390-9da8-2fbcda2cb8dd", + "Definition": {}, + "Gloss": { + "en": "harvest", + "pt": "colher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4dab76ba-1ffb-4649-8cd9-34269159100c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Abvuna mphuga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "They harvested rice.", + "Ws": "seh" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Eles colheram arroz.", + "Ws": "seh" + } + ] + } + }, + "Reference": null, + "SenseId": "73e108cc-db6b-4233-b1ad-b72688055779", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b2fc8bd-b0bb-4905-a159-d55f5fa13eff", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvungaz" + }, + "CitationForm": { + "seh": "bvungaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3b192b76-c082-4f51-9c65-ce2dab292a7a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b2fc8bd-b0bb-4905-a159-d55f5fa13eff", + "Definition": {}, + "Gloss": { + "en": "mix together", + "pt": "misturar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14bc016d-b5bb-4114-bec9-789000329ecd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3b192b76-c082-4f51-9c65-ce2dab292a7a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "edfd6867-472d-4a25-a992-119920785529", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvunz" + }, + "CitationForm": { + "seh": "bvunza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7e2c9813-6bc2-42f9-906a-917aec1e20f5", + "Order": 1, + "DeletedAt": null, + "EntryId": "edfd6867-472d-4a25-a992-119920785529", + "Definition": {}, + "Gloss": { + "en": "ask to", + "pt": "perguntar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f6f307fc-36d1-4e28-98e6-1a7417fcf872", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndoko kabvunze Antonyo mangwana abwere kuno.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Vai pedir Anto\u0301nio para amanha vir ca\u0301.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "7e2c9813-6bc2-42f9-906a-917aec1e20f5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d6818699-a9e5-40b4-814e-ee6063ebb962", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvunzir" + }, + "CitationForm": { + "seh": "bvunzira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f8b3aaa2-b810-4804-b9c2-72376143235f", + "Order": 1, + "DeletedAt": null, + "EntryId": "d6818699-a9e5-40b4-814e-ee6063ebb962", + "Definition": {}, + "Gloss": { + "en": "love", + "pt": "namorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a0258c2-d7a3-40b0-a933-2dc71c759402", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc3a436b-07c6-4c05-8c78-9bbe82ce5549", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a0258c2-d7a3-40b0-a933-2dc71c759402", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cord for making nets", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "linha para fazer rede", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "cord", + "pt": "linha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "885a9d2b-9492-4f37-a05a-022adae98685", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira buazi \u0022tow\u0022 p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dc3a436b-07c6-4c05-8c78-9bbe82ce5549", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2c1bbb47-cd19-4710-acd5-a363834ac79a", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwek" + }, + "CitationForm": { + "seh": "bweka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "18815e26-697e-4b5d-9054-5abac267dcd1", + "Order": 1, + "DeletedAt": null, + "EntryId": "2c1bbb47-cd19-4710-acd5-a363834ac79a", + "Definition": {}, + "Gloss": { + "en": "confess", + "pt": "confessar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cb7dbee8-ba65-4c22-b359-7409b55eb8d3", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bweka kudawa kwako.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Confessa os teus pecados.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "18815e26-697e-4b5d-9054-5abac267dcd1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b8aa2bdb-139d-48c2-8ce1-5bfc53a01d58", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwek" + }, + "CitationForm": { + "seh": "bweka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e429f500-bf9a-4c3d-9783-1b70eaa744dd", + "Order": 1, + "DeletedAt": null, + "EntryId": "b8aa2bdb-139d-48c2-8ce1-5bfc53a01d58", + "Definition": { + "en": { + "Spans": [ + { + "Text": "talk without thinking", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "falar sem pensar, \u0022fala barato\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "careless talk", + "pt": "falar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwer" + }, + "CitationForm": { + "seh": "bwera" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "Definition": {}, + "Gloss": { + "en": "come", + "pt": "vir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "19130813-273c-4bfe-9b14-0785ec757722", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bwera pano.", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", + "DeletedAt": null + }, + { + "Id": "896591a4-d69e-43c4-8978-e229ceb30fe7", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Anda ca.", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "62e86835-8499-4ebd-9f9b-5cf669ed0cbf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "0f5a1ea1-84e3-485c-8aa0-199811960a4b", + "MaybeId": "0f5a1ea1-84e3-485c-8aa0-199811960a4b", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "ComplexFormHeadword": "mambwera-mbwera", + "ComponentEntryId": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "ComponentSenseId": null, + "ComponentHeadword": "bwera" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "792a935e-eec4-481a-a6b8-fa33ad2720c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwerer" + }, + "CitationForm": { + "seh": "bwerera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cfdbb3a-856b-42cc-a288-34fbb0109fb4", + "Order": 1, + "DeletedAt": null, + "EntryId": "792a935e-eec4-481a-a6b8-fa33ad2720c3", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "regressar, voltar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "return", + "pt": "regressar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9914843d-90b7-4a51-9e10-3c84895daaac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8cfdbb3a-856b-42cc-a288-34fbb0109fb4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75740a33-1e68-4c23-9086-8b6b3884a1b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "bweres" + }, + "CitationForm": { + "seh": "bweresa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ee1a56f-8c3a-4428-96bd-4789818e9c4b", + "Order": 1, + "DeletedAt": null, + "EntryId": "75740a33-1e68-4c23-9086-8b6b3884a1b3", + "Definition": {}, + "Gloss": { + "en": "bring", + "pt": "trazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1ccca91a-eaa6-4d9b-a7f0-c24810c1c818", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0ee1a56f-8c3a-4428-96bd-4789818e9c4b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5e222505-b346-48b6-97a1-5c471d853903", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwerezer" + }, + "CitationForm": { + "seh": "bwerezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c854bbb5-a15d-4fb3-a044-712160f19483", + "Order": 1, + "DeletedAt": null, + "EntryId": "5e222505-b346-48b6-97a1-5c471d853903", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to respond in kind", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "react", + "pt": "reagir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8d231a11-9085-4b62-994b-240f274bc530", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c854bbb5-a15d-4fb3-a044-712160f19483", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "579f89fd-3f9d-4bec-8bcb-b0c9334ea25e", + "DeletedAt": null, + "LexemeForm": { + "seh": "bwezer" + }, + "CitationForm": { + "seh": "bwezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7d4c55b8-b905-48ab-b1d5-063cb01ff3fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "579f89fd-3f9d-4bec-8bcb-b0c9334ea25e", + "Definition": {}, + "Gloss": { + "en": "give back", + "pt": "devolver" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ba8201a-742d-4bb6-9b36-240349fd4710", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7d4c55b8-b905-48ab-b1d5-063cb01ff3fb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c7c36ff-b229-4143-afe3-d5f721823651", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzal" + }, + "CitationForm": { + "seh": "bzala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b5b7814e-a85d-4825-9ef0-5f4426d64031", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c7c36ff-b229-4143-afe3-d5f721823651", + "Definition": {}, + "Gloss": { + "en": "sow seeds", + "pt": "semear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7fda3f12-bacb-4e81-9507-4989fbd01f2d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b5b7814e-a85d-4825-9ef0-5f4426d64031", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b51ce7b-2f84-4afc-81be-ca4ed5f94f57", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e163b20d-9a33-4870-bae4-eccbff6fb1ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b51ce7b-2f84-4afc-81be-ca4ed5f94f57", + "Definition": {}, + "Gloss": { + "en": "direita", + "pt": "esqueda" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8f9ec27-abd3-4bc2-a26f-0945b49de84f", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzimb" + }, + "CitationForm": { + "seh": "bzimba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb256afd-ba11-4319-817d-e4932fb704c3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8f9ec27-abd3-4bc2-a26f-0945b49de84f", + "Definition": {}, + "Gloss": { + "en": "swell", + "pt": "inchar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "11e8661c-a07e-4a3f-8f2d-2ea3d7494501", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "fb256afd-ba11-4319-817d-e4932fb704c3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f67e332a-b296-4967-ace3-5583ce66e95b", + "DeletedAt": null, + "LexemeForm": { + "seh": "bzwal" + }, + "CitationForm": { + "seh": "bzwala" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b84dc935-feaf-4489-9434-1da83cfb5e7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "f67e332a-b296-4967-ace3-5583ce66e95b", + "Definition": {}, + "Gloss": { + "en": "plant", + "pt": "semear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db997605-c9e0-4876-bc61-9bd5ed62c9b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5bfee4a9-8bf1-4d74-a3e6-98163225cb42", + "Order": 1, + "DeletedAt": null, + "EntryId": "db997605-c9e0-4876-bc61-9bd5ed62c9b1", + "Definition": {}, + "Gloss": { + "en": "thing", + "pt": "coisa" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bd7068ce-9d4f-4696-9efc-e66983553492", + "DeletedAt": null, + "LexemeForm": { + "seh": "cabanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b84f1059-e013-43da-b6e8-6690c6220dee", + "Order": 1, + "DeletedAt": null, + "EntryId": "bd7068ce-9d4f-4696-9efc-e66983553492", + "Definition": { + "en": { + "Spans": [ + { + "Text": "corn beer", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cerveja de milho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "beer", + "pt": "cerveja" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e68bb1cb-a213-484e-8cb8-ff80a7bf0c62", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cabanga wadzipa wadidi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "cerveja forte boa", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "b84f1059-e013-43da-b6e8-6690c6220dee", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e339b423-2cd4-4394-b8be-bfc968e3d587", + "DeletedAt": null, + "LexemeForm": { + "seh": "adu" + }, + "CitationForm": { + "seh": "cadu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c0b81ea-659c-4336-8907-d943baa454af", + "Order": 1, + "DeletedAt": null, + "EntryId": "e339b423-2cd4-4394-b8be-bfc968e3d587", + "Definition": {}, + "Gloss": { + "en": "flea", + "pt": "pulga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ecc39bc2-6336-48ca-be46-cf5e49a3c267", + "Name": { + "en": "Insect" + }, + "Code": "1.6.1.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fde8315e-49f0-4950-8c3c-289f189bd261", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1c0b81ea-659c-4336-8907-d943baa454af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c981801-97f8-4d60-914d-540bf97baabf", + "DeletedAt": null, + "LexemeForm": { + "seh": "aka" + }, + "CitationForm": { + "seh": "caka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0e4f6dec-8624-4d51-93b4-f3b613a4872e", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c981801-97f8-4d60-914d-540bf97baabf", + "Definition": {}, + "Gloss": { + "en": "year", + "pt": "ano" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf2b3aa6-0ead-4450-8ddc-4b4bfefc14d2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; George; sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "0e4f6dec-8624-4d51-93b4-f3b613a4872e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "613e4d2d-9eaa-4b8e-932e-491e98366048", + "DeletedAt": null, + "LexemeForm": { + "seh": "akudya" + }, + "CitationForm": { + "seh": "cakudya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "46b94bc1-614c-4a32-9be0-3f8fc2a78fec", + "Order": 1, + "DeletedAt": null, + "EntryId": "613e4d2d-9eaa-4b8e-932e-491e98366048", + "Definition": {}, + "Gloss": { + "en": "food", + "pt": "comida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5", + "Name": { + "en": "Food" + }, + "Code": "5.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3b1a645c-87b0-4a38-85b3-232e51856cb5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "46b94bc1-614c-4a32-9be0-3f8fc2a78fec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57571972-5e4d-400a-b594-04ade6b11e81", + "DeletedAt": null, + "LexemeForm": { + "seh": "akugawika" + }, + "CitationForm": { + "seh": "cakugawika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "40de284d-f04e-40c3-8546-aa7b293e3b75", + "Order": 1, + "DeletedAt": null, + "EntryId": "57571972-5e4d-400a-b594-04ade6b11e81", + "Definition": {}, + "Gloss": { + "en": "dividable", + "pt": "dividivel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7cfbedf3-8864-45bc-9613-56de7bbacc4b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "40de284d-f04e-40c3-8546-aa7b293e3b75", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3ef6f432-c3bc-4615-87e0-dbcf57411452", + "DeletedAt": null, + "LexemeForm": { + "seh": "akutoma" + }, + "CitationForm": { + "seh": "cakutoma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7c838f3f-0518-4cc1-9468-43df99c9b9dc", + "Order": 1, + "DeletedAt": null, + "EntryId": "3ef6f432-c3bc-4615-87e0-dbcf57411452", + "Definition": {}, + "Gloss": { + "en": "first", + "pt": "premeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c9227e9d-61c2-41a2-99ae-78c1dcd19565", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7c838f3f-0518-4cc1-9468-43df99c9b9dc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd296946-5721-4e1b-8cd3-b69a5c3c7eec", + "DeletedAt": null, + "LexemeForm": { + "seh": "ala" + }, + "CitationForm": { + "seh": "cala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "876f34e6-2f52-4365-8539-e22ae469c701", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd296946-5721-4e1b-8cd3-b69a5c3c7eec", + "Definition": {}, + "Gloss": { + "en": "finger", + "pt": "dedo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e5ea0cf-0b0f-4d6c-b549-222ea0eec8fd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "876f34e6-2f52-4365-8539-e22ae469c701", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04fea218-fef5-4df3-b2d4-da1198dd16dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "cap" + }, + "CitationForm": { + "seh": "capa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bcf0c7ea-17ee-4699-b6bc-d6cbd59d775d", + "Order": 1, + "DeletedAt": null, + "EntryId": "04fea218-fef5-4df3-b2d4-da1198dd16dd", + "Definition": {}, + "Gloss": { + "en": "row", + "pt": "remar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5698015-209c-4ef4-9dbb-21b859fe0fd0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:, George Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bcf0c7ea-17ee-4699-b6bc-d6cbd59d775d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e24c479a-3d15-4cf4-97b6-139e766365ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "aso" + }, + "CitationForm": { + "seh": "caso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "103e9e1d-c8fa-40ad-9854-16961c1966cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "e24c479a-3d15-4cf4-97b6-139e766365ab", + "Definition": { + "en": { + "Spans": [ + { + "Text": "elephant trunk", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tronco de elefante", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trunk", + "pt": "tronco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1eeb1fcf-49da-4615-ab03-6a4900aae601", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "103e9e1d-c8fa-40ad-9854-16961c1966cb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b70f66e-e9e0-42c5-929f-2c046c74d1b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "ce" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "231e0ad6-ca31-4eaf-84b9-116b6791e7c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b70f66e-e9e0-42c5-929f-2c046c74d1b2", + "Definition": {}, + "Gloss": { + "en": "his", + "pt": "d\u0027ele" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b96816ec-5e30-4ac4-9f9c-5832cded8a28", + "DeletedAt": null, + "LexemeForm": { + "seh": "edza" + }, + "CitationForm": { + "seh": "cedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9599c2f-03c9-4b27-ade3-844499a60168", + "Order": 1, + "DeletedAt": null, + "EntryId": "b96816ec-5e30-4ac4-9f9c-5832cded8a28", + "Definition": {}, + "Gloss": { + "en": "in the light", + "pt": "na luz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "228dcdc4-be8d-4bf9-b141-394c77268648", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Cidima na cedza", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Darkness and light", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Escuridao e luz", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f9599c2f-03c9-4b27-ade3-844499a60168", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d26a9cc7-6cf2-4fa2-badf-bc98a771ba07", + "DeletedAt": null, + "LexemeForm": { + "seh": "ceker" + }, + "CitationForm": { + "seh": "cekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5e1535f3-c85a-493a-b58e-34e08ff7a3dc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d26a9cc7-6cf2-4fa2-badf-bc98a771ba07", + "Definition": {}, + "Gloss": { + "en": "cut", + "pt": "cortar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f2b16755-5b81-4403-82c3-b7924a56bfab", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5e1535f3-c85a-493a-b58e-34e08ff7a3dc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96750d61-22b6-4ff0-a0de-b483eb866109", + "DeletedAt": null, + "LexemeForm": { + "seh": "cemer" + }, + "CitationForm": { + "seh": "cemera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "262c9ce4-ce33-4332-8ad0-5d93180cf438", + "Order": 1, + "DeletedAt": null, + "EntryId": "96750d61-22b6-4ff0-a0de-b483eb866109", + "Definition": {}, + "Gloss": { + "en": "call", + "pt": "chamar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c554af2-a283-4220-8789-b5bbc99a1fbe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "262c9ce4-ce33-4332-8ad0-5d93180cf438", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72a67175-6d5f-4966-b5b2-f7163e776984", + "DeletedAt": null, + "LexemeForm": { + "seh": "cen" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7dc211fe-5eac-4381-97fa-e8d1a0a8d674", + "Order": 1, + "DeletedAt": null, + "EntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "Definition": { + "en": { + "Spans": [ + { + "Text": "white, pure, holy", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "blanco, puro, santo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "white", + "pt": "blanco" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "7adf468c-b93a-4b04-8af6-4c691122a4eb", + "Name": { + "en": "White" + }, + "Code": "8.3.3.3.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "7d9e442d-044c-4766-8dad-435c6610a449", + "Order": 2, + "DeletedAt": null, + "EntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "Definition": { + "en": { + "Spans": [ + { + "Text": "pure, holy, having the character of God", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "puro, santo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "pure", + "pt": "puro" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "83adeb9d-c0be-4073-894d-913014420280", + "Name": { + "en": "Good" + }, + "Code": "8.3.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "6d43426c-aec7-4b78-8527-d92b24b4e909", + "MaybeId": "6d43426c-aec7-4b78-8527-d92b24b4e909", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "ComplexFormHeadword": "uceni", + "ComponentEntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "ComponentSenseId": null, + "ComponentHeadword": "cen" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1943da94-0157-475f-9309-3311de1fcd6c", + "DeletedAt": null, + "LexemeForm": { + "seh": "cenjedz" + }, + "CitationForm": { + "seh": "cenjedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "daf3cc27-166e-4225-b673-0a7d9b691574", + "Order": 1, + "DeletedAt": null, + "EntryId": "1943da94-0157-475f-9309-3311de1fcd6c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "warn severely", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "informar anticipademente aquele que vai acontecer", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "notify", + "pt": "advirtir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2650825b-0c92-48cb-afdd-150dcf66a07d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "daf3cc27-166e-4225-b673-0a7d9b691574", + "DeletedAt": null + } + ] + }, + { + "Id": "6211b4a9-91ec-4828-9539-387ea6645bae", + "Order": 2, + "DeletedAt": null, + "EntryId": "1943da94-0157-475f-9309-3311de1fcd6c", + "Definition": {}, + "Gloss": { + "en": "alert", + "pt": "alertar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09687988-afc0-4df4-aa57-6ab1cd8678db", + "DeletedAt": null, + "LexemeForm": { + "seh": "cenjer" + }, + "CitationForm": { + "seh": "cenjera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "47c21100-95f6-4f45-ac84-3f1472109473", + "Order": 1, + "DeletedAt": null, + "EntryId": "09687988-afc0-4df4-aa57-6ab1cd8678db", + "Definition": {}, + "Gloss": { + "en": "sly", + "pt": "esperto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a7f7d4c2-761e-4777-b505-900fd2f7637c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "47c21100-95f6-4f45-ac84-3f1472109473", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ac05a156-d0e3-4acf-8b72-9248585699e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "cep" + }, + "CitationForm": { + "seh": "cepa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "182613e5-19d1-40b2-a15f-b69debd53e79", + "Order": 1, + "DeletedAt": null, + "EntryId": "ac05a156-d0e3-4acf-8b72-9248585699e3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "is a small amount", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "e\u0301 pouco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "is little", + "pt": "e\u0301 pouco" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b5238fd3-bf93-49f8-b31a-0510d77b4b2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "cepes" + }, + "CitationForm": { + "seh": "cepesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6bacbaec-0a03-4a7d-91da-13c635e8db28", + "Order": 1, + "DeletedAt": null, + "EntryId": "b5238fd3-bf93-49f8-b31a-0510d77b4b2c", + "Definition": {}, + "Gloss": { + "en": "make smaller", + "pt": "diminuir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f536fee5-6293-4af3-9e03-daaf9528cdb2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6bacbaec-0a03-4a7d-91da-13c635e8db28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "320782c0-3123-4d84-8c31-b1fde37ce4e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "cepesek" + }, + "CitationForm": { + "seh": "cepeseka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22e9311b-db4b-4067-b2a7-3dfbfc153559", + "Order": 1, + "DeletedAt": null, + "EntryId": "320782c0-3123-4d84-8c31-b1fde37ce4e0", + "Definition": {}, + "Gloss": { + "en": "humble-oneself", + "pt": "humilar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "364cf938-7db8-4ce7-83d8-6b8f4c5b0a31", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "22e9311b-db4b-4067-b2a7-3dfbfc153559", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "615658eb-1b32-40cc-b903-4cc1ca2c6f90", + "DeletedAt": null, + "LexemeForm": { + "seh": "cetum" + }, + "CitationForm": { + "seh": "cetuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdb94fca-9c10-4bd6-9980-74048048df01", + "Order": 1, + "DeletedAt": null, + "EntryId": "615658eb-1b32-40cc-b903-4cc1ca2c6f90", + "Definition": {}, + "Gloss": { + "en": "making lighning", + "pt": "relampejar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a34a8e16-1b48-4838-bf07-9a2fcc5b59ad", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "bdb94fca-9c10-4bd6-9980-74048048df01", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "20131126-9f1c-45fb-b2e6-39269cfffda7", + "DeletedAt": null, + "LexemeForm": { + "seh": "cez" + }, + "CitationForm": { + "seh": "ceza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f78f10bb-ac27-43cb-83f7-334e218b8fe1", + "Order": 1, + "DeletedAt": null, + "EntryId": "20131126-9f1c-45fb-b2e6-39269cfffda7", + "Definition": {}, + "Gloss": { + "en": "converse", + "pt": "conversar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e38e8e82-c346-4204-96e9-44b7e3d14bd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "checa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e3df798-e0fc-4e46-9c1d-8f2e0b09ff12", + "Order": 1, + "DeletedAt": null, + "EntryId": "e38e8e82-c346-4204-96e9-44b7e3d14bd8", + "Definition": {}, + "Gloss": { + "en": "sand", + "pt": "areia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bae858f6-1224-4d69-9685-1c14ac7f8500", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1e3df798-e0fc-4e46-9c1d-8f2e0b09ff12", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c38267b9-fc32-4c5b-a4ce-066cfbd08d77", + "DeletedAt": null, + "LexemeForm": { + "seh": "chek" + }, + "CitationForm": { + "seh": "cheka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "28d53a45-4107-441d-9931-5d878d16844a", + "Order": 1, + "DeletedAt": null, + "EntryId": "c38267b9-fc32-4c5b-a4ce-066cfbd08d77", + "Definition": {}, + "Gloss": { + "en": "plant", + "pt": "plantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "834a7732-a145-4de4-9a65-c5076fa974e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "28d53a45-4107-441d-9931-5d878d16844a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d70ccb3d-389c-4892-8fb3-f4b5337439a1", + "DeletedAt": null, + "LexemeForm": { + "seh": "cheker" + }, + "CitationForm": { + "seh": "chekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b66ba0ba-bf19-4f63-a1e1-aed0ad7f113a", + "Order": 1, + "DeletedAt": null, + "EntryId": "d70ccb3d-389c-4892-8fb3-f4b5337439a1", + "Definition": {}, + "Gloss": { + "en": "transplant", + "pt": "transplantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00b7d7bf-93ae-44ec-8ca2-327873541433", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b66ba0ba-bf19-4f63-a1e1-aed0ad7f113a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "268a7a80-1dd1-444b-9dd1-44829d9a0aa5", + "DeletedAt": null, + "LexemeForm": { + "seh": "chereng" + }, + "CitationForm": { + "seh": "cherenga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2be15d9d-3a82-4367-94b8-ccea9ba80bea", + "Order": 1, + "DeletedAt": null, + "EntryId": "268a7a80-1dd1-444b-9dd1-44829d9a0aa5", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ser pobre , ser sem possibilidades", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "be poor", + "pt": "ser pobre" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "07f3c5b0-f1ed-4f20-b85b-9bd5852d7ef2", + "DeletedAt": null, + "LexemeForm": { + "seh": "chikwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21facabb-a7f9-4f41-9fe3-8e6132dcbb66", + "Order": 1, + "DeletedAt": null, + "EntryId": "07f3c5b0-f1ed-4f20-b85b-9bd5852d7ef2", + "Definition": {}, + "Gloss": { + "en": "support", + "pt": "suporte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1eee3e09-e8b4-4212-baa2-56b142ec6780", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "21facabb-a7f9-4f41-9fe3-8e6132dcbb66", + "DeletedAt": null + } + ] + }, + { + "Id": "c4d03434-2267-4f9b-af23-85a1b3c4795d", + "Order": 2, + "DeletedAt": null, + "EntryId": "07f3c5b0-f1ed-4f20-b85b-9bd5852d7ef2", + "Definition": {}, + "Gloss": { + "en": "column", + "pt": "coluna" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7191a861-3eda-4796-aa6b-6f39d03faf27", + "DeletedAt": null, + "LexemeForm": { + "seh": "ching" + }, + "CitationForm": { + "seh": "chinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "37ba838d-656a-4819-a527-ffea32a2a288", + "Order": 1, + "DeletedAt": null, + "EntryId": "7191a861-3eda-4796-aa6b-6f39d03faf27", + "Definition": {}, + "Gloss": { + "en": "take revenge", + "pt": "vingar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "934bcebd-32f3-4a80-8e1b-f66070f557ad", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "37ba838d-656a-4819-a527-ffea32a2a288", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f020aa46-e8bd-4151-ab5b-1d404ec71c47", + "DeletedAt": null, + "LexemeForm": { + "seh": "chinyuk" + }, + "CitationForm": { + "seh": "chinyuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fa2dec63-26d6-4f6a-89f2-185b005d3b27", + "Order": 1, + "DeletedAt": null, + "EntryId": "f020aa46-e8bd-4151-ab5b-1d404ec71c47", + "Definition": {}, + "Gloss": { + "en": "repent", + "pt": "arrepender-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "50e69e7f-2f6f-430f-a5ff-613f389a0317", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "fa2dec63-26d6-4f6a-89f2-185b005d3b27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0a612a5-81a5-4807-9f49-ac924cb5718e", + "DeletedAt": null, + "LexemeForm": { + "seh": "chiru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e2906ba-2068-4582-b306-9609e69a003e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0a612a5-81a5-4807-9f49-ac924cb5718e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "house rat only", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "rato de casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rat", + "pt": "rato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "66d09465-56c7-4037-a52c-588a613c1656", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Orth; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "8e2906ba-2068-4582-b306-9609e69a003e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c70fedb1-bcba-4036-88c9-e11e8fbbfbd9", + "DeletedAt": null, + "LexemeForm": { + "seh": "chit" + }, + "CitationForm": { + "seh": "chita" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "108cb187-a924-40c4-b5ea-fb903dc52593", + "Order": 1, + "DeletedAt": null, + "EntryId": "c70fedb1-bcba-4036-88c9-e11e8fbbfbd9", + "Definition": {}, + "Gloss": { + "en": "descend", + "pt": "descer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f390a2d0-67a4-46f9-9e0e-09ff3190a27f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "108cb187-a924-40c4-b5ea-fb903dc52593", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e9fbb1fa-f8c6-456c-aaf8-d521d05c0d65", + "DeletedAt": null, + "LexemeForm": { + "seh": "chith" + }, + "CitationForm": { + "seh": "chitha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e6857eda-73f7-44a1-94a1-94582543cc79", + "Order": 1, + "DeletedAt": null, + "EntryId": "e9fbb1fa-f8c6-456c-aaf8-d521d05c0d65", + "Definition": {}, + "Gloss": { + "en": "come down", + "pt": "descer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d7a9c684-23d1-4aff-92e1-9371e389d920", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e6857eda-73f7-44a1-94a1-94582543cc79", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db5d0299-6574-4917-92a5-60febd57a16e", + "DeletedAt": null, + "LexemeForm": { + "seh": "chitichiti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8ba0704-0642-4800-9cd7-6b4aaf4c8878", + "Order": 1, + "DeletedAt": null, + "EntryId": "db5d0299-6574-4917-92a5-60febd57a16e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "from 22 hours to 2 hours", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "midnight", + "pt": "alto noite" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "98578e9c-cea7-4fd3-89f8-6299c93827f7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c8ba0704-0642-4800-9cd7-6b4aaf4c8878", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42f95c0d-3810-457e-bd51-3c3cad5577e1", + "DeletedAt": null, + "LexemeForm": { + "seh": "choco" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3bbc4b24-cab8-4bc2-9746-6781d12d2cd5", + "Order": 1, + "DeletedAt": null, + "EntryId": "42f95c0d-3810-457e-bd51-3c3cad5577e1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cardinal bird (red bird w/ form like a sparrow)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cardinal bird", + "pt": "passaro tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7f0851cc-5438-45a6-a45c-dc4b847288ee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "3bbc4b24-cab8-4bc2-9746-6781d12d2cd5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d277f2b0-d5be-4ba5-bc75-2337ddce0307", + "DeletedAt": null, + "LexemeForm": { + "seh": "chodol" + }, + "CitationForm": { + "seh": "chodola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7d6aba3e-e816-42e1-89dc-d60080422343", + "Order": 1, + "DeletedAt": null, + "EntryId": "d277f2b0-d5be-4ba5-bc75-2337ddce0307", + "Definition": {}, + "Gloss": { + "en": "pick", + "pt": "tirar fruta" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23e567c0-5d74-4379-a49f-7709107c6436", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7d6aba3e-e816-42e1-89dc-d60080422343", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d9974a61-1b77-429e-848f-57504d035ff5", + "DeletedAt": null, + "LexemeForm": { + "seh": "chunyuk" + }, + "CitationForm": { + "seh": "chunyuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01ee130a-b3dc-4f84-b7eb-669c3a06cf67", + "Order": 1, + "DeletedAt": null, + "EntryId": "d9974a61-1b77-429e-848f-57504d035ff5", + "Definition": {}, + "Gloss": { + "en": "repent", + "pt": "arrepender-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f184278f-8f44-4035-89dd-196fcd4eca30", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "01ee130a-b3dc-4f84-b7eb-669c3a06cf67", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1378eabe-b763-462c-b1bb-10b431325426", + "DeletedAt": null, + "LexemeForm": { + "seh": "ci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "f82e5d68-7c90-4a5b-974d-1fc2381964cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "1378eabe-b763-462c-b1bb-10b431325426", + "Definition": { + "en": { + "Spans": [ + { + "Text": "diminuative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "diminuativo or a new and unknown thing", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0d5f9eff-a863-426f-a1e6-06fd1918ddc4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cindzinda", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "small city", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cidade pequeno", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "f82e5d68-7c90-4a5b-974d-1fc2381964cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "fb19e30f-b594-491f-bf4b-bb6f244eb325", + "Order": 1, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3abf789a-e5cc-4214-a8ff-d74a3377be74", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fb19e30f-b594-491f-bf4b-bb6f244eb325", + "DeletedAt": null + } + ] + }, + { + "Id": "d7dc87e1-9a7d-4537-bb8d-bf93cb2bbcff", + "Order": 2, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "151e4c76-30e4-4eed-b474-2d438c278906", + "Order": 3, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ca12b919-bc83-4894-b6e3-3089415ff852", + "Order": 4, + "DeletedAt": null, + "EntryId": "6b55b098-ddae-42e3-b0e1-eee8adc71ab4", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bcddb80e-89a3-496a-ad39-633b76392dcb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "808aeefc-e04c-4512-b883-56c9955c4ea6", + "Order": 1, + "DeletedAt": null, + "EntryId": "bcddb80e-89a3-496a-ad39-633b76392dcb", + "Definition": {}, + "Gloss": { + "en": "7", + "pt": "7" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7214e40-f6dc-4a7f-a97e-c87d875dc12b", + "DeletedAt": null, + "LexemeForm": { + "seh": "bisobiso" + }, + "CitationForm": { + "seh": "cibisobiso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d0b16565-d636-4342-9e70-fd81bf5cd259", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7214e40-f6dc-4a7f-a97e-c87d875dc12b", + "Definition": {}, + "Gloss": { + "en": "secret", + "pt": "segredo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de00eeed-5f6c-458b-985a-1d2d1ed5bad8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d0b16565-d636-4342-9e70-fd81bf5cd259", + "DeletedAt": null + } + ] + }, + { + "Id": "51f20902-34e8-41f0-bab4-72173fecea6f", + "Order": 2, + "DeletedAt": null, + "EntryId": "f7214e40-f6dc-4a7f-a97e-c87d875dc12b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hide and seek", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "jogo de escondidas", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "game", + "pt": "jogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0006f482-a078-4cef-9c5a-8bd35b53cf72", + "DeletedAt": null, + "LexemeForm": { + "seh": "bubu bubu" + }, + "CitationForm": { + "seh": "cibubu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07086e7d-dfcc-4f4e-b0d6-0be7a7943f97", + "Order": 1, + "DeletedAt": null, + "EntryId": "0006f482-a078-4cef-9c5a-8bd35b53cf72", + "Definition": {}, + "Gloss": { + "en": "stammering", + "pt": "gaguez" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c2dbe83a-d638-45ac-a6d5-5f041b9dde71", + "Name": { + "en": "Disabled" + }, + "Code": "2.5.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "03dfb70c-98ae-49b1-810e-9e0482e4837b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "07086e7d-dfcc-4f4e-b0d6-0be7a7943f97", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c81e352-3f32-4ff2-b1e6-21f673e578d8", + "DeletedAt": null, + "LexemeForm": { + "seh": "bverano" + }, + "CitationForm": { + "seh": "cibverano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "455056b1-a9dc-441e-9fce-95ce0c058bce", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c81e352-3f32-4ff2-b1e6-21f673e578d8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "plan, contract, covenant", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "harmonia, alianc\u0327a, entendemento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "contract", + "pt": "harmonia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cfa20cd4-b550-4869-8205-e00d1a372bd7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "455056b1-a9dc-441e-9fce-95ce0c058bce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0439e9d1-7c48-4296-8ed1-9abb000b9268", + "DeletedAt": null, + "LexemeForm": { + "seh": "dade" + }, + "CitationForm": { + "seh": "cidade" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "938cda59-6ed4-482d-a5fb-23a3bc2d6f0c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0439e9d1-7c48-4296-8ed1-9abb000b9268", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a rack for trying fish", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "drying rack", + "pt": "secagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c300e47d-58d0-4c38-8999-4b20c3bf6d19", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "938cda59-6ed4-482d-a5fb-23a3bc2d6f0c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08de3c15-f03f-4d84-a2f0-f97fe7f3877d", + "DeletedAt": null, + "LexemeForm": { + "seh": "dima" + }, + "CitationForm": { + "seh": "cidima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b9bb5f59-f628-4b10-a849-f98804e37846", + "Order": 1, + "DeletedAt": null, + "EntryId": "08de3c15-f03f-4d84-a2f0-f97fe7f3877d", + "Definition": {}, + "Gloss": { + "en": "darkness", + "pt": "escurida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4b1977ca-dc85-49de-b583-88ca24fea7a5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b9bb5f59-f628-4b10-a849-f98804e37846", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fd4e75a-7f77-4ada-98e4-da4b8c32ca1b", + "DeletedAt": null, + "LexemeForm": { + "seh": "dumbiriro" + }, + "CitationForm": { + "seh": "cidumbiriro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ebe4d9f3-1e6d-40b8-be42-c47e67170f86", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fd4e75a-7f77-4ada-98e4-da4b8c32ca1b", + "Definition": {}, + "Gloss": { + "en": "promise", + "pt": "promessa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2bb655f6-4c24-4c23-9b8a-20a78675945e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ebe4d9f3-1e6d-40b8-be42-c47e67170f86", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fb2e03b-621f-44b3-b14a-784abbe06f4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzindikiro" + }, + "CitationForm": { + "seh": "cidzindikiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1dba9c3-0682-4507-a6b7-bc983f25197f", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fb2e03b-621f-44b3-b14a-784abbe06f4f", + "Definition": {}, + "Gloss": { + "en": "sign", + "pt": "sinal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a5230e85-2372-4869-ac18-3dbe6a77015e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c1dba9c3-0682-4507-a6b7-bc983f25197f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af290488-019e-459d-a94e-8c98e5510022", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzo" + }, + "CitationForm": { + "seh": "cidzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4135e832-8813-4ab3-a07a-2e4266735271", + "Order": 1, + "DeletedAt": null, + "EntryId": "af290488-019e-459d-a94e-8c98e5510022", + "Definition": {}, + "Gloss": { + "en": "power", + "pt": "poder" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f9e45b2e-c654-40e7-bc08-d4517d8cbb92", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4135e832-8813-4ab3-a07a-2e4266735271", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa44c7f6-f596-417f-8c95-13bd62e2dab4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu-dzulu" + }, + "CitationForm": { + "seh": "cidzulu-dzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc5334da-90ac-479b-a827-7e50b0dfed82", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa44c7f6-f596-417f-8c95-13bd62e2dab4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "floating above with space between", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "above", + "pt": "por cima" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ff466d3d-f890-4628-9adb-be795bed657c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cc5334da-90ac-479b-a827-7e50b0dfed82", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75271c68-093a-43ce-8a0a-d3929d2a7c7a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fu" + }, + "CitationForm": { + "seh": "cifu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d8d36c69-d082-4474-a85d-b3cd6a549364", + "Order": 1, + "DeletedAt": null, + "EntryId": "75271c68-093a-43ce-8a0a-d3929d2a7c7a", + "Definition": {}, + "Gloss": { + "en": "stomach", + "pt": "esto\u0302mago" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4630dd7a-2efb-448d-9063-e18ffadf19ba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d8d36c69-d082-4474-a85d-b3cd6a549364", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d014b34-6f5e-4861-b5e3-a9c09b2690f8", + "DeletedAt": null, + "LexemeForm": { + "seh": "cifupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bdb18775-6b18-48e5-9abc-dbb1739ef993", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d014b34-6f5e-4861-b5e3-a9c09b2690f8", + "Definition": {}, + "Gloss": { + "en": "close to", + "pt": "perto" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef129f0f-dc62-42b6-9e90-83bc0b216d06", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuwo" + }, + "CitationForm": { + "seh": "cifuwo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2446f241-0aea-43cb-8f94-df126030df9c", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef129f0f-dc62-42b6-9e90-83bc0b216d06", + "Definition": { + "en": { + "Spans": [ + { + "Text": "domestic animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "animal domesticos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "animal", + "pt": "animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ac55f9e-9c88-4fa9-8b36-4c0bd8227c2b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2446f241-0aea-43cb-8f94-df126030df9c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91fc9a4e-7558-4f87-aaae-d7a6a55c36de", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuyo" + }, + "CitationForm": { + "seh": "cifuyo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a0dd2817-6a0c-4123-8fd5-0e92d3e3f298", + "Order": 1, + "DeletedAt": null, + "EntryId": "91fc9a4e-7558-4f87-aaae-d7a6a55c36de", + "Definition": {}, + "Gloss": { + "en": "livestock", + "pt": "cria" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "957eefd2-3bfb-4872-b52a-73aaefc2f245", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a0dd2817-6a0c-4123-8fd5-0e92d3e3f298", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "54bcd96a-4b3c-46ef-aba4-9b92a095d749", + "DeletedAt": null, + "LexemeForm": { + "seh": "gumbwa" + }, + "CitationForm": { + "seh": "cigumbwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab896c4e-a906-4937-ac67-898b7f8cdff7", + "Order": 1, + "DeletedAt": null, + "EntryId": "54bcd96a-4b3c-46ef-aba4-9b92a095d749", + "Definition": { + "en": { + "Spans": [ + { + "Text": "trap for catching birds alive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "armadilha para apanhar passaros vivo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trap", + "pt": "armadilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "196f81d0-6a1a-4cc0-936a-367423ff485c", + "Name": { + "en": "Trap" + }, + "Code": "6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e0992cd-c04c-4b55-beab-6b0a3c98a994", + "Name": { + "en": "Hunting birds" + }, + "Code": "6.4.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "60300565-563d-4d17-b7d0-20d3105547fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ab896c4e-a906-4937-ac67-898b7f8cdff7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e64d3bfe-bbf8-4624-b213-bfb17e47316f", + "DeletedAt": null, + "LexemeForm": { + "seh": "cikairi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7f172dfe-8c32-4b4e-96a0-e53094aa3cae", + "Order": 1, + "DeletedAt": null, + "EntryId": "e64d3bfe-bbf8-4624-b213-bfb17e47316f", + "Definition": {}, + "Gloss": { + "en": "second", + "pt": "segunda" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7ab16ccc-f41e-4a3c-8d45-82dc2d71c1cb", + "DeletedAt": null, + "LexemeForm": { + "seh": "kalango" + }, + "CitationForm": { + "seh": "cikalango" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9b5a296-5d59-437e-a2ee-29c9a8b0680e", + "Order": 1, + "DeletedAt": null, + "EntryId": "7ab16ccc-f41e-4a3c-8d45-82dc2d71c1cb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "clay pot", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "panela de barro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "pot", + "pt": "barro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4824c2f8-3421-40ee-a5f2-a192f08da57e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "f9b5a296-5d59-437e-a2ee-29c9a8b0680e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "929d9057-b854-4c54-99c3-aca9d037a0a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazi" + }, + "CitationForm": { + "seh": "cikazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "33af2390-171d-4ea1-9aef-695eb3cb38f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "929d9057-b854-4c54-99c3-aca9d037a0a4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "manners proper to women", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "costumes do mulhers", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "women\u0027s ways", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ea621e0-ed73-4b9a-9448-bb7257a819f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "33af2390-171d-4ea1-9aef-695eb3cb38f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b2943039-1383-4604-8b58-3323a5f69270", + "DeletedAt": null, + "LexemeForm": { + "seh": "khulupiriro" + }, + "CitationForm": { + "seh": "cikhulupiriro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c947e1f9-14e9-4598-96de-2b3bb20331fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "b2943039-1383-4604-8b58-3323a5f69270", + "Definition": {}, + "Gloss": { + "en": "faith", + "pt": "fe\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ca5a8a21-6394-4948-a0e9-d2415d42deec", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c947e1f9-14e9-4598-96de-2b3bb20331fa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7e9f5b5-7c2c-4542-95cc-8965159dff84", + "DeletedAt": null, + "LexemeForm": { + "seh": "khumbi" + }, + "CitationForm": { + "seh": "cikhumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "862251ea-bcf4-4e60-a115-6aeace6a308e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7e9f5b5-7c2c-4542-95cc-8965159dff84", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a small temporary hut, lean-to", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hut", + "pt": "casota" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f10751c9-9cef-483b-b826-a1c5bf4514fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "862251ea-bcf4-4e60-a115-6aeace6a308e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "faab2875-df3f-445e-9634-7fe56767b2e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "cikwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c868028-605f-4f16-a916-4f6861f296cf", + "Order": 1, + "DeletedAt": null, + "EntryId": "faab2875-df3f-445e-9634-7fe56767b2e3", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "celeiro, grande cesta de palha que guarda um tipo de comida, colocado dentro da casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "food store", + "pt": "celeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5", + "Name": { + "en": "Food" + }, + "Code": "5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd436263-30a3-498c-93f6-3d5682f7f7c0", + "Name": { + "en": "Commerce" + }, + "Code": "6.9.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "9cf174c8-1d53-4736-9eb3-eb3a82a3d927", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0c868028-605f-4f16-a916-4f6861f296cf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0b20cfc-a93e-46f5-b9d5-5c68a48f7460", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwi" + }, + "CitationForm": { + "seh": "cikwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c482d897-19bc-4cf4-bb82-46621906e181", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0b20cfc-a93e-46f5-b9d5-5c68a48f7460", + "Definition": {}, + "Gloss": { + "en": "thousand", + "pt": "mil" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "475eefae-b5e5-4d15-8459-553744124fee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c482d897-19bc-4cf4-bb82-46621906e181", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "DeletedAt": null, + "LexemeForm": { + "seh": "maso-maso" + }, + "CitationForm": { + "seh": "cimaso-maso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "598cba57-6ea3-47b7-8545-7333e7080211", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "Definition": {}, + "Gloss": { + "en": "want all", + "pt": "quer tudo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b543095b-fe00-4b90-9bfc-d244f5ab05d3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "598cba57-6ea3-47b7-8545-7333e7080211", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "449f108c-dc6e-4d8d-a5e6-cfe2546f1990", + "MaybeId": "449f108c-dc6e-4d8d-a5e6-cfe2546f1990", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "ComplexFormHeadword": "cimaso-maso", + "ComponentEntryId": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "ComponentSenseId": null, + "ComponentHeadword": "diso" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aee9ca97-646b-439b-bba9-605b94e9919c", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbalame" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f2111a87-c2b3-4aba-85c5-6f988e989c56", + "Order": 1, + "DeletedAt": null, + "EntryId": "aee9ca97-646b-439b-bba9-605b94e9919c", + "Definition": {}, + "Gloss": { + "en": "small bird", + "pt": "passarinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a939fc75-bc5b-4915-b5b5-baf66791d9b4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f2111a87-c2b3-4aba-85c5-6f988e989c56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d23a7e2-3e64-4843-bc4e-260c8f272ccc", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbanjiri" + }, + "CitationForm": { + "seh": "cimbanjiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b608d3ff-420b-43b8-b839-a9ef23597f28", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d23a7e2-3e64-4843-bc4e-260c8f272ccc", + "Definition": {}, + "Gloss": { + "en": "grass", + "pt": "relva" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05256871-a155-46e0-b126-9dbfe58554c6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b608d3ff-420b-43b8-b839-a9ef23597f28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "083f3256-2345-4d2c-aea9-f6980dd66fee", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbiz" + }, + "CitationForm": { + "seh": "cimbiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35081858-7200-4c60-90b9-3ddc794dfef9", + "Order": 1, + "DeletedAt": null, + "EntryId": "083f3256-2345-4d2c-aea9-f6980dd66fee", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hurry, quick", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hurry", + "pt": "apressar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a793f71-1455-4be9-b63f-636a2a343815", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Wacimbiza na kulonga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Apressou na falar.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "35081858-7200-4c60-90b9-3ddc794dfef9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "466adc08-27b9-4fa7-bd77-94acda873468", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fbc75fe2-b0ef-44ee-8e33-fa7d177135d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "466adc08-27b9-4fa7-bd77-94acda873468", + "Definition": {}, + "Gloss": { + "en": "toilet", + "pt": "latrina" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bd53691a-560e-4acc-a9bc-dfdc1d8e9c57", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimbuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e98d8742-759c-40bd-a462-485372657540", + "Order": 1, + "DeletedAt": null, + "EntryId": "bd53691a-560e-4acc-a9bc-dfdc1d8e9c57", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "cabrito pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "kid goat", + "pt": "cabrito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6aee6b52-e2b9-49e7-82c5-cb83484a571f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya; Alicete", + "Ws": "en" + } + ] + }, + "SenseId": "e98d8742-759c-40bd-a462-485372657540", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fcf1714a-0916-4bdb-ae0f-85cb3a0553c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "medzo" + }, + "CitationForm": { + "seh": "cimedzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e0644624-a939-4c56-b130-eda7980c29e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "fcf1714a-0916-4bdb-ae0f-85cb3a0553c8", + "Definition": {}, + "Gloss": { + "en": "fishing hook ", + "pt": "anzol" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e363c8af-bc2c-40af-8949-52663a9aec4b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e0644624-a939-4c56-b130-eda7980c29e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18b3c7e0-b275-4078-ba68-192a2798e7e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "mera" + }, + "CitationForm": { + "seh": "cimera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4d4bafa5-6b53-4377-ad56-876de7ba1292", + "Order": 1, + "DeletedAt": null, + "EntryId": "18b3c7e0-b275-4078-ba68-192a2798e7e5", + "Definition": {}, + "Gloss": { + "en": "germination", + "pt": "germinac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ff1fa02-0733-46d1-b91d-ef98ff337979", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4d4bafa5-6b53-4377-ad56-876de7ba1292", + "DeletedAt": null + } + ] + }, + { + "Id": "0218bc31-f936-4d57-93e8-f87c15bf9f63", + "Order": 2, + "DeletedAt": null, + "EntryId": "18b3c7e0-b275-4078-ba68-192a2798e7e5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "yeast in powder form", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "yeast", + "pt": "fermento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a982178-6213-4db7-bb55-8833cd568551", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfunye" + }, + "CitationForm": { + "seh": "cimpfunye" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "667eb258-45b0-413e-b101-f9ccc7cbb64c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a982178-6213-4db7-bb55-8833cd568551", + "Definition": {}, + "Gloss": { + "en": "bugs", + "pt": "bichinhos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df9257de-f63e-4525-a9d7-4a924d7bf31c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "667eb258-45b0-413e-b101-f9ccc7cbb64c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a3313ea-9847-4d75-be41-d39205a6fa5c", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": { + "seh": "cimuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d16174f8-2b94-4c11-a10e-eb053d32ff07", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a3313ea-9847-4d75-be41-d39205a6fa5c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "manners proper to men", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "costumes de homens", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "men\u0027s ways", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "567efd7a-a5d0-4199-bc3a-2a7dda06c02d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "d16174f8-2b94-4c11-a10e-eb053d32ff07", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d892f47e-cac1-4e77-99fd-8a47e174f105", + "DeletedAt": null, + "LexemeForm": { + "seh": "muti" + }, + "CitationForm": { + "seh": "cimuti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0df2a01b-5501-4222-b5c4-3560033a535b", + "Order": 1, + "DeletedAt": null, + "EntryId": "d892f47e-cac1-4e77-99fd-8a47e174f105", + "Definition": {}, + "Gloss": { + "en": "shrub", + "pt": "arbusto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "13b8bf4c-d0c3-44c2-b0a3-f528efe4a918", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0df2a01b-5501-4222-b5c4-3560033a535b", + "DeletedAt": null + } + ] + }, + { + "Id": "b979cb5e-7abc-429e-acdf-27475037a08c", + "Order": 2, + "DeletedAt": null, + "EntryId": "d892f47e-cac1-4e77-99fd-8a47e174f105", + "Definition": {}, + "Gloss": { + "en": "small stick", + "pt": "pau pequeno" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "424ccd42-9505-489d-bd3a-78242055a519", + "DeletedAt": null, + "LexemeForm": { + "seh": "cimwan" + }, + "CitationForm": { + "seh": "cimwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef506d5f-36a9-4afd-8986-958e74274b79", + "Order": 1, + "DeletedAt": null, + "EntryId": "424ccd42-9505-489d-bd3a-78242055a519", + "Definition": {}, + "Gloss": { + "en": "not able", + "pt": "na\u0303o conseguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "acffb21f-c1fe-4b67-8a1e-e6aee10d15a0", + "DeletedAt": null, + "LexemeForm": { + "seh": "nai" + }, + "CitationForm": { + "seh": "cinai" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8af77e66-bc0e-4b3d-8860-5a7b8628de13", + "Order": 1, + "DeletedAt": null, + "EntryId": "acffb21f-c1fe-4b67-8a1e-e6aee10d15a0", + "Definition": {}, + "Gloss": { + "en": "Thursday", + "pt": "quinta-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e220a0ba-f4a6-4326-a904-28eab8d10f0f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "8af77e66-bc0e-4b3d-8860-5a7b8628de13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3040010a-bca2-493a-a572-cd3ea591933c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nanazi" + }, + "CitationForm": { + "seh": "cinanazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b70c2d47-0841-4045-afac-e3779f3f7bdc", + "Order": 1, + "DeletedAt": null, + "EntryId": "3040010a-bca2-493a-a572-cd3ea591933c", + "Definition": {}, + "Gloss": { + "en": "pinapple", + "pt": "anana\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f3c9c0e-ff00-481a-812e-d3345e89c876", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "b70c2d47-0841-4045-afac-e3779f3f7bdc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f7a72ce-d248-4e61-96fc-7d3d74332b52", + "DeletedAt": null, + "LexemeForm": { + "seh": "cincino" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "feeafad4-6f4a-4514-ac5f-3a3e784346ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f7a72ce-d248-4e61-96fc-7d3d74332b52", + "Definition": {}, + "Gloss": { + "en": "now", + "pt": "agora" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "27d49110-3c24-4ac8-98ce-506e97cf95e8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "feeafad4-6f4a-4514-ac5f-3a3e784346ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eec577ad-c643-4a82-80ed-1586c94fa694", + "DeletedAt": null, + "LexemeForm": { + "seh": "cing" + }, + "CitationForm": { + "seh": "cinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a7cbae04-07cd-4468-8e0e-001bc7040c54", + "Order": 1, + "DeletedAt": null, + "EntryId": "eec577ad-c643-4a82-80ed-1586c94fa694", + "Definition": {}, + "Gloss": { + "en": "cut hair", + "pt": "cortar cabelho" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "55a1cb26-c65d-404a-9f68-4f1f9457aa6e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a7cbae04-07cd-4468-8e0e-001bc7040c54", + "DeletedAt": null + } + ] + }, + { + "Id": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", + "Order": 2, + "DeletedAt": null, + "EntryId": "eec577ad-c643-4a82-80ed-1586c94fa694", + "Definition": {}, + "Gloss": { + "en": "shave", + "pt": "barbear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "18d1988a-089a-406c-8077-f4a85f2d7389", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndacinga ndebvu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "I cut (my) beard", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cortei barba", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5a2e45d1-c7a3-4e8b-8eeb-e350f14c6725", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4088a137-2d8c-4cce-8623-7fd3005077e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "cingidz" + }, + "CitationForm": { + "seh": "cingidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6634b06f-e8af-46a2-832b-e65f7e87387e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4088a137-2d8c-4cce-8623-7fd3005077e0", + "Definition": {}, + "Gloss": { + "en": "quick", + "pt": "apressar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ef780fb-01df-49b2-b05a-b46fa344eb0d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6634b06f-e8af-46a2-832b-e65f7e87387e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "470b4f46-3904-4953-b32f-4107affa7d0c", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngungundu" + }, + "CitationForm": { + "seh": "cingungundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b41d2ad6-a040-4971-8dba-b1173e7dbdd0", + "Order": 1, + "DeletedAt": null, + "EntryId": "470b4f46-3904-4953-b32f-4107affa7d0c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tree civet, eat honey, Nandinia binotata", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "civet", + "pt": "almiscareiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3da2adfb-88fc-41b1-abbe-7dcd291001ac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b41d2ad6-a040-4971-8dba-b1173e7dbdd0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da4f0ce0-515f-4716-b7e6-ea49d63acd0f", + "DeletedAt": null, + "LexemeForm": { + "seh": "cinj" + }, + "CitationForm": { + "seh": "cinja" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7c0458ed-29b5-49fb-85ca-1be940e30804", + "Order": 1, + "DeletedAt": null, + "EntryId": "da4f0ce0-515f-4716-b7e6-ea49d63acd0f", + "Definition": {}, + "Gloss": { + "en": "change", + "pt": "trocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62614d4b-623c-4dd5-ab8b-d5aa72db9e58", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7c0458ed-29b5-49fb-85ca-1be940e30804", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57874349-3d18-4f8e-be27-673f546ba236", + "DeletedAt": null, + "LexemeForm": { + "seh": "njira" + }, + "CitationForm": { + "seh": "cinjira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cb2a8121-7277-419a-a9ba-e8ae7b74f41b", + "Order": 1, + "DeletedAt": null, + "EntryId": "57874349-3d18-4f8e-be27-673f546ba236", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "caminho pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trail", + "pt": "caminho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4f6ad2a7-a20f-4b54-b926-cc6570f52688", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cb2a8121-7277-419a-a9ba-e8ae7b74f41b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthu" + }, + "CitationForm": { + "seh": "cinthu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41c948f2-73e7-4a07-b802-1b5434ddcf0b", + "Order": 1, + "DeletedAt": null, + "EntryId": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "Definition": {}, + "Gloss": { + "en": "thing", + "pt": "coisa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88281618-b909-49e4-b0cb-721df2b0256c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "41c948f2-73e7-4a07-b802-1b5434ddcf0b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "f481e391-7ddc-4248-bb9c-a7b6d29c1edf", + "MaybeId": "f481e391-7ddc-4248-bb9c-a7b6d29c1edf", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "ComponentSenseId": null, + "ComponentHeadword": "cinthu" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f73c315f-36a4-4616-81e7-00946a3ae969", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyindiro" + }, + "CitationForm": { + "seh": "cinyindiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "40678389-a031-4bb9-8947-2ecda2aab5d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f73c315f-36a4-4616-81e7-00946a3ae969", + "Definition": {}, + "Gloss": { + "en": "confidence", + "pt": "confianca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14c3084d-05aa-409a-8486-f3cfe619ba87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "40678389-a031-4bb9-8947-2ecda2aab5d9", + "DeletedAt": null + } + ] + }, + { + "Id": "328fa8c2-8166-4a83-ba6a-35d3eb29acf4", + "Order": 2, + "DeletedAt": null, + "EntryId": "f73c315f-36a4-4616-81e7-00946a3ae969", + "Definition": {}, + "Gloss": { + "en": "faith", + "pt": "fe\u0302" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4717480a-42fe-417d-94ce-7fcb18763467", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyungwe" + }, + "CitationForm": { + "seh": "cinyungwe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "62a80d7e-5461-43a3-92f4-1873889f3511", + "Order": 1, + "DeletedAt": null, + "EntryId": "4717480a-42fe-417d-94ce-7fcb18763467", + "Definition": { + "en": { + "Spans": [ + { + "Text": "language of Nyungwe from Tete", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "li\u0301ngua nyungwe de Tete", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "Nyungwe", + "pt": "nyungwe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a3c26a9-5a27-4bfa-a9b3-88dbaf565a08", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "62a80d7e-5461-43a3-92f4-1873889f3511", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e9023bed-285d-48db-bcd1-abdca443568a", + "DeletedAt": null, + "LexemeForm": { + "seh": "pezipezi" + }, + "CitationForm": { + "seh": "cipezipezi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6812074c-a5f1-4d7a-bc3b-1c6f7a9d6d77", + "Order": 1, + "DeletedAt": null, + "EntryId": "e9023bed-285d-48db-bcd1-abdca443568a", + "Definition": {}, + "Gloss": { + "en": "nude", + "pt": "nu\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c6037c5f-60d4-4a86-8a0b-f7d831f13aca", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "6812074c-a5f1-4d7a-bc3b-1c6f7a9d6d77", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "20d45e0b-5493-41c1-9b26-41e78ee6ccb7", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunziso" + }, + "CitationForm": { + "seh": "cipfunziso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86614d59-54a3-4a59-9ddb-edb9d6645555", + "Order": 1, + "DeletedAt": null, + "EntryId": "20d45e0b-5493-41c1-9b26-41e78ee6ccb7", + "Definition": {}, + "Gloss": { + "en": "lesson", + "pt": "lic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "e4bacc52-dcaa-4e68-b736-f0b5d9aeca41", + "Name": { + "en": "Class, lesson" + }, + "Code": "3.6.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "04cc0316-9a18-47e4-882f-dcf50cd78b4a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "86614d59-54a3-4a59-9ddb-edb9d6645555", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62ad34af-6ba5-40de-a66a-c7e05e09c6db", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunzo" + }, + "CitationForm": { + "seh": "cipfunzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4fb83982-c268-4643-a079-ef6595b52ddf", + "Order": 1, + "DeletedAt": null, + "EntryId": "62ad34af-6ba5-40de-a66a-c7e05e09c6db", + "Definition": {}, + "Gloss": { + "en": "teaching", + "pt": "ensino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6137239a-b469-46be-b7cb-b9ac22fcc195", + "Name": { + "en": "Teach" + }, + "Code": "3.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "cca05c0b-d0d2-4d62-a519-c97e655539a4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4fb83982-c268-4643-a079-ef6595b52ddf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a673a88c-e0a6-4458-ae81-2c0412297804", + "DeletedAt": null, + "LexemeForm": { + "seh": "phaniphani" + }, + "CitationForm": { + "seh": "ciphaniphani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f4b27c24-e157-489c-8058-03974376986a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a673a88c-e0a6-4458-ae81-2c0412297804", + "Definition": {}, + "Gloss": { + "en": "firefly", + "pt": "pirilampo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61d7ce1c-0288-4448-a92d-321ba4e57fe7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f4b27c24-e157-489c-8058-03974376986a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0f14a0fb-e3cb-4d30-ab8a-e16280dc09c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "phano" + }, + "CitationForm": { + "seh": "ciphano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e2d50560-29f2-45f5-b7f9-75ee665abd0d", + "Order": 1, + "DeletedAt": null, + "EntryId": "0f14a0fb-e3cb-4d30-ab8a-e16280dc09c8", + "Definition": {}, + "Gloss": { + "en": "instrument", + "pt": "instrumento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6553082-fc7c-4e26-b95d-2f77b7cfb62a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e2d50560-29f2-45f5-b7f9-75ee665abd0d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6c02ee0-47e2-442b-9891-138344c6fc00", + "DeletedAt": null, + "LexemeForm": { + "seh": "phoko" + }, + "CitationForm": { + "seh": "ciphoko" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8ab4bf03-6757-4e6f-af7a-13262f5fc23c", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6c02ee0-47e2-442b-9891-138344c6fc00", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "espirito duma pessoa morto visi\u0301vel.", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "ghost", + "pt": "fantasma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb37cb1c-a872-48dd-8437-ffb06876465d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nzimu wace wadza ciphoko.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "O seu espirito transformou-se em fantasma.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "8ab4bf03-6757-4e6f-af7a-13262f5fc23c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "63f35417-415a-4cd2-8a44-1cf21520f3cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": { + "seh": "cipiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3b545c5d-5faa-4483-bbb4-810d89b8921a", + "Order": 1, + "DeletedAt": null, + "EntryId": "63f35417-415a-4cd2-8a44-1cf21520f3cc", + "Definition": {}, + "Gloss": { + "en": "Tuesday", + "pt": "terc\u0327a-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f7758190-59f8-4a46-9b02-58f13336dcfe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "3b545c5d-5faa-4483-bbb4-810d89b8921a", + "DeletedAt": null + } + ] + }, + { + "Id": "2ef6704b-a7cd-4c84-b9df-b6d7a07a6246", + "Order": 2, + "DeletedAt": null, + "EntryId": "63f35417-415a-4cd2-8a44-1cf21520f3cc", + "Definition": {}, + "Gloss": { + "en": "second", + "pt": "segundo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86741386-5453-42ee-8edc-35c72d3f9cfb", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": { + "seh": "cipiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4f0765ac-5b8c-4689-bf46-2d740e9834b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "86741386-5453-42ee-8edc-35c72d3f9cfb", + "Definition": {}, + "Gloss": { + "en": "snake type", + "pt": "cobra tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d96b2aa6-8ae3-4425-8db6-499d3cb5451b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4f0765ac-5b8c-4689-bf46-2d740e9834b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a50cf75d-caed-4e34-aa5a-1c8f40a8e14d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cipo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8f7d60b4-f32f-4879-8578-765623fd3331", + "Order": 1, + "DeletedAt": null, + "EntryId": "a50cf75d-caed-4e34-aa5a-1c8f40a8e14d", + "Definition": {}, + "Gloss": { + "en": "never", + "pt": "nunca" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67a83f5d-975f-4037-9571-42b18314914e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8f7d60b4-f32f-4879-8578-765623fd3331", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e608cdf7-aebe-474f-aabb-62d13de84f07", + "DeletedAt": null, + "LexemeForm": { + "seh": "posi" + }, + "CitationForm": { + "seh": "ciposi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b2981643-8242-45df-8155-4f9a1b89b784", + "Order": 1, + "DeletedAt": null, + "EntryId": "e608cdf7-aebe-474f-aabb-62d13de84f07", + "Definition": {}, + "Gloss": { + "en": "monday", + "pt": "segunda-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "280b5baa-5684-4863-96a1-3454fa6cfbf2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "b2981643-8242-45df-8155-4f9a1b89b784", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b801113-65fa-4158-afce-5b6d4503afa2", + "DeletedAt": null, + "LexemeForm": { + "seh": "pwazo" + }, + "CitationForm": { + "seh": "cipwazo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be850366-c73f-40d7-b98f-3ec83fea6241", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b801113-65fa-4158-afce-5b6d4503afa2", + "Definition": {}, + "Gloss": { + "en": "ridicule", + "pt": "desprezo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6964ab1d-db07-46f2-bdd3-a2a69462b4e2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2 007", + "Ws": "en" + } + ] + }, + "SenseId": "be850366-c73f-40d7-b98f-3ec83fea6241", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c14d99e8-2370-4016-bf8e-eeaf196d3a33", + "DeletedAt": null, + "LexemeForm": { + "seh": "lengo" + }, + "CitationForm": { + "seh": "cirengo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8cbe762-c449-49b1-8de3-b71ad4861779", + "Order": 1, + "DeletedAt": null, + "EntryId": "c14d99e8-2370-4016-bf8e-eeaf196d3a33", + "Definition": {}, + "Gloss": { + "en": "miracle", + "pt": "milagre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1aca94c3-83e7-4417-b2c1-64572fe7c9bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "riro" + }, + "CitationForm": { + "seh": "ciriro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87d914a0-8762-4a1d-939c-d73fe5ddd9db", + "Order": 1, + "DeletedAt": null, + "EntryId": "1aca94c3-83e7-4417-b2c1-64572fe7c9bd", + "Definition": {}, + "Gloss": { + "en": "crying", + "pt": "choro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b99d458-196c-4618-8996-5e953e27aa93", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "87d914a0-8762-4a1d-939c-d73fe5ddd9db", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3db33890-d94a-450f-ac8b-ad19965a8f9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "rombo" + }, + "CitationForm": { + "seh": "cirombo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "866745ed-de98-43ba-8f7b-a1dd2945cd1b", + "Order": 1, + "DeletedAt": null, + "EntryId": "3db33890-d94a-450f-ac8b-ad19965a8f9d", + "Definition": {}, + "Gloss": { + "en": "garbage", + "pt": "lixo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c8cc3b5e-05e4-4760-9ad7-20097c80ef99", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "866745ed-de98-43ba-8f7b-a1dd2945cd1b", + "DeletedAt": null + } + ] + }, + { + "Id": "6cf5b513-a228-45d4-aefe-8e3c25a10b5f", + "Order": 2, + "DeletedAt": null, + "EntryId": "3db33890-d94a-450f-ac8b-ad19965a8f9d", + "Definition": {}, + "Gloss": { + "en": "wild beasts", + "pt": "animal brava" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9003767-c299-407d-9e1d-0a9fddb2f8ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "ronda" + }, + "CitationForm": { + "seh": "cironda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "15ad161e-ecf7-43b6-9e80-09d7e1cb662e", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9003767-c299-407d-9e1d-0a9fddb2f8ff", + "Definition": {}, + "Gloss": { + "en": "wound", + "pt": "ferida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aec8d3ab-49e8-4d54-ba1a-f5476ad5c06d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "15ad161e-ecf7-43b6-9e80-09d7e1cb662e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d148e7fc-3a9a-4ba8-b0c0-dfe6fcae660f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ropa" + }, + "CitationForm": { + "seh": "ciropa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be0fe661-be7d-47b9-b126-b4fae8a28ffc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d148e7fc-3a9a-4ba8-b0c0-dfe6fcae660f", + "Definition": {}, + "Gloss": { + "en": "blood", + "pt": "sangue" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2ce46338-518c-4d9a-8b9f-ec1154a99c3e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "be0fe661-be7d-47b9-b126-b4fae8a28ffc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e6fc38f3-dbe6-4393-a153-0319d56dd5af", + "DeletedAt": null, + "LexemeForm": { + "seh": "ruzwi" + }, + "CitationForm": { + "seh": "ciruzwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4c9a4100-6f5d-4474-aef6-d12e732a498c", + "Order": 1, + "DeletedAt": null, + "EntryId": "e6fc38f3-dbe6-4393-a153-0319d56dd5af", + "Definition": {}, + "Gloss": { + "en": "whistle", + "pt": "assobio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5bd1dd95-1dc9-4a6b-bf7a-56d833ddf4c2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "4c9a4100-6f5d-4474-aef6-d12e732a498c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61bf9fd9-f4e5-433a-a981-99d12abc636e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sa" + }, + "CitationForm": { + "seh": "cisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "93d839b1-7318-4f4f-8279-90e8fda687a3", + "Order": 1, + "DeletedAt": null, + "EntryId": "61bf9fd9-f4e5-433a-a981-99d12abc636e", + "Definition": {}, + "Gloss": { + "en": "village", + "pt": "aldeia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b536622c-80a3-4b31-9d22-4ed2fb76324d", + "Name": { + "en": "City" + }, + "Code": "4.6.7.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ae8778b0-69c7-4db4-9e12-b36d635f3c4f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "93d839b1-7318-4f4f-8279-90e8fda687a3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b595a54-e45a-402b-8c9d-cac6f5a02374", + "DeletedAt": null, + "LexemeForm": { + "seh": "sayi" + }, + "CitationForm": { + "seh": "cisayi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bbbd1861-ae82-410e-abba-cf73b0e1cb50", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b595a54-e45a-402b-8c9d-cac6f5a02374", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sauce for rice", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sauce", + "pt": "caril" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71ec295f-640e-45a3-8de9-a361819ef2df", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bbbd1861-ae82-410e-abba-cf73b0e1cb50", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bdf95f18-e330-4b53-9db5-593c0a3ed483", + "DeletedAt": null, + "LexemeForm": { + "seh": "sena" + }, + "CitationForm": { + "seh": "cisena" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f5ad0c5-d4b8-4b7d-9954-a3e3467f74a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "bdf95f18-e330-4b53-9db5-593c0a3ed483", + "Definition": {}, + "Gloss": { + "en": "Sena language", + "pt": "li\u0301ngua sena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "459d6aa1-453e-416f-8ae2-aa3a3ae3b266", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "0f5ad0c5-d4b8-4b7d-9954-a3e3467f74a7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5899c54d-65b5-4697-8a30-0709a1d903e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sero" + }, + "CitationForm": { + "seh": "cisero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "849c97b4-d0c2-4fa2-81c7-c2d734332f5e", + "Order": 1, + "DeletedAt": null, + "EntryId": "5899c54d-65b5-4697-8a30-0709a1d903e2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "winnowing basket", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sieve", + "pt": "peneira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2b191e84-3688-4d6a-95eb-7720a8429897", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "849c97b4-d0c2-4fa2-81c7-c2d734332f5e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aef81764-2aa7-4da9-b18f-440d003c925e", + "DeletedAt": null, + "LexemeForm": { + "seh": "cit" + }, + "CitationForm": { + "seh": "cita" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9bb88e99-c84d-49f4-8993-63c19e4891df", + "Order": 1, + "DeletedAt": null, + "EntryId": "aef81764-2aa7-4da9-b18f-440d003c925e", + "Definition": {}, + "Gloss": { + "en": "do", + "pt": "fazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "0adab179-a7f0-45a9-a1c3-1966d68bf45f", + "Order": 2, + "DeletedAt": null, + "EntryId": "aef81764-2aa7-4da9-b18f-440d003c925e", + "Definition": {}, + "Gloss": { + "en": "made" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "011185bb-e8c8-4ab9-80fb-2e19b670e3d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "tatu" + }, + "CitationForm": { + "seh": "citatu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50485a90-b701-4c13-8986-3b6a94d1e82f", + "Order": 1, + "DeletedAt": null, + "EntryId": "011185bb-e8c8-4ab9-80fb-2e19b670e3d0", + "Definition": {}, + "Gloss": { + "en": "Wednesday", + "pt": "quarta-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1be0207-8517-4ec0-add6-5508fca673fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "50485a90-b701-4c13-8986-3b6a94d1e82f", + "DeletedAt": null + } + ] + }, + { + "Id": "f5e72635-c18f-4558-bff8-af539d7f41c7", + "Order": 2, + "DeletedAt": null, + "EntryId": "011185bb-e8c8-4ab9-80fb-2e19b670e3d0", + "Definition": {}, + "Gloss": { + "en": "third", + "pt": "terceira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd130033-c4dd-4d2b-a355-68280a4f39fb", + "DeletedAt": null, + "LexemeForm": { + "seh": "teketeke" + }, + "CitationForm": { + "seh": "citeketeke" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a506da0-ad78-4381-9286-07190c61fafd", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd130033-c4dd-4d2b-a355-68280a4f39fb", + "Definition": {}, + "Gloss": { + "en": "earthquake", + "pt": "terramoto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3230fe69-1c65-4642-8718-5e183866a2e3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "2a506da0-ad78-4381-9286-07190c61fafd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b02f082-4693-4dca-b7db-b18a22160523", + "DeletedAt": null, + "LexemeForm": { + "seh": "citik" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "caef5950-61dc-4fab-9c45-89bb28aeb063", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b02f082-4693-4dca-b7db-b18a22160523", + "Definition": {}, + "Gloss": { + "en": "happen", + "pt": "aconteceu" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "102c9c28-bf6c-4c14-b43a-7affd6360bb7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tulo" + }, + "CitationForm": { + "seh": "citulo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "babf56f3-4d0a-48fb-8f26-4007551a15c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "102c9c28-bf6c-4c14-b43a-7affd6360bb7", + "Definition": {}, + "Gloss": { + "en": "sleep", + "pt": "sono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6adaa067-1679-4d09-8dd6-b8667bc2cbc7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "babf56f3-4d0a-48fb-8f26-4007551a15c9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7c3cb51-5473-4179-9df3-46809ece89b9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tundu" + }, + "CitationForm": { + "seh": "citundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aad8f67f-05af-46a3-bc2f-39ef6c8ee715", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7c3cb51-5473-4179-9df3-46809ece89b9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "basket made of bamboo for storing grain", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "basket", + "pt": "cesto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "76cecf4d-a158-43f5-8249-9e7ed6fc4c9d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "aad8f67f-05af-46a3-bc2f-39ef6c8ee715", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f197161-9bef-4e94-8598-6b5f9ab9fee3", + "DeletedAt": null, + "LexemeForm": { + "seh": "xanu" + }, + "CitationForm": { + "seh": "cixanu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc95b51f-2e22-46fc-b264-95b7e1a465ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f197161-9bef-4e94-8598-6b5f9ab9fee3", + "Definition": {}, + "Gloss": { + "en": "Friday", + "pt": "sexta-feira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5f331cb6-7403-4574-8fcd-a9720a8aa9ea", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "dc95b51f-2e22-46fc-b264-95b7e1a465ea", + "DeletedAt": null + } + ] + }, + { + "Id": "260a0ff6-b53a-436c-a839-56f99b873cc5", + "Order": 2, + "DeletedAt": null, + "EntryId": "4f197161-9bef-4e94-8598-6b5f9ab9fee3", + "Definition": {}, + "Gloss": { + "en": "fifth", + "pt": "quinto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0c52ca1-7a0c-4296-9c8d-042269e30580", + "DeletedAt": null, + "LexemeForm": { + "seh": "zindikiro" + }, + "CitationForm": { + "seh": "cizindikiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0a2ec452-a7c2-4cac-b65d-19e501818220", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0c52ca1-7a0c-4296-9c8d-042269e30580", + "Definition": { + "en": { + "Spans": [ + { + "Text": "road sign", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sign", + "pt": "sinal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "767aa167-af3d-4e11-a68b-ec31f9d2ef1a", + "Name": { + "en": "Sign, symbol" + }, + "Code": "3.5.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "61ae4c5b-f3b3-4a8b-9931-b485defa7a59", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0a2ec452-a7c2-4cac-b65d-19e501818220", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c3038a8-8e19-4477-a826-2530b48c1199", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungu" + }, + "CitationForm": { + "seh": "cizungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2642c7aa-5686-452c-b7c6-aff3f21700da", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c3038a8-8e19-4477-a826-2530b48c1199", + "Definition": { + "en": { + "Spans": [ + { + "Text": "portuguese language", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "li\u0301ngua portuguesa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "portuguese", + "pt": "portugue\u0302s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9a8a53d4-5f01-4381-a0fd-975702f495e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23", + "Ws": "en" + } + ] + }, + "SenseId": "2642c7aa-5686-452c-b7c6-aff3f21700da", + "DeletedAt": null + } + ] + }, + { + "Id": "6f50eb34-609e-49e1-b906-684bd2a6edd2", + "Order": 2, + "DeletedAt": null, + "EntryId": "3c3038a8-8e19-4477-a826-2530b48c1199", + "Definition": { + "en": { + "Spans": [ + { + "Text": "manners appropriate to whites", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "a costumes de brancos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "white\u0027s ways", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3fd0e8b6-3b53-4b7b-9ec3-66b08365f32d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ombo" + }, + "CitationForm": { + "seh": "combo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "256dc263-e16c-4140-90eb-5e8bba3369d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "3fd0e8b6-3b53-4b7b-9ec3-66b08365f32d", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "utensi\u0301lio para po\u0302r qualquer coisa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "container", + "pt": "contentor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bd6c7ee0-416e-44df-ba54-b40c4d15a324", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "256dc263-e16c-4140-90eb-5e8bba3369d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8098fc3c-2926-4e6f-aace-c46eaef9d4ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "onzi" + }, + "CitationForm": { + "seh": "conzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "068d955d-9dc7-486c-be44-152a2da1942a", + "Order": 1, + "DeletedAt": null, + "EntryId": "8098fc3c-2926-4e6f-aace-c46eaef9d4ae", + "Definition": { + "en": { + "Spans": [ + { + "Text": "storm with wind and perhaps rain", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "storm", + "pt": "tempestade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "93be7617-d4c5-42c5-b879-d6e73a8bd8e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "068d955d-9dc7-486c-be44-152a2da1942a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0927a2b-2cb0-43aa-9572-04413b8b99bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "coto" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65f4757d-0125-4a84-9314-04c0e444634e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0927a2b-2cb0-43aa-9572-04413b8b99bc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area between the three fireplace stones", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "in the fire", + "pt": "no fogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47126a5f-8af3-40d7-a4a3-a28acd267fff", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunguz" + }, + "CitationForm": { + "seh": "cunguza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6be12455-6e00-4e76-8274-39af8a79bd8d", + "Order": 1, + "DeletedAt": null, + "EntryId": "47126a5f-8af3-40d7-a4a3-a28acd267fff", + "Definition": {}, + "Gloss": { + "en": "marry", + "pt": "casar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed9a2327-676f-4d06-b5b5-d1f1aa257959", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6be12455-6e00-4e76-8274-39af8a79bd8d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13afab39-8130-4e6e-8a3f-2ebd8416408d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunguzw" + }, + "CitationForm": { + "seh": "cunguzwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d6d7cf0-87fb-4eac-a2dd-5413f04a549c", + "Order": 1, + "DeletedAt": null, + "EntryId": "13afab39-8130-4e6e-8a3f-2ebd8416408d", + "Definition": {}, + "Gloss": { + "en": "be married", + "pt": "ser casado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ff50acc3-f7c4-410f-a4a8-018ace084863", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d6d7cf0-87fb-4eac-a2dd-5413f04a549c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "14a990a5-5603-4e39-84a4-42f43c2760f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "da" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "0915e6db-3ca0-4c60-b167-df78a7bf7b93", + "Order": 1, + "DeletedAt": null, + "EntryId": "14a990a5-5603-4e39-84a4-42f43c2760f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "noneventline past and past for negative and dependent verbs", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "era", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PST2", + "pt": "PST2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b5c7bf00-dfc3-4b9c-8d99-396afcbc75ba", + "DeletedAt": null, + "LexemeForm": { + "seh": "da" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1742599a-f75b-4128-ad40-c5b6b48f0622", + "Order": 1, + "DeletedAt": null, + "EntryId": "b5c7bf00-dfc3-4b9c-8d99-396afcbc75ba", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Pluperfect, completed past", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "PLPRF", + "pt": "PLPRF" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9390f831-1b3b-4fd7-9718-0b4e2a824d3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "dado" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d0e2735c-ac38-4a03-a923-d706d5127e1c", + "Order": 1, + "DeletedAt": null, + "EntryId": "9390f831-1b3b-4fd7-9718-0b4e2a824d3c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cooking tool", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "instrumento com que se po\u0303e farinha na panela", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "utensil", + "pt": "utensi\u0301lio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1edade2e-f047-4266-a14d-90d40613b2ff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Alicete", + "Ws": "en" + } + ] + }, + "SenseId": "d0e2735c-ac38-4a03-a923-d706d5127e1c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0925ddab-f82a-46a2-81c4-d2f4af3d25ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "dafuntu" + }, + "CitationForm": { + "seh": "dafuntu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b4d055cf-e4e2-4d8f-b493-eccdb120b143", + "Order": 1, + "DeletedAt": null, + "EntryId": "0925ddab-f82a-46a2-81c4-d2f4af3d25ef", + "Definition": {}, + "Gloss": { + "en": "the dead one", + "pt": "o morto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1ba993b6-d531-4a38-a362-51df1c75589e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b4d055cf-e4e2-4d8f-b493-eccdb120b143", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "354cf62b-de70-49d2-811a-4ad1befdae04", + "DeletedAt": null, + "LexemeForm": { + "seh": "daw" + }, + "CitationForm": { + "seh": "dawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9efdf055-1117-41a7-a720-b7cd082d13b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "354cf62b-de70-49d2-811a-4ad1befdae04", + "Definition": {}, + "Gloss": { + "en": "sin", + "pt": "pecar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8329b937-7389-47f4-a6cb-7150a066e5b6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9efdf055-1117-41a7-a720-b7cd082d13b2", + "DeletedAt": null + } + ] + }, + { + "Id": "b4c13621-6170-4f5d-a97e-02fd015450a1", + "Order": 2, + "DeletedAt": null, + "EntryId": "354cf62b-de70-49d2-811a-4ad1befdae04", + "Definition": {}, + "Gloss": { + "en": "guilt", + "pt": "culpa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfcba2c3-dedc-4bae-b744-22522da4e66c", + "DeletedAt": null, + "LexemeForm": { + "seh": "daya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "001b2172-8005-4328-8673-d9118decfa35", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfcba2c3-dedc-4bae-b744-22522da4e66c", + "Definition": {}, + "Gloss": { + "en": "midwife", + "pt": "parteira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5611336f-b69d-487e-9a2b-eb6efe97dbe6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "001b2172-8005-4328-8673-d9118decfa35", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56d65e8a-08b1-42e1-aa9e-401c7a4aacf6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dembuk" + }, + "CitationForm": { + "seh": "dembuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "51c5d694-274b-4ce5-8a5a-650ca5057ded", + "Order": 1, + "DeletedAt": null, + "EntryId": "56d65e8a-08b1-42e1-aa9e-401c7a4aacf6", + "Definition": {}, + "Gloss": { + "en": "late", + "pt": "atrazar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6217ba14-73a9-4f0e-869a-e5b69362f99c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "51c5d694-274b-4ce5-8a5a-650ca5057ded", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1180ea03-2d0d-48a5-a936-041be9ac4005", + "DeletedAt": null, + "LexemeForm": { + "seh": "dhadho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b775015-98c2-4032-b74a-6e42fa1ab3d0", + "Order": 1, + "DeletedAt": null, + "EntryId": "1180ea03-2d0d-48a5-a936-041be9ac4005", + "Definition": {}, + "Gloss": { + "en": "lung", + "pt": "pulma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7a9d7481-f32f-434f-8526-2881c052f0f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1,18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5b775015-98c2-4032-b74a-6e42fa1ab3d0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e23208b-a88b-4e40-8ba0-601599c23971", + "DeletedAt": null, + "LexemeForm": { + "seh": "dhuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0c2ac9ac-c39c-49c9-8fe0-8bba863230d5", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e23208b-a88b-4e40-8ba0-601599c23971", + "Definition": {}, + "Gloss": { + "en": "close to", + "pt": "perto de" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5b5b1924-dbd0-4345-bdaf-249ae0791537", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0c2ac9ac-c39c-49c9-8fe0-8bba863230d5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0bf398d9-acd4-4a86-bb21-0ac368cdcd78", + "DeletedAt": null, + "LexemeForm": { + "seh": "di" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Enclitic", + "Senses": [ + { + "Id": "0da360ba-60c7-4ed4-a2de-fa27c149bfd6", + "Order": 1, + "DeletedAt": null, + "EntryId": "0bf398d9-acd4-4a86-bb21-0ac368cdcd78", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Evidential, \u0022truly\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Evidential, \u0022mesmo\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "EVID", + "pt": "EVID" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "253695ca-1749-4dd5-948c-c62f9d1e1624", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "wawangadi mwanadi wadididi", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "0da360ba-60c7-4ed4-a2de-fa27c149bfd6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86ff8b04-b3ac-4eb1-b87e-5312290e0249", + "DeletedAt": null, + "LexemeForm": { + "seh": "dikhir" + }, + "CitationForm": { + "seh": "dikhira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c266ea9d-0c6f-40f9-ae67-122f730c76fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "86ff8b04-b3ac-4eb1-b87e-5312290e0249", + "Definition": {}, + "Gloss": { + "en": "wait", + "pt": "esperar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45b5b57b-dae0-4a2d-9105-ab2d10ad1f11", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c266ea9d-0c6f-40f9-ae67-122f730c76fe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "68233fd3-f0d8-4bf5-8e6d-2c8e5f46fd39", + "DeletedAt": null, + "LexemeForm": { + "seh": "dimba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1723b409-22e0-450d-b2f0-6bdd33b70700", + "Order": 1, + "DeletedAt": null, + "EntryId": "68233fd3-f0d8-4bf5-8e6d-2c8e5f46fd39", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small vegetable garden", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "machamba pequena", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "garden", + "pt": "machamba" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "436692f4-8d1c-4726-b7c1-252929f8e743", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyezeze", + "Ws": "en" + } + ] + }, + "SenseId": "1723b409-22e0-450d-b2f0-6bdd33b70700", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0ae6ab9a-3381-48db-b165-fcde928550ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "dimingu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c36e0db-92bc-47d4-8008-430138d950eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "0ae6ab9a-3381-48db-b165-fcde928550ff", + "Definition": {}, + "Gloss": { + "en": "Sunday", + "pt": "domingo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a4e3c3eb-61b9-40c7-aed9-312cd7413141", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0c36e0db-92bc-47d4-8008-430138d950eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93ea15e2-25b8-4de4-bccf-b0a8d1d864ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "dimonyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c015b4a-ea22-4b7b-8440-20c0bb423b90", + "Order": 1, + "DeletedAt": null, + "EntryId": "93ea15e2-25b8-4de4-bccf-b0a8d1d864ed", + "Definition": {}, + "Gloss": { + "en": "demon", + "pt": "demonio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c10ae59e-a413-461a-a772-a6f3cdd859f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2c015b4a-ea22-4b7b-8440-20c0bb423b90", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b45b6ce3-daf1-4ff5-a107-a8a1963e1c9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ding" + }, + "CitationForm": { + "seh": "dinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9888c643-d030-47a9-ae26-23048c50606c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b45b6ce3-daf1-4ff5-a107-a8a1963e1c9d", + "Definition": {}, + "Gloss": { + "en": "observe", + "pt": "observar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56c24b2d-4bd4-439b-9fcf-6f10a66de172", + "DeletedAt": null, + "LexemeForm": { + "seh": "dingis" + }, + "CitationForm": { + "seh": "dingisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd4e70e7-f467-413f-84cd-56b25117171e", + "Order": 1, + "DeletedAt": null, + "EntryId": "56c24b2d-4bd4-439b-9fcf-6f10a66de172", + "Definition": {}, + "Gloss": { + "en": "verify", + "pt": "verificar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2ddc2027-aff8-46ef-9c59-2a55ba561b14", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "dd4e70e7-f467-413f-84cd-56b25117171e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab7f23ee-c059-4e1d-bd6d-f742d4556499", + "DeletedAt": null, + "LexemeForm": { + "seh": "dipa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1d23b8f-a05f-4b3e-a205-00622c51d630", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab7f23ee-c059-4e1d-bd6d-f742d4556499", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spear w/ flat iron head", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spear", + "pt": "lanc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a1ce19c4-d12c-46da-a718-6d03949b3db1", + "Name": { + "en": "Hunt" + }, + "Code": "6.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "51080be0-e8f0-41e9-bd91-1190a3ad9599", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c1d23b8f-a05f-4b3e-a205-00622c51d630", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "DeletedAt": null, + "LexemeForm": { + "seh": "so" + }, + "CitationForm": { + "seh": "diso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "091a6d4f-7854-4fde-8ece-f8375261b979", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "Definition": {}, + "Gloss": { + "en": "eye", + "pt": "olho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ed1ee23-e7fb-4960-a927-97c4ff96e848", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Zuze akali munthu wadidi kakamwe pamaso pa Mulungu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira (pl:madiso):19; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "091a6d4f-7854-4fde-8ece-f8375261b979", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "449f108c-dc6e-4d8d-a5e6-cfe2546f1990", + "MaybeId": "449f108c-dc6e-4d8d-a5e6-cfe2546f1990", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "bb24d954-9701-4f52-b807-0c395e9d4a17", + "ComplexFormHeadword": "cimaso-maso", + "ComponentEntryId": "0fadc7bf-eb1b-4e4f-b4bf-7315bcd94c19", + "ComponentSenseId": null, + "ComponentHeadword": "diso" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a0ed9637-9496-4dab-84f9-a669bc57867b", + "DeletedAt": null, + "LexemeForm": { + "seh": "djamuk" + }, + "CitationForm": { + "seh": "djamuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32b82aa0-753b-4ef7-a13a-45171eb0ad8a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a0ed9637-9496-4dab-84f9-a669bc57867b", + "Definition": {}, + "Gloss": { + "en": "sour", + "pt": "azedo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67c58150-0b69-4f2d-86b0-8402ac8fccc7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "32b82aa0-753b-4ef7-a13a-45171eb0ad8a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1b893f4e-b987-4d6b-bd35-bf232a84db71", + "DeletedAt": null, + "LexemeForm": { + "seh": "djanja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73f6e11c-62f5-48a3-bcc6-1a90c107b1a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "1b893f4e-b987-4d6b-bd35-bf232a84db71", + "Definition": {}, + "Gloss": { + "en": "hand full", + "pt": "medida de ma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "07c0968e-d5f5-46fd-93c1-5639d14821c0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndipase mazandja mawiri ampunga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Da-me duas maos de arroz.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "73f6e11c-62f5-48a3-bcc6-1a90c107b1a7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c9d9175-0f14-4082-8bf2-9c3a82e5cb7d", + "DeletedAt": null, + "LexemeForm": { + "seh": "djanja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b479bcc-15e8-4ee2-9ea4-f3e97ab9583f", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c9d9175-0f14-4082-8bf2-9c3a82e5cb7d", + "Definition": {}, + "Gloss": { + "en": "hand", + "pt": "ma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a2192488-8fdb-4bae-b59a-3f1b7b632ffb", + "DeletedAt": null, + "LexemeForm": { + "seh": "djenje" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0a1e1f25-1d28-46ff-b10f-61efeeff642a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a2192488-8fdb-4bae-b59a-3f1b7b632ffb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hole, pit", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cova, buraco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hole", + "pt": "cova" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ab33969-051f-4618-bb80-93c4071cca32", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0a1e1f25-1d28-46ff-b10f-61efeeff642a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33487c65-1a7d-4159-b194-f7b6a5f013a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "djiwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1dc81749-6059-4eef-a64c-abd0bc23375e", + "Order": 1, + "DeletedAt": null, + "EntryId": "33487c65-1a7d-4159-b194-f7b6a5f013a2", + "Definition": {}, + "Gloss": { + "en": "dove", + "pt": "rola" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2b4b7067-0731-4d35-8aa1-89e1c598b946", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18 (:28 spelled ndjiwa)", + "Ws": "en" + } + ] + }, + "SenseId": "1dc81749-6059-4eef-a64c-abd0bc23375e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5264f6d0-f6d2-4460-ae50-2f01f45d9832", + "DeletedAt": null, + "LexemeForm": { + "seh": "djodj" + }, + "CitationForm": { + "seh": "djodja" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "25b5e61d-26ec-40e9-83e6-ba02026295cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "5264f6d0-f6d2-4460-ae50-2f01f45d9832", + "Definition": { + "en": { + "Spans": [ + { + "Text": "drop through a hole", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "deixar cair num buraco", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "drop", + "pt": "deixar cair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "35ecb431-6920-43c5-a3b1-bf3720759475", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "25b5e61d-26ec-40e9-83e6-ba02026295cb", + "DeletedAt": null + } + ] + }, + { + "Id": "e21ee24d-94d2-43ea-85fb-2661273563da", + "Order": 2, + "DeletedAt": null, + "EntryId": "5264f6d0-f6d2-4460-ae50-2f01f45d9832", + "Definition": {}, + "Gloss": { + "en": "drip", + "pt": "pingar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bbb3eba8-974f-47ff-b9ba-da317fa49ce8", + "DeletedAt": null, + "LexemeForm": { + "seh": "dobe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7cb4163f-0b09-4fa0-81d3-0c30d6e368d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "bbb3eba8-974f-47ff-b9ba-da317fa49ce8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "mix for making bricks", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "massa de tijola", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "clay mud", + "pt": "massa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cc391a56-7f3d-4f04-a7f1-d4f9522b98aa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18 (sun burned brick - sic); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7cb4163f-0b09-4fa0-81d3-0c30d6e368d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a22d7d98-c4d4-4df9-99e9-7bec175d983d", + "DeletedAt": null, + "LexemeForm": { + "seh": "dodom" + }, + "CitationForm": { + "seh": "dodoma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d7526a3-26d2-4ebf-b427-2213caf65140", + "Order": 1, + "DeletedAt": null, + "EntryId": "a22d7d98-c4d4-4df9-99e9-7bec175d983d", + "Definition": {}, + "Gloss": { + "en": "deceive", + "pt": "enganar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b3b48b1-1b8b-48e1-9444-44be578af893", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndadodoma kukucemerani", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "chamei-o por engano", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8d7526a3-26d2-4ebf-b427-2213caf65140", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f27d9d06-90ad-4f00-a8bb-e1e7d0000b30", + "DeletedAt": null, + "LexemeForm": { + "seh": "dodomek" + }, + "CitationForm": { + "seh": "dodomeka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "79e34609-699f-468b-9a02-c4dab39803de", + "Order": 1, + "DeletedAt": null, + "EntryId": "f27d9d06-90ad-4f00-a8bb-e1e7d0000b30", + "Definition": {}, + "Gloss": { + "en": "make error", + "pt": "enganar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2a121f9-1179-47fa-819b-22502d8ecd91", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndadodoma kukucemerani", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "chamei-o por engano", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "79e34609-699f-468b-9a02-c4dab39803de", + "DeletedAt": null + } + ] + }, + { + "Id": "64759618-9e6e-4d42-9839-5f582d66d270", + "Order": 2, + "DeletedAt": null, + "EntryId": "f27d9d06-90ad-4f00-a8bb-e1e7d0000b30", + "Definition": {}, + "Gloss": { + "en": "cause scandel", + "pt": "escandalizar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c5b75b77-2e95-460a-a12e-a0fa667d7ada", + "DeletedAt": null, + "LexemeForm": { + "seh": "dok" + }, + "CitationForm": { + "seh": "doka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58513bc2-508b-4185-8e3e-3c993e671006", + "Order": 1, + "DeletedAt": null, + "EntryId": "c5b75b77-2e95-460a-a12e-a0fa667d7ada", + "Definition": {}, + "Gloss": { + "en": "sun set", + "pt": "por do sol" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "06cb2024-5f7b-467c-b32c-ef4c56030ac0", + "Name": { + "en": "Telling time" + }, + "Code": "8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb", + "Name": { + "en": "Sun" + }, + "Code": "1.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "594238e1-2abc-467f-bb25-369f76b2f7f6", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kudoka kwa dzuwa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "por do sol", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "58513bc2-508b-4185-8e3e-3c993e671006", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "94c125e6-87cc-4eeb-b8b2-515b54907c08", + "DeletedAt": null, + "LexemeForm": { + "seh": "dona" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1553bb4c-f571-4084-98ea-ddcf0632c9ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "94c125e6-87cc-4eeb-b8b2-515b54907c08", + "Definition": {}, + "Gloss": { + "en": "lady", + "pt": "senhora branca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3878373b-4274-46f8-9158-92e2749017a6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:20", + "Ws": "en" + } + ] + }, + "SenseId": "1553bb4c-f571-4084-98ea-ddcf0632c9ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5f929b5-379d-4cf8-b67a-ee9f02d59951", + "DeletedAt": null, + "LexemeForm": { + "seh": "dondowe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fff0965a-ef07-4bfb-826c-ddffd0f6ecb3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5f929b5-379d-4cf8-b67a-ee9f02d59951", + "Definition": { + "en": { + "Spans": [ + { + "Text": "congradulations given when someone overcomes great suffering", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "congratulations", + "pt": "para bens" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6f4d6d9a-15ea-4f98-a52e-870856b33463", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fff0965a-ef07-4bfb-826c-ddffd0f6ecb3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d1d3f09-ce9c-4f48-984a-1ac9de0748fe", + "DeletedAt": null, + "LexemeForm": { + "seh": "dongo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "946efc4c-dce4-49b1-a7ff-09ea2de426ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d1d3f09-ce9c-4f48-984a-1ac9de0748fe", + "Definition": {}, + "Gloss": { + "en": "clay", + "pt": "barro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "222cf546-5677-4b13-8c8f-e761b9104615", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "946efc4c-dce4-49b1-a7ff-09ea2de426ce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "660717d8-50c3-47cd-a03a-2279fd49ecf7", + "DeletedAt": null, + "LexemeForm": { + "seh": "dotha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "140ed3cc-46e0-46ff-8380-36d88fbb018c", + "Order": 1, + "DeletedAt": null, + "EntryId": "660717d8-50c3-47cd-a03a-2279fd49ecf7", + "Definition": {}, + "Gloss": { + "en": "ash", + "pt": "cinza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1bb2b102-115e-49bd-8b23-bb92a5998a70", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "140ed3cc-46e0-46ff-8380-36d88fbb018c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04a5d219-b71c-4c34-9445-4f8a923c67c4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dul" + }, + "CitationForm": { + "seh": "dula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bcc30797-cc4c-4e2e-990f-28425d5c87ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "04a5d219-b71c-4c34-9445-4f8a923c67c4", + "Definition": {}, + "Gloss": { + "en": "pull out", + "pt": "arrancar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7d2d88eb-8517-4d9c-ac5c-926df0da8056", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "bcc30797-cc4c-4e2e-990f-28425d5c87ce", + "DeletedAt": null + } + ] + }, + { + "Id": "12e66c70-299d-41eb-8d6a-44aacc3288d1", + "Order": 2, + "DeletedAt": null, + "EntryId": "04a5d219-b71c-4c34-9445-4f8a923c67c4", + "Definition": {}, + "Gloss": { + "en": "undress", + "pt": "despir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "772ce48a-ac9f-43bd-a1b9-54059106d2b6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dumbir" + }, + "CitationForm": { + "seh": "dumbira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f16867d4-c4f5-4aff-afe8-77532ee2969e", + "Order": 1, + "DeletedAt": null, + "EntryId": "772ce48a-ac9f-43bd-a1b9-54059106d2b6", + "Definition": {}, + "Gloss": { + "en": "swear", + "pt": "jurar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db86d189-90a5-4dc4-a5e8-05fe9d30b477", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f16867d4-c4f5-4aff-afe8-77532ee2969e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91c54ffc-559d-4a63-9af0-890f92c99f93", + "DeletedAt": null, + "LexemeForm": { + "seh": "dunguny" + }, + "CitationForm": { + "seh": "dungunya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f6f134c4-459f-4207-bdd3-857b909318d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "91c54ffc-559d-4a63-9af0-890f92c99f93", + "Definition": {}, + "Gloss": { + "en": "murmur against", + "pt": "murmurar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fd960907-b2b5-462b-bd01-17f38ce45042", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f6f134c4-459f-4207-bdd3-857b909318d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e474a43-482d-427f-90bf-6bfef3befef8", + "DeletedAt": null, + "LexemeForm": { + "seh": "durumuk" + }, + "CitationForm": { + "seh": "durumuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c367950c-490b-4237-aabf-acde1d506b3c", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e474a43-482d-427f-90bf-6bfef3befef8", + "Definition": {}, + "Gloss": { + "en": "wilt", + "pt": "murchar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0c32e88d-ce04-44fd-8dfa-cf5abb31bbe1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c367950c-490b-4237-aabf-acde1d506b3c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d6d0ad6-998b-4421-8706-a9902d9dbd96", + "DeletedAt": null, + "LexemeForm": { + "seh": "duwal" + }, + "CitationForm": { + "seh": "duwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ee86a66-6781-4a36-b47b-fa6ee731ff3f", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d6d0ad6-998b-4421-8706-a9902d9dbd96", + "Definition": {}, + "Gloss": { + "en": "forget", + "pt": "esquecer-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "240070d1-05e4-4dcc-ac77-8544ddf96e80", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7ee86a66-6781-4a36-b47b-fa6ee731ff3f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a376b38-7550-4437-8920-8da5a37c7ced", + "DeletedAt": null, + "LexemeForm": { + "seh": "dwal" + }, + "CitationForm": { + "seh": "dwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2ecf3be4-12b5-4622-8d44-15f8e81f60e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a376b38-7550-4437-8920-8da5a37c7ced", + "Definition": {}, + "Gloss": { + "en": "be sick", + "pt": "ser doente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "7c6cad26-79c3-403a-a3aa-59babdfcd46f", + "Name": { + "en": "Sick" + }, + "Code": "2.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "aca0d94b-fd06-48a7-939c-45c820e05e4d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "asadwala manungo onsene", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "doente corpo todo", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2ecf3be4-12b5-4622-8d44-15f8e81f60e6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db86c135-bc96-4db8-a082-6c887ff8d000", + "DeletedAt": null, + "LexemeForm": { + "seh": "dy" + }, + "CitationForm": { + "seh": "dya" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "956aeb5d-0baf-4009-b523-0147285efbd0", + "Order": 1, + "DeletedAt": null, + "EntryId": "db86c135-bc96-4db8-a082-6c887ff8d000", + "Definition": {}, + "Gloss": { + "en": "eat", + "pt": "comer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e2d5e095-596c-4214-83f8-619dac29c965", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "956aeb5d-0baf-4009-b523-0147285efbd0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "624d70f5-7407-4540-84b1-c0820e85cb9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "dyeker" + }, + "CitationForm": { + "seh": "dyekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f888120f-95ec-43b9-a70a-2018c3f7966c", + "Order": 1, + "DeletedAt": null, + "EntryId": "624d70f5-7407-4540-84b1-c0820e85cb9e", + "Definition": {}, + "Gloss": { + "en": "bribe", + "pt": "subornar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88153e65-7463-4c3e-ab6b-752efea6f676", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f888120f-95ec-43b9-a70a-2018c3f7966c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eeab1234-1174-41b4-aad3-f87121f3664f", + "DeletedAt": null, + "LexemeForm": { + "seh": "dyiw" + }, + "CitationForm": { + "seh": "dyiwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8010f318-454b-404d-aa7e-92b76ab1e274", + "Order": 1, + "DeletedAt": null, + "EntryId": "eeab1234-1174-41b4-aad3-f87121f3664f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "choke (plant)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "choke", + "pt": "sofocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4702762-ab2e-4b79-bd43-cc0631f30664", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mbeu isadyiwa na tsanga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "The seed is choked by weeds", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Semente e\u0301 sofocado pelo campim.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "8010f318-454b-404d-aa7e-92b76ab1e274", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "241ca9b4-9077-4050-b8c9-6e1759a989d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "dza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "0156d415-bb52-4d42-8457-ddd27562d830", + "Order": 1, + "DeletedAt": null, + "EntryId": "241ca9b4-9077-4050-b8c9-6e1759a989d3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "culmination", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "CUL", + "pt": "CUL" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "DeletedAt": null, + "LexemeForm": { + "seh": "dza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "7aeea56a-5e2a-49b3-a7be-6841608f8364", + "Order": 1, + "DeletedAt": null, + "EntryId": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in order to, distal/purpose infinitive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "para", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c6af0fa0-431c-4b33-a1d9-39b590222ee2", + "Order": 2, + "DeletedAt": null, + "EntryId": "abf2aea2-2eb0-4e73-82df-d2102c1e974b", + "Definition": {}, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "DeletedAt": null, + "LexemeForm": { + "seh": "dz" + }, + "CitationForm": { + "seh": "dza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "089f49ef-98ab-4903-8e66-1872c4fa94e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "Definition": {}, + "Gloss": { + "en": "come", + "pt": "vir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bfddcb41-e689-40d7-a66d-8b314a33c546", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "adza kationa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "veio visitar-nos", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "089f49ef-98ab-4903-8e66-1872c4fa94e6", + "DeletedAt": null + } + ] + }, + { + "Id": "3033d933-d549-4f5e-b519-644f16d2bd2b", + "Order": 2, + "DeletedAt": null, + "EntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "Definition": {}, + "Gloss": { + "en": "come and fetch", + "pt": "vir buscar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "fa0fcded-b553-49fd-a555-13aa2afb66f7", + "MaybeId": "fa0fcded-b553-49fd-a555-13aa2afb66f7", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a4833ca4-bcc3-44db-a525-c88993150c07", + "ComplexFormHeadword": "kudza", + "ComponentEntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "ComponentSenseId": null, + "ComponentHeadword": "dza" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2cb6087a-4ffb-4544-9381-b49733d3bd64", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzadzamir" + }, + "CitationForm": { + "seh": "dzadzamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "90f0534c-8f34-4d2d-b5e7-3212a3cd309e", + "Order": 1, + "DeletedAt": null, + "EntryId": "2cb6087a-4ffb-4544-9381-b49733d3bd64", + "Definition": {}, + "Gloss": { + "en": "shake", + "pt": "tremer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96133d0a-8e03-4208-849e-0cce8bb233ee", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Atoma kudzadzamira na kugopa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ele comenc\u0327ou tremer com medo", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "90f0534c-8f34-4d2d-b5e7-3212a3cd309e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "146dfb17-70dc-402b-ad29-2158d84f25b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a460530d-d2c1-49a7-bf74-7a217a0ce135", + "Order": 1, + "DeletedAt": null, + "EntryId": "146dfb17-70dc-402b-ad29-2158d84f25b2", + "Definition": {}, + "Gloss": { + "en": "egg", + "pt": "ovo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e278ef39-8dbe-494d-aca4-6f55198fa443", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "a460530d-d2c1-49a7-bf74-7a217a0ce135", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "26ec5c17-8c7d-4b94-a6e4-d99f382a690f", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzana" + }, + "CitationForm": { + "seh": "dzana" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "738f6d6e-7089-4821-a542-84ab425ace05", + "Order": 1, + "DeletedAt": null, + "EntryId": "26ec5c17-8c7d-4b94-a6e4-d99f382a690f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "day before yesterday", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "two days ago", + "pt": "anteontem" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88051f2d-5215-4d7e-92ee-e18dcf4468dd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "738f6d6e-7089-4821-a542-84ab425ace05", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec6e873e-4da0-4aaf-b53d-8d6348c7efd4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1244b021-418c-418b-aa39-b6e6e195b845", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec6e873e-4da0-4aaf-b53d-8d6348c7efd4", + "Definition": {}, + "Gloss": { + "en": "a hundred", + "pt": "cem" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b07833a1-f762-4176-aed0-b8c6f35eb319", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9997f6d6-3ed5-4c52-b575-0bb3bfb52a4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b07833a1-f762-4176-aed0-b8c6f35eb319", + "Definition": { + "en": { + "Spans": [ + { + "Text": "amulet used to protect against spirit-caused sickness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "amulet", + "pt": "amuleto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0fe6d726-5e5a-463d-af2a-021b5f073f77", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9997f6d6-3ed5-4c52-b575-0bb3bfb52a4c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91156194-6a09-48dd-96e9-7cd94f117779", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzati" + }, + "CitationForm": { + "seh": "dzati" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "979edecf-f56b-4062-8743-60c9c5c6b7df", + "Order": 1, + "DeletedAt": null, + "EntryId": "91156194-6a09-48dd-96e9-7cd94f117779", + "Definition": {}, + "Gloss": { + "en": "not yet", + "pt": "ainda na\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "56ef5acc-e20e-421e-a510-33ed5c2cf619", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mbidzati ndidzati", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo 026", + "Ws": "en" + } + ] + }, + "SenseId": "979edecf-f56b-4062-8743-60c9c5c6b7df", + "DeletedAt": null + }, + { + "Id": "c0b1f9d6-cfba-47b6-9428-d41c6ecab4d3", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "sidzati kudya", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ainda na\u0303o comi", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "979edecf-f56b-4062-8743-60c9c5c6b7df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a5b06f38-b2c8-4139-84dc-a598aca20ce0", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzaz" + }, + "CitationForm": { + "seh": "dzaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5e158006-75c7-40e0-8a9f-79ea9d6a1d24", + "Order": 1, + "DeletedAt": null, + "EntryId": "a5b06f38-b2c8-4139-84dc-a598aca20ce0", + "Definition": {}, + "Gloss": { + "en": "fill", + "pt": "encher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6a441a87-36e6-4148-9aa2-86f41eada408", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5e158006-75c7-40e0-8a9f-79ea9d6a1d24", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ac479435-9369-4d2c-a585-9a3181ffccc9", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzedze" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b07605b1-1c48-4476-bf7f-f6a7b8064666", + "Order": 1, + "DeletedAt": null, + "EntryId": "ac479435-9369-4d2c-a585-9a3181ffccc9", + "Definition": {}, + "Gloss": { + "en": "bad luck", + "pt": "azar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f71a64f2-7a48-4cb8-b181-94022c7adf00", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b07605b1-1c48-4476-bf7f-f6a7b8064666", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42355445-fa54-4429-abc3-cc83fbcb6849", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzemwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "327fb629-2035-4497-a693-46b3c42b983c", + "Order": 1, + "DeletedAt": null, + "EntryId": "42355445-fa54-4429-abc3-cc83fbcb6849", + "Definition": {}, + "Gloss": { + "en": "crazy", + "pt": "maluco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "901d4597-5f16-4a7f-b0d2-3f35eaa2d23b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "327fb629-2035-4497-a693-46b3c42b983c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72769399-e4e9-4de2-bb3b-d3489f61bf5e", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzeser" + }, + "CitationForm": { + "seh": "dzesera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ddf2fda7-6c8c-41fa-ac13-a9d1a0fecf8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "72769399-e4e9-4de2-bb3b-d3489f61bf5e", + "Definition": {}, + "Gloss": { + "en": "bring", + "pt": "trazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "24b0494f-c257-4763-a159-0d9ac42914b9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ddf2fda7-6c8c-41fa-ac13-a9d1a0fecf8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65380366-10ea-439d-aa6e-559e3725ff13", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "ff2f7a8a-d457-4a7d-addc-e995b937968c", + "Order": 1, + "DeletedAt": null, + "EntryId": "65380366-10ea-439d-aa6e-559e3725ff13", + "Definition": {}, + "Gloss": { + "en": "5", + "pt": "5" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e38753b4-0226-45a7-bfbe-2f0a04714c41", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "967c962b-d951-4995-a53d-dcaeacd7cb35", + "Order": 1, + "DeletedAt": null, + "EntryId": "e38753b4-0226-45a7-bfbe-2f0a04714c41", + "Definition": { + "en": { + "Spans": [ + { + "Text": "respect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "respeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "5", + "pt": "5" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23786766-4ad5-44a1-bcf1-ff3b1b7ddb67", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "madzimai", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "women (vocative, respectiful)", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "senhoras", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "967c962b-d951-4995-a53d-dcaeacd7cb35", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ce34e57-36f0-4c4d-9c09-e3ddc01d5718", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzidzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "69f12f41-0c1d-417d-bd0c-2c6b6781d988", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ce34e57-36f0-4c4d-9c09-e3ddc01d5718", + "Definition": {}, + "Gloss": { + "en": "owl", + "pt": "mocho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "60ffa686-00da-427c-b3b9-eca66aeab5b8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Alves; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "69f12f41-0c1d-417d-bd0c-2c6b6781d988", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "92176fe5-7601-4aca-8d96-e324363b6d0e", + "DeletedAt": null, + "LexemeForm": { + "seh": "dziko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d2e5fd4-e831-4be7-8486-e2189b72a192", + "Order": 1, + "DeletedAt": null, + "EntryId": "92176fe5-7601-4aca-8d96-e324363b6d0e", + "Definition": {}, + "Gloss": { + "en": "country", + "pt": "pai\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5f681c62-cbfa-4505-94d3-e9094663dd42", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d2e5fd4-e831-4be7-8486-e2189b72a192", + "DeletedAt": null + } + ] + }, + { + "Id": "56e8f620-7f27-4342-93eb-2352a0896146", + "Order": 2, + "DeletedAt": null, + "EntryId": "92176fe5-7601-4aca-8d96-e324363b6d0e", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "terra, mundo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "world", + "pt": "terra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b47d2604-8b23-41e9-9158-01526dd83894", + "Name": { + "en": "World" + }, + "Code": "1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cce98603-ff8f-4213-945a-bd6746716139", + "Name": { + "en": "Land" + }, + "Code": "1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea9a3428-6f35-4e85-bc2e-f5e98f0df80a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzimba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "097bc15b-ca93-49ab-bb54-7ddc742be942", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea9a3428-6f35-4e85-bc2e-f5e98f0df80a", + "Definition": {}, + "Gloss": { + "en": "den", + "pt": "covil" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "364ba056-38e3-4ce5-b01f-c41df6d2008f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "097bc15b-ca93-49ab-bb54-7ddc742be942", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e189bc2f-eaea-43fc-bcb5-5ca7b272eee4", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzimola" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5f043f8f-1df7-4c70-9139-ff69c4333bfd", + "Order": 1, + "DeletedAt": null, + "EntryId": "e189bc2f-eaea-43fc-bcb5-5ca7b272eee4", + "Definition": {}, + "Gloss": { + "en": "blind person", + "pt": "cego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05a445f8-d1eb-435c-83f5-138cf7313725", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5f043f8f-1df7-4c70-9139-ff69c4333bfd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fdbfc9e5-c0c7-474c-8491-5a3e00c75cf6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzina" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72b9fc9f-db83-4f38-a154-91aa1f6457fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "fdbfc9e5-c0c7-474c-8491-5a3e00c75cf6", + "Definition": {}, + "Gloss": { + "en": "name", + "pt": "nome" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45dae496-6f7a-4fb7-a094-65bb07a618ce", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "72b9fc9f-db83-4f38-a154-91aa1f6457fb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbaddf9b-dac2-47d9-ae75-2832049c302a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzindikir" + }, + "CitationForm": { + "seh": "dzindikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9cc5b875-1529-4343-8422-15e88e1e9ff9", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbaddf9b-dac2-47d9-ae75-2832049c302a", + "Definition": {}, + "Gloss": { + "en": "recognize", + "pt": "reconhecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "428f3524-a660-4a75-b6a3-7ac64aa8fae1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9cc5b875-1529-4343-8422-15e88e1e9ff9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33147636-999f-4a2d-8e8c-b9b270a0fbf6", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzingul" + }, + "CitationForm": { + "seh": "dzingula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "212df5f7-c4a1-4be9-8c7d-26730391610c", + "Order": 1, + "DeletedAt": null, + "EntryId": "33147636-999f-4a2d-8e8c-b9b270a0fbf6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cut meat to make jerky", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cut meat", + "pt": "cortar carne" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dfb285fe-e0fd-4463-b6d5-34f2469007d8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "212df5f7-c4a1-4be9-8c7d-26730391610c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a14afc02-3a14-4667-992d-bdb5f59fc410", + "DeletedAt": null, + "LexemeForm": { + "seh": "no" + }, + "CitationForm": { + "seh": "dzino" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9903681c-20e6-4e41-b0fa-99c86c518943", + "Order": 1, + "DeletedAt": null, + "EntryId": "a14afc02-3a14-4667-992d-bdb5f59fc410", + "Definition": {}, + "Gloss": { + "en": "tooth", + "pt": "dente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f65de4c1-e802-4782-b636-29cd6af6d2a0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "9903681c-20e6-4e41-b0fa-99c86c518943", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzinza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "120863e9-9271-4d90-9f47-f1df0101b949", + "Order": 1, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "ethnic group", + "pt": "tribo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6cbdaf94-8e2c-4b26-936a-d2f86d158250", + "Name": { + "en": "Race" + }, + "Code": "4.1.9.9", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3d7c9ec6-baa5-4eb4-afba-98064e8ac41a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Moreira:29; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "120863e9-9271-4d90-9f47-f1df0101b949", + "DeletedAt": null + } + ] + }, + { + "Id": "eb416cb0-0626-4fd7-81fe-299fd955e507", + "Order": 2, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "family", + "pt": "fami\u0301lia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a781d57d-174d-47a6-b6a1-ae635a13df84", + "Name": { + "en": "Family, clan" + }, + "Code": "4.1.9.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "35d20aad-653a-4dee-9af3-9bc37f3221b0", + "Order": 3, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "sub clan", + "pt": "sub cla\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a0477f9f-4622-4ed6-8a4d-8a9672856428", + "Order": 4, + "DeletedAt": null, + "EntryId": "01da94bf-1588-4d8b-a0aa-c797373fa378", + "Definition": {}, + "Gloss": { + "en": "descendance", + "pt": "descendencia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "529140d1-6e8e-44fe-99f0-95289e933607", + "Name": { + "en": "Related by birth" + }, + "Code": "4.1.9.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7c769029-18c6-4d44-b8fb-d858b427551b", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzip" + }, + "CitationForm": { + "seh": "dzipa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd58d55c-4ca6-4726-a9c2-10f45bc21515", + "Order": 1, + "DeletedAt": null, + "EntryId": "7c769029-18c6-4d44-b8fb-d858b427551b", + "Definition": {}, + "Gloss": { + "en": "taste good", + "pt": "ter gosto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4ac950c-1363-4bca-a218-ede32a2d4a33", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sadzipa maningi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Tem muito bom sabor.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "dd58d55c-4ca6-4726-a9c2-10f45bc21515", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e833e9b-d413-46ce-9ad7-88bd66a309fc", + "DeletedAt": null, + "LexemeForm": { + "seh": "dziw" + }, + "CitationForm": { + "seh": "dziwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f820e3a7-256d-4bd4-bfb2-fb7fb4dd7dd6", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e833e9b-d413-46ce-9ad7-88bd66a309fc", + "Definition": {}, + "Gloss": { + "en": "know", + "pt": "saber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "19edf4c3-722d-44ee-8e98-a4630a261ec7", + "DeletedAt": null, + "LexemeForm": { + "seh": "dziwis" + }, + "CitationForm": { + "seh": "dziwisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbce6a29-7a85-4714-9c10-ef640500c220", + "Order": 1, + "DeletedAt": null, + "EntryId": "19edf4c3-722d-44ee-8e98-a4630a261ec7", + "Definition": {}, + "Gloss": { + "en": "inform", + "pt": "informar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d13395aa-e40d-4027-906c-94e5a4159da2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cbce6a29-7a85-4714-9c10-ef640500c220", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f242ee99-11cf-41bc-9bba-76d849911c06", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzizimuk" + }, + "CitationForm": { + "seh": "dzizimuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b8d3c6f-10ec-4b79-a267-e7fb490d27b3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f242ee99-11cf-41bc-9bba-76d849911c06", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake from a dream", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "acordar de sonho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2720cac0-de07-4cad-8057-4817af85c46a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6b8d3c6f-10ec-4b79-a267-e7fb490d27b3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9021fb3-cd41-49da-82f7-843521d46b26", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzololo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1476f06f-5d14-4d5e-b6e8-ab23e0ce6218", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9021fb3-cd41-49da-82f7-843521d46b26", + "Definition": {}, + "Gloss": { + "en": "standing firm", + "pt": "firme" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a5053715-81a4-415e-a1d4-456b795d8c4d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1476f06f-5d14-4d5e-b6e8-ab23e0ce6218", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d5776d9-c5ae-487e-863a-660767d12d77", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzongololo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "661ca6fd-1e8b-412c-977f-8ce7bda3c73a", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d5776d9-c5ae-487e-863a-660767d12d77", + "Definition": {}, + "Gloss": { + "en": "millipede", + "pt": "mil pe\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "24cb9193-8011-428f-a305-d7dc4423200d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "661ca6fd-1e8b-412c-977f-8ce7bda3c73a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc970e94-fc80-4f40-b91f-ebe000aa0623", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzongwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "264e5106-44f9-4d15-b5b2-f0a4acc2237e", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc970e94-fc80-4f40-b91f-ebe000aa0623", + "Definition": {}, + "Gloss": { + "en": "rooster", + "pt": "galo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4a221232-3c46-4b11-9d6d-859ffac13de6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Alves; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "264e5106-44f9-4d15-b5b2-f0a4acc2237e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "285344b4-370c-479f-b6ae-3298d502832a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzonkhon" + }, + "CitationForm": { + "seh": "dzonkhona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "961b8f0e-88f5-43a7-8ef6-0273413b6ade", + "Order": 1, + "DeletedAt": null, + "EntryId": "285344b4-370c-479f-b6ae-3298d502832a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "eat by bird", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "comer por passaro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "eat", + "pt": "comer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2933b787-db50-4b1b-bf0b-68d1c681ca82", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "961b8f0e-88f5-43a7-8ef6-0273413b6ade", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31dbf4c0-8958-4826-ada6-30913d18adf3", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzoya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d633d91a-a2d9-4d0b-bd63-76cfcab618df", + "Order": 1, + "DeletedAt": null, + "EntryId": "31dbf4c0-8958-4826-ada6-30913d18adf3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "body hair (human)", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pe\u0302lor, cabelo do corpo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hair", + "pt": "cabelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b20db01-fdb6-4fae-8741-af3e2de1c316", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d633d91a-a2d9-4d0b-bd63-76cfcab618df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9468fe42-4ed1-45da-8709-42e4f964da03", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzudzumik" + }, + "CitationForm": { + "seh": "dzudzumika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04fd1383-f9ff-4bfc-8056-272d49529a21", + "Order": 1, + "DeletedAt": null, + "EntryId": "9468fe42-4ed1-45da-8709-42e4f964da03", + "Definition": {}, + "Gloss": { + "en": "worried", + "pt": "preoccupado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e80d557-96e6-4be8-bb77-b012e9b57605", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff02a48b-3cdb-45a0-8c0a-b16bb506aa9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e80d557-96e6-4be8-bb77-b012e9b57605", + "Definition": {}, + "Gloss": { + "en": "yesterday", + "pt": "ontem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "081ed5fa-2a2f-4790-80d5-0cb68590fa5e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "ff02a48b-3cdb-45a0-8c0a-b16bb506aa9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6221b166-e164-42f5-841d-a1e34cd08f5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzumatirw" + }, + "CitationForm": { + "seh": "dzumatirwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8b829fb0-227b-4ef9-8451-b04e7b3de29e", + "Order": 1, + "DeletedAt": null, + "EntryId": "6221b166-e164-42f5-841d-a1e34cd08f5d", + "Definition": {}, + "Gloss": { + "en": "be surprized", + "pt": "admirar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "06809308-89c5-4224-aa60-16a054de198e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8b829fb0-227b-4ef9-8451-b04e7b3de29e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec612c4b-883b-441e-98c5-17e211707dc9", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzungu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5407cf61-e396-4fbe-bb1c-78bd5926d237", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec612c4b-883b-441e-98c5-17e211707dc9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "chaff of mapira", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "poeira de mapira", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "chaff", + "pt": "poeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e814a3aa-b93e-4269-81dd-5f66f1c00555", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5407cf61-e396-4fbe-bb1c-78bd5926d237", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ccb3a59f-d180-4371-b14a-3585e6ab672c", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzuwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f3ca3e78-5b47-46f0-8964-7c7308675fbb", + "Order": 1, + "DeletedAt": null, + "EntryId": "ccb3a59f-d180-4371-b14a-3585e6ab672c", + "Definition": {}, + "Gloss": { + "en": "sun", + "pt": "sol" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "420985b5-81d9-419d-be94-1c18fbfbb3fa", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khundu ya kumabulukira dzuwa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "lado de sair o sol (fig. este)", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,19 ;wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "f3ca3e78-5b47-46f0-8964-7c7308675fbb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4febd7ab-81f9-42a3-bcad-96809e046588", + "DeletedAt": null, + "LexemeForm": { + "seh": "e" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "0c26a49a-907c-4889-81c6-fc317afaca7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4febd7ab-81f9-42a3-bcad-96809e046588", + "Definition": { + "en": { + "Spans": [ + { + "Text": "subjunctive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "subjunctivo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "SBJV", + "pt": "SBJV" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c9049df2-fc01-4c22-a878-2c2d55fda732", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "aisakire, asake rabbit seek, ifikire meat arrive, ifunge lion close eye ikwanise lion should succeed, mundiwangise you could heal me", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "0c26a49a-907c-4889-81c6-fc317afaca7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "360dd981-7f18-405f-b5ab-c875aca9c5cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "edz" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "3c26e6d5-0706-43bb-a893-b02e8cab4977", + "Order": 1, + "DeletedAt": null, + "EntryId": "360dd981-7f18-405f-b5ab-c875aca9c5cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "agentive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "agentiva", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "AGN", + "pt": "AGN" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e142ae59-c23c-416b-bfa3-cb7304cd4725", + "DeletedAt": null, + "LexemeForm": { + "seh": "ek" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "4ab7f4b4-6ac8-4409-8ce4-ad1684644bc3", + "Order": 1, + "DeletedAt": null, + "EntryId": "e142ae59-c23c-416b-bfa3-cb7304cd4725", + "Definition": { + "en": { + "Spans": [ + { + "Text": "neuter-passive, like passive but without an agent", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "neutro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NEU", + "pt": "NEU" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2c8ca542-189b-4ae0-9de6-ee65c6efda13", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ikhalike \u0022he.9 should be staying\u0022", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "4ab7f4b4-6ac8-4409-8ce4-ad1684644bc3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "26b5d509-0add-4434-a012-e208612d1fc7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ekh" + }, + "CitationForm": { + "seh": "ekha" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "03e96b83-c7c5-49ce-85eb-9334869c954c", + "Order": 1, + "DeletedAt": null, + "EntryId": "26b5d509-0add-4434-a012-e208612d1fc7", + "Definition": {}, + "Gloss": { + "en": "alone", + "pt": "sozinho" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "42c2ab2e-c9f7-4bdf-8940-76744ec44a2f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iyo aenda okha.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "They went alone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Eles foram sozinhos", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "03e96b83-c7c5-49ce-85eb-9334869c954c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "DeletedAt": null, + "LexemeForm": { + "seh": "end" + }, + "CitationForm": { + "seh": "enda" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6f4a4cae-b335-4cf3-80e7-efad20ea0688", + "Order": 1, + "DeletedAt": null, + "EntryId": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "Definition": {}, + "Gloss": { + "en": "go", + "pt": "ir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "85755fa5-a4ef-431c-a281-dcdcc7e992b1", + "MaybeId": "85755fa5-a4ef-431c-a281-dcdcc7e992b1", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "ComponentSenseId": null, + "ComponentHeadword": "enda" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a1fa379-11d4-4ce6-a09e-fe4c16621ba7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c9759c21-69d4-49f2-abf1-1b5189a166c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a1fa379-11d4-4ce6-a09e-fe4c16621ba7", + "Definition": {}, + "Gloss": { + "en": "very", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "185ac884-3aaf-4db0-b436-46a2c6446595", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cinthu cene cadidi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "coisa mesmo boa", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:41", + "Ws": "en" + } + ] + }, + "SenseId": "c9759c21-69d4-49f2-abf1-1b5189a166c9", + "DeletedAt": null + }, + { + "Id": "36ccf87b-0cfd-42e2-bcd9-75b00aabbc9c", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "munthu ene", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "pessoa mesmo (boa)", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c9759c21-69d4-49f2-abf1-1b5189a166c9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1e60f3f-3606-4ac9-b05b-33a79d0d1478", + "DeletedAt": null, + "LexemeForm": { + "seh": "ene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Enclitic", + "Senses": [ + { + "Id": "14ff3655-598a-4ce5-8186-805c65398553", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1e60f3f-3606-4ac9-b05b-33a79d0d1478", + "Definition": {}, + "Gloss": { + "en": "very", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "Name": { + "en": "Nominalizer", + "pt": "Nominalizador" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "721bd91b-5f1d-4e9a-b65a-0211839b8c2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "eneyi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "26d8aa34-4d0f-40cf-af6a-2a01b1ddbcc8", + "Order": 1, + "DeletedAt": null, + "EntryId": "721bd91b-5f1d-4e9a-b65a-0211839b8c2d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "classes 4\u00265", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "this very one", + "pt": "este mesmo" + }, + "PartOfSpeech": { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d5fdb31-6c26-4f20-bab3-8d86a38eea78", + "DeletedAt": null, + "LexemeForm": { + "seh": "eoo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d1645b43-54ad-4ae3-86a8-2adc01b10b86", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d5fdb31-6c26-4f20-bab3-8d86a38eea78", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ai, o\u0301", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "oh", + "pt": "ai" + }, + "PartOfSpeech": { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3339c937-7f48-42b0-9cfa-e9619fa0c34e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d1645b43-54ad-4ae3-86a8-2adc01b10b86", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d78f80cf-0ebf-4591-9991-aca4b2e1f660", + "DeletedAt": null, + "LexemeForm": { + "seh": "er" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "8d6f187f-1d1e-47a7-ab99-d75b5c0fb7e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "d78f80cf-0ebf-4591-9991-aca4b2e1f660", + "Definition": { + "en": { + "Spans": [ + { + "Text": "applicative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "aplicativa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "APPLIC", + "pt": "APPLIC" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8d3435f5-a7c2-4628-86de-1b02fe3623f6", + "DeletedAt": null, + "LexemeForm": { + "seh": "es" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "e2c0d4bd-f0f9-43a8-8f4e-778deabb7a34", + "Order": 1, + "DeletedAt": null, + "EntryId": "8d3435f5-a7c2-4628-86de-1b02fe3623f6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "causative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causativa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "CAU", + "pt": "CAU" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", + "Order": 2, + "DeletedAt": null, + "EntryId": "8d3435f5-a7c2-4628-86de-1b02fe3623f6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "intensive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "intensiva", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "INTENSE", + "pt": "INTENSE" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9efa1098-b063-4cac-85ab-8ce2c3cb1be9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kutumisa", + "Ws": "en" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": " incomodar por mandar demais", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "7a6e28ba-bd49-4720-9e87-732b64f4ba62", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b3eded59-fb12-417f-b2c6-7794fd3781a9", + "DeletedAt": null, + "LexemeForm": { + "seh": "f" + }, + "CitationForm": { + "seh": "fa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3336e632-6459-4a1c-a23d-905ffe86dd5a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b3eded59-fb12-417f-b2c6-7794fd3781a9", + "Definition": {}, + "Gloss": { + "en": "die", + "pt": "morrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b2934ef0-eaa1-49de-8619-7e01e463ba55", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1 (f a); Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "3336e632-6459-4a1c-a23d-905ffe86dd5a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5c503424-64f9-4610-836f-14c4da5f0f4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "fala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e60e481f-7833-4449-aa05-486579405700", + "Order": 1, + "DeletedAt": null, + "EntryId": "5c503424-64f9-4610-836f-14c4da5f0f4f", + "Definition": {}, + "Gloss": { + "en": "voice", + "pt": "voz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ba8bb68-b29b-4f77-940d-e1f96e41abaa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e60e481f-7833-4449-aa05-486579405700", + "DeletedAt": null + } + ] + }, + { + "Id": "143dddd7-c67c-47a4-8520-d7c97bfea5fb", + "Order": 2, + "DeletedAt": null, + "EntryId": "5c503424-64f9-4610-836f-14c4da5f0f4f", + "Definition": {}, + "Gloss": { + "en": "word", + "pt": "palavra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0fcff43-04f0-447d-b434-d251fb31eeeb", + "DeletedAt": null, + "LexemeForm": { + "seh": "falinya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e4a2ddaf-3936-4686-b2c3-8a4207268d2f", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0fcff43-04f0-447d-b434-d251fb31eeeb", + "Definition": {}, + "Gloss": { + "en": "manioc", + "pt": "mandioca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b823539-b333-4e60-bf2d-1269f3791d5a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "e4a2ddaf-3936-4686-b2c3-8a4207268d2f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a74a73cf-2919-4b86-9774-bd8ab71ae3e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "famb" + }, + "CitationForm": { + "seh": "famba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bea34cfa-cfd1-4785-b126-cab5ac699c34", + "Order": 1, + "DeletedAt": null, + "EntryId": "a74a73cf-2919-4b86-9774-bd8ab71ae3e3", + "Definition": {}, + "Gloss": { + "en": "walk", + "pt": "andar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "643cc712-b3b3-42d0-971e-7a4c8a6cbf1e", + "Name": { + "en": "Walk" + }, + "Code": "7.2.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "973bbf78-246b-45e5-b865-43b0f5eb943a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bea34cfa-cfd1-4785-b126-cab5ac699c34", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1c931bb1-39aa-4fe0-aae4-bb8dbb48fb89", + "DeletedAt": null, + "LexemeForm": { + "seh": "fendezer" + }, + "CitationForm": { + "seh": "fendezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca6c691d-4d25-4930-9734-41c1fc6a80d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "1c931bb1-39aa-4fe0-aae4-bb8dbb48fb89", + "Definition": {}, + "Gloss": { + "en": "come close", + "pt": "aproximar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e7502a3-8524-4c50-be17-6fc4bdc9ccc7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine na iwe tafendezerana dhuzi.", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "ca6c691d-4d25-4930-9734-41c1fc6a80d3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "89ca306f-0355-4a40-a5bc-840995918a8a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ferus" + }, + "CitationForm": { + "seh": "ferusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8a628d12-fc65-4fca-a4cd-b72fcfb3f4e9", + "Order": 1, + "DeletedAt": null, + "EntryId": "89ca306f-0355-4a40-a5bc-840995918a8a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "put on the burner", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "po\u0302r a fervura", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "cook", + "pt": "po\u0302r a fervura" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "319561ec-df01-452a-9100-ac1412366c3f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8a628d12-fc65-4fca-a4cd-b72fcfb3f4e9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0cdffc4-1aa8-4531-9287-ad6a7ed16ad4", + "DeletedAt": null, + "LexemeForm": { + "seh": "fiari" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f472c27-cbde-4af6-882c-332e088042be", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0cdffc4-1aa8-4531-9287-ad6a7ed16ad4", + "Definition": {}, + "Gloss": { + "en": "owe", + "pt": "dever" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "917af0f0-0d4e-4f3e-a591-1782ca0df711", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2f472c27-cbde-4af6-882c-332e088042be", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04533333-ff71-4d1f-a0d4-352b7c3f553e", + "DeletedAt": null, + "LexemeForm": { + "seh": "fik" + }, + "CitationForm": { + "seh": "fika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "46adfeba-dc1c-4ab4-b459-17426311e7ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "04533333-ff71-4d1f-a0d4-352b7c3f553e", + "Definition": {}, + "Gloss": { + "en": "arrive", + "pt": "chegar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e96c24ef-938e-4309-bb19-37048212a25f", + "DeletedAt": null, + "LexemeForm": { + "seh": "fik" + }, + "CitationForm": { + "seh": "fika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ed25fd2d-3626-402b-a8b2-b87ff3fd006e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e96c24ef-938e-4309-bb19-37048212a25f", + "Definition": {}, + "Gloss": { + "en": "itch", + "pt": "sentir comicha\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1484d663-dc6c-4582-84ed-abecc9eb0ba8", + "DeletedAt": null, + "LexemeForm": { + "seh": "fikir" + }, + "CitationForm": { + "seh": "fikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aaa90268-96b6-4621-90c0-b15bdcae3797", + "Order": 1, + "DeletedAt": null, + "EntryId": "1484d663-dc6c-4582-84ed-abecc9eb0ba8", + "Definition": {}, + "Gloss": { + "en": "bury", + "pt": "enterrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de3b319b-4625-4f9e-aaa6-fe0313b1d9ee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "aaa90268-96b6-4621-90c0-b15bdcae3797", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a46a1d26-e47d-41c5-87b7-01477d540e9b", + "DeletedAt": null, + "LexemeForm": { + "seh": "fikir" + }, + "CitationForm": { + "seh": "fikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "05def64a-9f1f-4ad9-9361-09b3892ebdff", + "Order": 1, + "DeletedAt": null, + "EntryId": "a46a1d26-e47d-41c5-87b7-01477d540e9b", + "Definition": {}, + "Gloss": { + "en": "be host", + "pt": "hospedar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8887f572-8cde-4c98-85f5-464708e35a48", + "DeletedAt": null, + "LexemeForm": { + "seh": "finikiz" + }, + "CitationForm": { + "seh": "finikiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32ab3b26-bde6-4c4e-b893-7bdebbba97f3", + "Order": 1, + "DeletedAt": null, + "EntryId": "8887f572-8cde-4c98-85f5-464708e35a48", + "Definition": {}, + "Gloss": { + "en": "cover", + "pt": "cobrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "66934fb0-b84c-4bb6-b203-e044682d2e23", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "32ab3b26-bde6-4c4e-b893-7bdebbba97f3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7c51e49a-836d-4f84-aee7-4a540a2b9a0a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fokotoz" + }, + "CitationForm": { + "seh": "fokotoza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1dfc498d-6fd3-4ab7-bf19-e132a6a65490", + "Order": 1, + "DeletedAt": null, + "EntryId": "7c51e49a-836d-4f84-aee7-4a540a2b9a0a", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "explicar para esclarecer", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "clarify", + "pt": "esclarecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "e080687b-0900-4dd0-9677-e3aaa3eae641", + "Name": { + "en": "Explain" + }, + "Code": "3.5.1.2.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "e2d3d0aa-c1b0-4c76-ac36-d45394dbe9ed", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "alonga na kufokotoza", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "falou com insiste\u0301ncia", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "1dfc498d-6fd3-4ab7-bf19-e132a6a65490", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e423ade-f5ae-4881-831e-7ae1eba78ea2", + "DeletedAt": null, + "LexemeForm": { + "seh": "fond" + }, + "CitationForm": { + "seh": "fonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "93fbb734-6c88-49d4-9b17-9eeb0c71173a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e423ade-f5ae-4881-831e-7ae1eba78ea2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the action of dipping bread or corn meal into a sauce", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dip food", + "pt": "molhar comida" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "12b6934d-3a4a-4623-995f-865f401349ab", + "Name": { + "en": "Manner of eating" + }, + "Code": "5.2.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "79d06fc2-3d64-4f71-b9ee-aa3d0f54c23c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "93fbb734-6c88-49d4-9b17-9eeb0c71173a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "64dc38ed-1567-41c8-8d40-a5fc042637a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "fotokodzer" + }, + "CitationForm": { + "seh": "fotokodzera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bb62ac16-3829-45be-baa9-737a7dfb8921", + "Order": 1, + "DeletedAt": null, + "EntryId": "64dc38ed-1567-41c8-8d40-a5fc042637a7", + "Definition": {}, + "Gloss": { + "en": "confirm", + "pt": "confirmar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9874d49c-d3ad-42c6-aec2-d42f0fcd7943", + "DeletedAt": null, + "LexemeForm": { + "seh": "foxolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "08da4e99-a9f0-4f90-a25a-3f7d56bff893", + "Order": 1, + "DeletedAt": null, + "EntryId": "9874d49c-d3ad-42c6-aec2-d42f0fcd7943", + "Definition": {}, + "Gloss": { + "en": "shovel", + "pt": "pa\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "73c37803-5f1f-43b0-b290-99175be8547b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "08da4e99-a9f0-4f90-a25a-3f7d56bff893", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1765f9de-cbee-4381-9d6c-6f810d63749f", + "DeletedAt": null, + "LexemeForm": { + "seh": "foya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3dcf0108-efef-48f1-932c-0c1f2b25a959", + "Order": 1, + "DeletedAt": null, + "EntryId": "1765f9de-cbee-4381-9d6c-6f810d63749f", + "Definition": {}, + "Gloss": { + "en": "capalana", + "pt": "capalana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5b1798a4-288f-4469-b6d2-ad002aa33df6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "3dcf0108-efef-48f1-932c-0c1f2b25a959", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3494f2bf-279f-4245-9d55-8e51403e571a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fudz" + }, + "CitationForm": { + "seh": "fudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42ee67c5-c6a9-4c1a-984a-30c5df50572f", + "Order": 1, + "DeletedAt": null, + "EntryId": "3494f2bf-279f-4245-9d55-8e51403e571a", + "Definition": {}, + "Gloss": { + "en": "destroy", + "pt": "destruir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "37c4a4d9-2631-427d-99d1-2c6d2fcad89c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "42ee67c5-c6a9-4c1a-984a-30c5df50572f", + "DeletedAt": null + } + ] + }, + { + "Id": "a024c2c5-3356-4b6d-95c0-f6b04c3eb1fb", + "Order": 2, + "DeletedAt": null, + "EntryId": "3494f2bf-279f-4245-9d55-8e51403e571a", + "Definition": {}, + "Gloss": { + "en": "unmake", + "pt": "disfazer" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6aecfbe8-5fa1-415f-bb03-aedba0b3309a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ful" + }, + "CitationForm": { + "seh": "fula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7e4ab6ec-915b-40b4-b04f-e6fae33c1958", + "Order": 1, + "DeletedAt": null, + "EntryId": "6aecfbe8-5fa1-415f-bb03-aedba0b3309a", + "Definition": {}, + "Gloss": { + "en": "wash clothes", + "pt": "lavar roupa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9cb0a5d-0379-450b-a1fc-f5224a36907b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "7e4ab6ec-915b-40b4-b04f-e6fae33c1958", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff8a7e15-6e8b-4879-b659-7cd3dd60ec30", + "DeletedAt": null, + "LexemeForm": { + "seh": "fulamir" + }, + "CitationForm": { + "seh": "fulamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "93ce8887-85b4-4cfb-9d41-d3a78a59a674", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff8a7e15-6e8b-4879-b659-7cd3dd60ec30", + "Definition": { + "en": { + "Spans": [ + { + "Text": "stick your butt out to someone as an insult", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "enclinar com rabo extendido para insultar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "insult", + "pt": "insultar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "22a505f0-0272-49ff-b9f9-1ca68ae5befe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "93ce8887-85b4-4cfb-9d41-d3a78a59a674", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1cf298d6-1d76-4fa3-9cb8-9311eef020c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "fulatir" + }, + "CitationForm": { + "seh": "fulatira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c96968f6-3ba4-41dc-866f-46621635a4b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "1cf298d6-1d76-4fa3-9cb8-9311eef020c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bend over with buttocks extended in a curse", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "enclinar com rabo extendido para amaldicoar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "curse", + "pt": "amaldic\u0327oar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6814f2c6-622d-4bab-b6a0-d102e814be8e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth:fwatira", + "Ws": "en" + } + ] + }, + "SenseId": "c96968f6-3ba4-41dc-866f-46621635a4b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "DeletedAt": null, + "LexemeForm": { + "seh": "fun" + }, + "CitationForm": { + "seh": "funa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4f0592b-3caa-4494-8c29-da9d27fdbe74", + "Order": 1, + "DeletedAt": null, + "EntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "Definition": {}, + "Gloss": { + "en": "want", + "pt": "querer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "d030f0c7-31a3-47da-be35-46f1eba63ae9", + "Name": { + "en": "Like, love" + }, + "Code": "3.4.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "484817a2-3fd3-4c6f-87a1-d9aa6d6c7720", + "Order": 2, + "DeletedAt": null, + "EntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "love, like", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "amar, gostar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "love", + "pt": "amar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b68b4b80-2291-4ad4-8489-5908f4a3ce32", + "Order": 3, + "DeletedAt": null, + "EntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "Definition": {}, + "Gloss": { + "en": "be about to" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "f9f53a98-9cd9-42ef-99d2-53e5ee48bcb3", + "MaybeId": "f9f53a98-9cd9-42ef-99d2-53e5ee48bcb3", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "de894a93-add4-4b37-b79b-beed925550f9", + "ComplexFormHeadword": "funana", + "ComponentEntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "ComponentSenseId": null, + "ComponentHeadword": "funa" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "de894a93-add4-4b37-b79b-beed925550f9", + "DeletedAt": null, + "LexemeForm": { + "seh": "funan" + }, + "CitationForm": { + "seh": "funana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c7506d9e-5153-476e-a335-8809d256bb16", + "Order": 1, + "DeletedAt": null, + "EntryId": "de894a93-add4-4b37-b79b-beed925550f9", + "Definition": {}, + "Gloss": { + "en": "love", + "pt": "amar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "55b0b3aa-2b3c-4cc6-bb6b-fb02ac02ae05", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "c7506d9e-5153-476e-a335-8809d256bb16", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "f9f53a98-9cd9-42ef-99d2-53e5ee48bcb3", + "MaybeId": "f9f53a98-9cd9-42ef-99d2-53e5ee48bcb3", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "de894a93-add4-4b37-b79b-beed925550f9", + "ComplexFormHeadword": "funana", + "ComponentEntryId": "1602c98f-9f25-41d3-a9d0-c6ff6a15269b", + "ComponentSenseId": null, + "ComponentHeadword": "funa" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a2b92f44-6f7b-4b8a-ba78-53be3ea38f70", + "DeletedAt": null, + "LexemeForm": { + "seh": "funguk" + }, + "CitationForm": { + "seh": "funguka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "30c7b3aa-10e4-4946-ac04-e6d7a6be141c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a2b92f44-6f7b-4b8a-ba78-53be3ea38f70", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "aberto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "243feb07-6b7c-4f98-aefe-afa7dae94662", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "30c7b3aa-10e4-4946-ac04-e6d7a6be141c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6bdf3cfd-4a4c-4a26-a127-9fefd16a510d", + "DeletedAt": null, + "LexemeForm": { + "seh": "fungul" + }, + "CitationForm": { + "seh": "fungula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4d763ac-cce7-4b81-85cf-55ef86f16cb2", + "Order": 1, + "DeletedAt": null, + "EntryId": "6bdf3cfd-4a4c-4a26-a127-9fefd16a510d", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "abrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4d12a829-a480-4217-90fb-b62ad06655ec", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a4d763ac-cce7-4b81-85cf-55ef86f16cb2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "474f2c0e-a09c-4c42-87c2-287b82a99ce3", + "DeletedAt": null, + "LexemeForm": { + "seh": "funik" + }, + "CitationForm": { + "seh": "funika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff9430bd-53e8-4142-9071-21a5cad5652a", + "Order": 1, + "DeletedAt": null, + "EntryId": "474f2c0e-a09c-4c42-87c2-287b82a99ce3", + "Definition": {}, + "Gloss": { + "en": "need", + "pt": "precisa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8408e00a-57eb-4a5f-81b0-7392f0679ce3", + "DeletedAt": null, + "LexemeForm": { + "seh": "futa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58c422e6-bf58-48f7-837b-0d694c46c178", + "Order": 1, + "DeletedAt": null, + "EntryId": "8408e00a-57eb-4a5f-81b0-7392f0679ce3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "any type of oil", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "oil", + "pt": "o\u0301leo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f99ff374-4851-4b27-bc38-334fec5d48cb", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mafuta a kudya", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "o\u0301leo de cosinha", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist, Quembo for plural", + "Ws": "en" + } + ] + }, + "SenseId": "58c422e6-bf58-48f7-837b-0d694c46c178", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33653114-062e-4c07-8a3f-835cf876c367", + "DeletedAt": null, + "LexemeForm": { + "seh": "futhuk" + }, + "CitationForm": { + "seh": "futhuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1740df40-5673-47aa-847e-65c437550442", + "Order": 1, + "DeletedAt": null, + "EntryId": "33653114-062e-4c07-8a3f-835cf876c367", + "Definition": {}, + "Gloss": { + "en": "extended", + "pt": "estendido" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1dc4e292-5802-4be5-9447-7d026d0ab825", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1740df40-5673-47aa-847e-65c437550442", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "791438d0-5c0e-4fe9-b1cf-01887a956807", + "DeletedAt": null, + "LexemeForm": { + "seh": "futhul" + }, + "CitationForm": { + "seh": "futhula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8637fd45-a2f1-4e08-95d3-8d79ca10a64f", + "Order": 1, + "DeletedAt": null, + "EntryId": "791438d0-5c0e-4fe9-b1cf-01887a956807", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "abrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e7eb6b6-4c78-4043-a007-2eba7bab5ec2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8637fd45-a2f1-4e08-95d3-8d79ca10a64f", + "DeletedAt": null + } + ] + }, + { + "Id": "47f507af-496d-4983-8c2f-74ddd6843b5f", + "Order": 2, + "DeletedAt": null, + "EntryId": "791438d0-5c0e-4fe9-b1cf-01887a956807", + "Definition": {}, + "Gloss": { + "en": "stretch", + "pt": "esticar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2a66c2d8-3c6c-44c6-9a0e-5be536c4ed9a", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuy" + }, + "CitationForm": { + "seh": "fuya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "adf88e54-3b71-4d63-bcb0-ddce4ff78565", + "Order": 1, + "DeletedAt": null, + "EntryId": "2a66c2d8-3c6c-44c6-9a0e-5be536c4ed9a", + "Definition": {}, + "Gloss": { + "en": "raise child", + "pt": "criar crianc\u0327a" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "586a0cf0-3865-4065-aaab-f7195f0b049c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "adf88e54-3b71-4d63-bcb0-ddce4ff78565", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4975651a-b3dc-4ce7-bd8d-be3f5308de84", + "DeletedAt": null, + "LexemeForm": { + "seh": "fuz" + }, + "CitationForm": { + "seh": "fuza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8077a104-cdc7-4366-8bf5-b73997d3abfa", + "Order": 1, + "DeletedAt": null, + "EntryId": "4975651a-b3dc-4ce7-bd8d-be3f5308de84", + "Definition": {}, + "Gloss": { + "en": "destroy", + "pt": "destruir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c1bd1b81-96b7-4efb-98c3-182a3dc31ce6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8077a104-cdc7-4366-8bf5-b73997d3abfa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1c504db-597f-4e62-bcf7-31f623c11bbd", + "DeletedAt": null, + "LexemeForm": { + "seh": "gak" + }, + "CitationForm": { + "seh": "gaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "728743a9-61b1-48e1-97ec-2d37d1dbed8f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1c504db-597f-4e62-bcf7-31f623c11bbd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the state of being lit", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "burning", + "pt": "esta\u0301 aceso" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f91ffea6-c39d-41e6-9c88-3bc826c78158", + "DeletedAt": null, + "LexemeForm": { + "seh": "gamph" + }, + "CitationForm": { + "seh": "gampha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14518a12-4f6b-457c-b059-31e8941432c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "f91ffea6-c39d-41e6-9c88-3bc826c78158", + "Definition": {}, + "Gloss": { + "en": "catch", + "pt": "encaixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3a8bb44-ce92-4e35-a713-d57c98366b66", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "iwe kudza kakugampha na manja", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "you will be caught in the hand", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "14518a12-4f6b-457c-b059-31e8941432c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "98ae0610-e818-4093-8762-6922d135be90", + "DeletedAt": null, + "LexemeForm": { + "seh": "gas" + }, + "CitationForm": { + "seh": "gasa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c67be91a-7537-47ac-b4ac-f16dddba5dea", + "Order": 1, + "DeletedAt": null, + "EntryId": "98ae0610-e818-4093-8762-6922d135be90", + "Definition": {}, + "Gloss": { + "en": "light flame", + "pt": "acender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ea161ff-d584-41f1-8242-31566d5f6042", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "c67be91a-7537-47ac-b4ac-f16dddba5dea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0f93031-e9fe-4b7d-b6eb-f1b4b944fee3", + "DeletedAt": null, + "LexemeForm": { + "seh": "gaw" + }, + "CitationForm": { + "seh": "gawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ecd2581-0ea3-4613-8ed5-2643085d6a61", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0f93031-e9fe-4b7d-b6eb-f1b4b944fee3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "organize distribution", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "dividir antes de distribuir", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "arrange", + "pt": "dividir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6233f99-8975-400c-a1cb-69ec5d7c9ab2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gawiz" + }, + "CitationForm": { + "seh": "gawiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1df766e6-a8e1-476b-9402-9f0aeadb5eb3", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6233f99-8975-400c-a1cb-69ec5d7c9ab2", + "Definition": {}, + "Gloss": { + "en": "distribute", + "pt": "distribuir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ea2ea2a2-daa4-4c5c-b880-bedc73e66594", + "Order": 2, + "DeletedAt": null, + "EntryId": "a6233f99-8975-400c-a1cb-69ec5d7c9ab2", + "Definition": {}, + "Gloss": { + "en": "divide", + "pt": "dividir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "34d9b8c5-9d97-489e-9cc2-dbce4193b503", + "DeletedAt": null, + "LexemeForm": { + "seh": "gay" + }, + "CitationForm": { + "seh": "gaya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5121e7bd-4eb3-4e74-9779-d833fcbd6c33", + "Order": 1, + "DeletedAt": null, + "EntryId": "34d9b8c5-9d97-489e-9cc2-dbce4193b503", + "Definition": {}, + "Gloss": { + "en": "vanity", + "pt": "vaidade" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "016ab5a9-4a88-4399-b185-a4b0797078ef", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze; George didn\u0027t know", + "Ws": "en" + } + ] + }, + "SenseId": "5121e7bd-4eb3-4e74-9779-d833fcbd6c33", + "DeletedAt": null + } + ] + }, + { + "Id": "209e52a4-dac0-4220-904d-bd2774dfb631", + "Order": 2, + "DeletedAt": null, + "EntryId": "34d9b8c5-9d97-489e-9cc2-dbce4193b503", + "Definition": {}, + "Gloss": { + "en": "be proud", + "pt": "ser vaidoso" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2bb1472-71b7-4fcb-8434-e68dd6d592c0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndisagaya na njinga yanga.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eu orgulho-me com bicicleta minha.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Alves", + "Ws": "en" + } + ] + }, + "SenseId": "209e52a4-dac0-4220-904d-bd2774dfb631", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bc0b964c-3cc8-473c-b138-85659e0bbba3", + "DeletedAt": null, + "LexemeForm": { + "seh": "gerego" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0fd92c10-05b8-475a-8a64-7fd308bd6740", + "Order": 1, + "DeletedAt": null, + "EntryId": "bc0b964c-3cc8-473c-b138-85659e0bbba3", + "Definition": {}, + "Gloss": { + "en": "Greek", + "pt": "grego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0740c14-da52-47d4-8fae-0654717a89b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "goa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8b4ba5d6-8067-44f7-8484-35c96aa7d262", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0740c14-da52-47d4-8fae-0654717a89b1", + "Definition": {}, + "Gloss": { + "en": "valley", + "pt": "vale" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7222a8d-53f8-486d-93d5-a09fd3cfa514", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8b4ba5d6-8067-44f7-8484-35c96aa7d262", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8f29c302-5175-4ec7-9a8d-9a051f40f54c", + "DeletedAt": null, + "LexemeForm": { + "seh": "goce" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3b6bbb6-5c84-4ff0-a8e6-1e2899d12400", + "Order": 1, + "DeletedAt": null, + "EntryId": "8f29c302-5175-4ec7-9a8d-9a051f40f54c", + "Definition": {}, + "Gloss": { + "en": "chaff", + "pt": "farelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a051241d-37ff-454b-9cfe-b3a9c7f49556", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b3b6bbb6-5c84-4ff0-a8e6-1e2899d12400", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "68d57905-5566-4f7c-97ec-feb266154ccd", + "DeletedAt": null, + "LexemeForm": { + "seh": "godam" + }, + "CitationForm": { + "seh": "godama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8a8e149b-f056-4234-9810-4b90b3ffb19d", + "Order": 1, + "DeletedAt": null, + "EntryId": "68d57905-5566-4f7c-97ec-feb266154ccd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "kneel as an act of respect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "joelhar como acto de respeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "kneel", + "pt": "joelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c4b750a2-65a5-44da-b4df-035b59fc2179", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8a8e149b-f056-4234-9810-4b90b3ffb19d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a95d2f76-0b0d-4cfa-a009-c8757e792f8b", + "DeletedAt": null, + "LexemeForm": { + "seh": "godamir" + }, + "CitationForm": { + "seh": "godamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1743274c-54d5-4ff5-b444-3d4153c77cb5", + "Order": 1, + "DeletedAt": null, + "EntryId": "a95d2f76-0b0d-4cfa-a009-c8757e792f8b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "kneel for someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "joelhar a favor de alge\u0301m", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "kneel", + "pt": "joelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "360fdfb7-d3c8-4769-a159-0edb7555ee12", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1743274c-54d5-4ff5-b444-3d4153c77cb5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "060dcab9-201d-4c68-9991-414e43d520c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "gogodo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b35a109a-8344-44cc-bf8f-3c9c70d5a868", + "Order": 1, + "DeletedAt": null, + "EntryId": "060dcab9-201d-4c68-9991-414e43d520c7", + "Definition": {}, + "Gloss": { + "en": "bone", + "pt": "osso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7131c40-26b7-4ddc-99b6-11dffa7bc24b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b35a109a-8344-44cc-bf8f-3c9c70d5a868", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e30f9934-139d-4723-be5d-f02dc697ef97", + "DeletedAt": null, + "LexemeForm": { + "seh": "gogom" + }, + "CitationForm": { + "seh": "gogoma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3bd37e79-5717-47bb-8b27-c83819adec6e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e30f9934-139d-4723-be5d-f02dc697ef97", + "Definition": {}, + "Gloss": { + "en": "kneel", + "pt": "ajoelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "402fbb8e-7e4e-4c93-bb84-4b2808ba28a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cdc935e-49af-4457-a414-d38b10ec906b", + "Order": 1, + "DeletedAt": null, + "EntryId": "402fbb8e-7e4e-4c93-bb84-4b2808ba28a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the water next to the bank of a river or lake", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "river bank", + "pt": "margem de rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "928741b5-bff6-4dd1-be37-ec6e7a4eb6ca", + "Name": { + "en": "Island, shore" + }, + "Code": "1.3.1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c1cae661-4522-47c5-8c5e-d15babf756b7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8cdc935e-49af-4457-a414-d38b10ec906b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef7645bf-0e76-437f-a366-c7e615d32650", + "DeletedAt": null, + "LexemeForm": { + "seh": "gon" + }, + "CitationForm": { + "seh": "gona" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a97c0f4d-73e0-4b95-931f-31c8a515729e", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef7645bf-0e76-437f-a366-c7e615d32650", + "Definition": {}, + "Gloss": { + "en": "sleep", + "pt": "dormir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b111978d-560f-43a3-85e8-c60f1db7d61e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwagona piadidi?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "dormiu bem?", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a97c0f4d-73e0-4b95-931f-31c8a515729e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cb59cbcd-fa82-45cf-8e12-3da5001325c5", + "DeletedAt": null, + "LexemeForm": { + "seh": "gop" + }, + "CitationForm": { + "seh": "gopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04f6c79e-348b-43f0-9cd4-0725a74814d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "cb59cbcd-fa82-45cf-8e12-3da5001325c5", + "Definition": {}, + "Gloss": { + "en": "be afraid", + "pt": "ter medo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e2a12308-0c80-412f-ac80-983f7d821975", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "04f6c79e-348b-43f0-9cd4-0725a74814d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0f0d55f6-6fa6-4e17-a518-029033bc4969", + "DeletedAt": null, + "LexemeForm": { + "seh": "gubudz" + }, + "CitationForm": { + "seh": "gubudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b4c2c6a-3c8e-45d0-927d-385f7cbb75bd", + "Order": 1, + "DeletedAt": null, + "EntryId": "0f0d55f6-6fa6-4e17-a518-029033bc4969", + "Definition": {}, + "Gloss": { + "en": "shake dust off", + "pt": "sacudir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac3922af-dae0-4eda-9404-914c8a181e9d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b4c2c6a-3c8e-45d0-927d-385f7cbb75bd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65b7d786-31fc-470b-9bb2-e87ea2188436", + "DeletedAt": null, + "LexemeForm": { + "seh": "gul" + }, + "CitationForm": { + "seh": "gula" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "559be1cc-d82c-415d-b5b7-2043a9604511", + "Order": 1, + "DeletedAt": null, + "EntryId": "65b7d786-31fc-470b-9bb2-e87ea2188436", + "Definition": {}, + "Gloss": { + "en": "buy", + "pt": "comprar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0de692a3-fefa-46bb-8b9d-9ead9a0456b3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "559be1cc-d82c-415d-b5b7-2043a9604511", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ca4d7847-b8d1-49ef-b44a-ad227810b8b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gulis" + }, + "CitationForm": { + "seh": "gulisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07dc886f-0dba-4aa6-963a-3d891662d3bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "ca4d7847-b8d1-49ef-b44a-ad227810b8b2", + "Definition": {}, + "Gloss": { + "en": "sell", + "pt": "vender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "a758718d-6e90-471d-acde-a637ba9ff9eb", + "Name": { + "en": "Sell" + }, + "Code": "6.8.4.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "11412391-9ed0-4ab4-8cb7-9008950b38ac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "07dc886f-0dba-4aa6-963a-3d891662d3bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33f6b0d5-78e9-4301-ad05-f691b0801faf", + "DeletedAt": null, + "LexemeForm": { + "seh": "guman" + }, + "CitationForm": { + "seh": "gumana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "25b238b4-a5d7-4131-a98d-62f2238a4555", + "Order": 1, + "DeletedAt": null, + "EntryId": "33f6b0d5-78e9-4301-ad05-f691b0801faf", + "Definition": {}, + "Gloss": { + "en": "find", + "pt": "encontrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c74009b6-0cff-45dc-9f0b-143981f0281c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "25b238b4-a5d7-4131-a98d-62f2238a4555", + "DeletedAt": null + } + ] + }, + { + "Id": "0d63ae85-adf8-4fb0-a52a-58a5c41bfb86", + "Order": 2, + "DeletedAt": null, + "EntryId": "33f6b0d5-78e9-4301-ad05-f691b0801faf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to consult a traditional doctor to find the cause of some calamity", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "consult", + "pt": "consultar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77b0ac3f-3f08-4788-a65c-e0160206ef9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "gumanik" + }, + "CitationForm": { + "seh": "gumanika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4168c68a-7b17-4f1a-97f7-37f5575e39e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "77b0ac3f-3f08-4788-a65c-e0160206ef9d", + "Definition": {}, + "Gloss": { + "en": "exist", + "pt": "existir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ed2300d-319a-4df0-b0c9-ea6b504873f8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4168c68a-7b17-4f1a-97f7-37f5575e39e1", + "DeletedAt": null + } + ] + }, + { + "Id": "134179c7-370a-4bbb-8fe8-478cce52139d", + "Order": 2, + "DeletedAt": null, + "EntryId": "77b0ac3f-3f08-4788-a65c-e0160206ef9d", + "Definition": {}, + "Gloss": { + "en": "encounter", + "pt": "encontrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a212da8-c349-4436-970c-2495a7b9ecf0", + "DeletedAt": null, + "LexemeForm": { + "seh": "gumany" + }, + "CitationForm": { + "seh": "gumanya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c9f2594-1004-425c-866f-d88e69fe7472", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a212da8-c349-4436-970c-2495a7b9ecf0", + "Definition": {}, + "Gloss": { + "en": "gather", + "pt": "juntar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ef18e00-2ef8-4288-ac17-f3290fc31c43", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1c9f2594-1004-425c-866f-d88e69fe7472", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31364070-c0c9-455d-bd44-580607d2b0b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "guta" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7502b8d4-c1a1-46c6-a985-46966413ff32", + "Order": 1, + "DeletedAt": null, + "EntryId": "31364070-c0c9-455d-bd44-580607d2b0b3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wooden fortress", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "fortaleza de paus", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "fortress", + "pt": "fortaleza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "08d3c2ee-fa76-49cc-a55f-0e05db1b7ca2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7502b8d4-c1a1-46c6-a985-46966413ff32", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81465344-4602-40cb-b50c-540526f6335a", + "DeletedAt": null, + "LexemeForm": { + "seh": "guwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78a7affb-82be-4888-be1c-a5ece125682b", + "Order": 1, + "DeletedAt": null, + "EntryId": "81465344-4602-40cb-b50c-540526f6335a", + "Definition": {}, + "Gloss": { + "en": "threshing floor", + "pt": "eira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "da257faa-dbcb-4376-887b-e9242a548f8f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "78a7affb-82be-4888-be1c-a5ece125682b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b63fa2ec-5358-4813-ba55-933631219491", + "DeletedAt": null, + "LexemeForm": { + "seh": "guz" + }, + "CitationForm": { + "seh": "guza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2030a4db-c8e3-4492-8eee-ee03fa95cdae", + "Order": 1, + "DeletedAt": null, + "EntryId": "b63fa2ec-5358-4813-ba55-933631219491", + "Definition": {}, + "Gloss": { + "en": "expulse", + "pt": "expusar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1adb8cc4-7376-46db-a1c9-86ad606257e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2030a4db-c8e3-4492-8eee-ee03fa95cdae", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03830f0e-f6ea-4022-9293-9b1700f8b954", + "DeletedAt": null, + "LexemeForm": { + "seh": "gw" + }, + "CitationForm": { + "seh": "gwa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "aa2f490f-656d-4fac-85ba-f27ffd198fc7", + "Order": 1, + "DeletedAt": null, + "EntryId": "03830f0e-f6ea-4022-9293-9b1700f8b954", + "Definition": {}, + "Gloss": { + "en": "play", + "pt": "jogar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fef0afcb-272a-41ce-a4c8-2cba61d2edd4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kugwa bola; kugwa makarta", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "jogar bola; jogar cartas", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "aa2f490f-656d-4fac-85ba-f27ffd198fc7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "07a07401-2f83-4892-8cc7-1527999bbfc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "gw" + }, + "CitationForm": { + "seh": "gwa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d3c7810d-8e90-466e-befb-dfc3f9424bfd", + "Order": 1, + "DeletedAt": null, + "EntryId": "07a07401-2f83-4892-8cc7-1527999bbfc1", + "Definition": {}, + "Gloss": { + "en": "fall", + "pt": "cair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6fdd753f-4ba7-4e70-962d-2894f0816817", + "DeletedAt": null, + "LexemeForm": { + "seh": "gwand" + }, + "CitationForm": { + "seh": "gwanda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d3eb5101-3c90-4cec-9ba8-abcca2cc7fd4", + "Order": 1, + "DeletedAt": null, + "EntryId": "6fdd753f-4ba7-4e70-962d-2894f0816817", + "Definition": {}, + "Gloss": { + "en": "cut", + "pt": "cortar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d59caf5d-4b8f-4f1a-9195-2fe788742352", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d3eb5101-3c90-4cec-9ba8-abcca2cc7fd4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d6dfe4bd-5387-4ae1-b4b9-08ff97f81ad8", + "DeletedAt": null, + "LexemeForm": { + "seh": "gwedz" + }, + "CitationForm": { + "seh": "gwedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6ccc4bda-d84e-44bc-b401-7a831fe7e78e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d6dfe4bd-5387-4ae1-b4b9-08ff97f81ad8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "physical contact w/ one\u0027s body", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "touch", + "pt": "tocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d68a700a-232c-4b9c-a44f-1ab925baabc9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "andigwedza na manja ace", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "ele tocou-me com a sua mao", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "6ccc4bda-d84e-44bc-b401-7a831fe7e78e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "39ab1370-4e8d-4064-8de8-18dbd31eebe2", + "DeletedAt": null, + "LexemeForm": { + "seh": "gwes" + }, + "CitationForm": { + "seh": "gwesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8a75f1f8-dea3-4c3f-9e35-63b674b1d525", + "Order": 1, + "DeletedAt": null, + "EntryId": "39ab1370-4e8d-4064-8de8-18dbd31eebe2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cause another to drop", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causar outra deixar cair", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "to drop one", + "pt": "deixar cair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05c3984a-e546-4d7e-91a5-c3b7e19dc7fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "8a75f1f8-dea3-4c3f-9e35-63b674b1d525", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "676eeb8e-02d6-44f1-8c4c-033dbfd95fa0", + "DeletedAt": null, + "LexemeForm": { + "seh": "ha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "371d8c7f-e0eb-41e2-a9b0-ae1e8cf6daa3", + "Order": 1, + "DeletedAt": null, + "EntryId": "676eeb8e-02d6-44f1-8c4c-033dbfd95fa0", + "Definition": {}, + "Gloss": { + "en": "what!", + "pt": "ae\u0301" + }, + "PartOfSpeech": { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cd530a5c-6ae1-4738-8c38-67d148f3c3be", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ha! Ndi tenepa?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "A final! E\u0301 assim?", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "371d8c7f-e0eb-41e2-a9b0-ae1e8cf6daa3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c916c100-f949-474f-b38b-0eb5ae696e6d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "226d186c-11e5-4971-b2e2-5cff94e1a649", + "Order": 1, + "DeletedAt": null, + "EntryId": "c916c100-f949-474f-b38b-0eb5ae696e6d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "non-first person negative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "negativo na\u0303o primeiro pessoa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NEG", + "pt": "NEG" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "15dddc00-6015-4412-aa3b-644db854c89e", + "DeletedAt": null, + "LexemeForm": { + "seh": "i" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "62af26f3-cd22-4b25-82dc-3dc7cb6ba886", + "Order": 1, + "DeletedAt": null, + "EntryId": "15dddc00-6015-4412-aa3b-644db854c89e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "nominalizer", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "NZR", + "pt": "NZR" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e0de300-01df-4985-aa81-83ad5e128f7c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kutonga, utongi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "to judge, justice", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "julgar, justic\u0327a", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "62af26f3-cd22-4b25-82dc-3dc7cb6ba886", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41eaf8e3-fad8-4957-b901-21870f508091", + "DeletedAt": null, + "LexemeForm": { + "seh": "i" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "9800597f-0dab-48f8-93cc-b1a2be904e29", + "Order": 1, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a9da180c-b617-4897-bbc3-9483e3ec9fae", + "Order": 2, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b7dd12e2-4eaa-40a1-a07e-8239b886f77f", + "Order": 3, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ad95bb10-5844-4233-9481-227dc410fc16", + "Order": 4, + "DeletedAt": null, + "EntryId": "41eaf8e3-fad8-4957-b901-21870f508091", + "Definition": {}, + "Gloss": { + "en": "4\u002B5\u002B9", + "pt": "4\u002B5\u002B9" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86edf77a-16db-4ac5-9c24-a34bd334c712", + "DeletedAt": null, + "LexemeForm": { + "seh": "ici" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d57c0281-f302-402c-bf96-e6897451d953", + "Order": 1, + "DeletedAt": null, + "EntryId": "86edf77a-16db-4ac5-9c24-a34bd334c712", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71558ef9-9ec0-428b-9918-bd352f33e87b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ico" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c1d9fc69-c614-45bf-9812-fa8874b9de27", + "Order": 1, + "DeletedAt": null, + "EntryId": "71558ef9-9ec0-428b-9918-bd352f33e87b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "7", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18244a90-d9a5-406d-ac82-3680812dfa4e", + "DeletedAt": null, + "LexemeForm": { + "seh": "id" + }, + "CitationForm": { + "seh": "ida" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b179aa5a-18b1-43c4-8802-225af8d2473a", + "Order": 1, + "DeletedAt": null, + "EntryId": "18244a90-d9a5-406d-ac82-3680812dfa4e", + "Definition": {}, + "Gloss": { + "en": "hate", + "pt": "odiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "36d8da47-40ba-48d0-b841-e7869c2560a6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "b179aa5a-18b1-43c4-8802-225af8d2473a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba05abc0-9e22-48c4-860c-ae55ec35435d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ife" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0f47bdf1-121d-4e9c-b3ab-e1716b92b0bd", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba05abc0-9e22-48c4-860c-ae55ec35435d", + "Definition": {}, + "Gloss": { + "en": "we", + "pt": "nos" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d94e7e87-0b68-48e3-a7b4-e77691b69396", + "DeletedAt": null, + "LexemeForm": { + "seh": "ikh" + }, + "CitationForm": { + "seh": "ikha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f6c26a1b-587e-41d7-a688-8e9a4e679c31", + "Order": 1, + "DeletedAt": null, + "EntryId": "d94e7e87-0b68-48e3-a7b4-e77691b69396", + "Definition": {}, + "Gloss": { + "en": "put", + "pt": "po\u0302r" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f9386d77-735b-4fa6-adfd-61be4b09f4e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "iko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "073b3c7a-0c55-4573-9b95-c0b9162a564d", + "Order": 1, + "DeletedAt": null, + "EntryId": "f9386d77-735b-4fa6-adfd-61be4b09f4e8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "12, 15, 17", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "077ce6ae-c760-40ab-8ab2-577ffcfa7882", + "DeletedAt": null, + "LexemeForm": { + "seh": "N" + }, + "CitationForm": { + "seh": "im" + }, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "d7e20ee1-b678-4935-8929-483003583810", + "Order": 1, + "DeletedAt": null, + "EntryId": "077ce6ae-c760-40ab-8ab2-577ffcfa7882", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7de2bf36-4c0e-4b69-b523-60f182c15207", + "DeletedAt": null, + "LexemeForm": { + "seh": "N" + }, + "CitationForm": { + "seh": "im" + }, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "09d14f33-ec36-4b5e-aad4-59ab916ba38e", + "Order": 1, + "DeletedAt": null, + "EntryId": "7de2bf36-4c0e-4b69-b523-60f182c15207", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Class 9", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Classe 9", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "9", + "pt": "9" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62d6c043-cda5-45a1-8241-3195e520ac10", + "DeletedAt": null, + "LexemeForm": { + "seh": "imb" + }, + "CitationForm": { + "seh": "imba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbf8b07f-44e9-4847-beee-21ee79a0e073", + "Order": 1, + "DeletedAt": null, + "EntryId": "62d6c043-cda5-45a1-8241-3195e520ac10", + "Definition": {}, + "Gloss": { + "en": "sing", + "pt": "cantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86cd0533-e90b-4346-b4ec-92a60c97631a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cbf8b07f-44e9-4847-beee-21ee79a0e073", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b2e7094b-bb12-4b04-9af0-4b543a1914e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "imba ciruzwi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "e86f33e1-ff72-4335-a704-04954f4ebee1", + "Order": 1, + "DeletedAt": null, + "EntryId": "b2e7094b-bb12-4b04-9af0-4b543a1914e5", + "Definition": {}, + "Gloss": { + "en": "whistle", + "pt": "assobiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c982c11f-c2e8-4ca7-aff6-e76bed67e770", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "e86f33e1-ff72-4335-a704-04954f4ebee1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d9132390-95d3-4bf2-ac0f-81d6ff226c17", + "DeletedAt": null, + "LexemeForm": { + "seh": "bu" + }, + "CitationForm": { + "seh": "imbu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f24bb8e1-419f-4ff0-9020-ad57bec92129", + "Order": 1, + "DeletedAt": null, + "EntryId": "d9132390-95d3-4bf2-ac0f-81d6ff226c17", + "Definition": {}, + "Gloss": { + "en": "mosquito", + "pt": "mosquito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "985b0443-5a12-4944-ae93-f23d9714d64c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "imbu maningi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "muito mosquitos", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f24bb8e1-419f-4ff0-9020-ad57bec92129", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c53c832-8e62-4820-a846-2012e934105d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvi" + }, + "CitationForm": { + "seh": "imbvi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41dc96b0-ec32-4968-adf5-420c21fa5a8b", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c53c832-8e62-4820-a846-2012e934105d", + "Definition": {}, + "Gloss": { + "en": "white hair", + "pt": "cabelo branco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e5658ce5-fe7d-41c9-860f-fe4dd6baa06f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:28; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "41dc96b0-ec32-4968-adf5-420c21fa5a8b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d4e97e2b-026e-41da-bde2-a17fe3c03b03", + "DeletedAt": null, + "LexemeForm": { + "seh": "imo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "92f35c61-b91a-4ca8-ae27-a1ad1b8c1f3d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d4e97e2b-026e-41da-bde2-a17fe3c03b03", + "Definition": { + "en": { + "Spans": [ + { + "Text": "18", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adcd5ecd-6b7d-4a84-aca9-4ca382f68263", + "DeletedAt": null, + "LexemeForm": { + "seh": "psa" + }, + "CitationForm": { + "seh": "impsa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef2dfd9b-673b-4948-8fea-0e44aa5e12a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "adcd5ecd-6b7d-4a84-aca9-4ca382f68263", + "Definition": { + "en": { + "Spans": [ + { + "Text": "species of winged termine", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "termite", + "pt": "termino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dce71075-0648-424b-a3bb-4f41988ae0a2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef2dfd9b-673b-4948-8fea-0e44aa5e12a7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6563329b-c76e-4515-ae43-92220ccea006", + "DeletedAt": null, + "LexemeForm": { + "seh": "imwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "26ff2aae-b682-4dce-8038-492132a320c6", + "Order": 1, + "DeletedAt": null, + "EntryId": "6563329b-c76e-4515-ae43-92220ccea006", + "Definition": {}, + "Gloss": { + "en": "you all", + "pt": "vo\u0301s" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6485b811-120d-486b-bb97-425faa9008d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "inde" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "27c2f84c-3ac2-4d20-ba0b-9779ea7c5252", + "Order": 1, + "DeletedAt": null, + "EntryId": "6485b811-120d-486b-bb97-425faa9008d9", + "Definition": {}, + "Gloss": { + "en": "yes", + "pt": "sim" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e303313-7074-4272-85ca-35c49a6a4ecb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ine" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e7eb3cab-f56e-44d6-ac11-919d0466f26b", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e303313-7074-4272-85ca-35c49a6a4ecb", + "Definition": {}, + "Gloss": { + "en": "I", + "pt": "eu" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7ecbb299-bf35-4795-a5cc-8d38ce8b891c", + "DeletedAt": null, + "LexemeForm": { + "seh": "infa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6895e856-d373-4190-b7ac-8d185a18e4ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "7ecbb299-bf35-4795-a5cc-8d38ce8b891c", + "Definition": {}, + "Gloss": { + "en": "death", + "pt": "morte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6cba72d0-e8f7-493c-950e-c17e52101a14", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "6895e856-d373-4190-b7ac-8d185a18e4ce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77b2397d-19c9-4321-b581-7a4ccfa9fc0e", + "DeletedAt": null, + "LexemeForm": { + "seh": "ip" + }, + "CitationForm": { + "seh": "ipa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "990acf6f-9eb5-4b84-b3c5-ac736813481b", + "Order": 1, + "DeletedAt": null, + "EntryId": "77b2397d-19c9-4321-b581-7a4ccfa9fc0e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bad, doesn\u0027t serve, evil, ugly", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sin", + "pt": "pecar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c6953557-830b-4489-ae72-ee4ce39bf2bf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Iye ayipa maningi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ele e\u0301 feio muito", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "990acf6f-9eb5-4b84-b3c5-ac736813481b", + "DeletedAt": null + } + ] + }, + { + "Id": "9e09f628-2cc0-47f1-a747-f199af978acf", + "Order": 2, + "DeletedAt": null, + "EntryId": "77b2397d-19c9-4321-b581-7a4ccfa9fc0e", + "Definition": {}, + "Gloss": { + "en": "bad thing", + "pt": "coisa mal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2ed4beb1-aaa6-4767-9abb-85003796e5b9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kuipa kwanga nkwanji?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "mal meu qual", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "9e09f628-2cc0-47f1-a747-f199af978acf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35391ad9-1902-4f0a-8519-43f397ec6b60", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "032fb2d2-9fce-49c4-bd94-5b4b95848319", + "Order": 1, + "DeletedAt": null, + "EntryId": "35391ad9-1902-4f0a-8519-43f397ec6b60", + "Definition": {}, + "Gloss": { + "en": "which?", + "pt": "qual?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec4687ed-d2f5-484f-ad45-6f7c5d922331", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ad740522-fc25-4412-8d7e-5a5daf64d357", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec4687ed-d2f5-484f-ad45-6f7c5d922331", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "83813b13-5827-4990-b692-4c52b7310624", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipir" + }, + "CitationForm": { + "seh": "ipira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c38c6c69-6d59-41a5-b9d4-cc259b30b56a", + "Order": 1, + "DeletedAt": null, + "EntryId": "83813b13-5827-4990-b692-4c52b7310624", + "Definition": {}, + "Gloss": { + "en": "irritate", + "pt": "chatear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f6bbacf-5617-4836-81ac-218e70ae365d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "c38c6c69-6d59-41a5-b9d4-cc259b30b56a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e1b1ed03-96b2-4c1e-bc35-1e325461d139", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipirw" + }, + "CitationForm": { + "seh": "ipirwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3e72de5a-4584-4551-b5e1-b6d8fe9be15e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e1b1ed03-96b2-4c1e-bc35-1e325461d139", + "Definition": {}, + "Gloss": { + "en": "unhappy", + "pt": "infeliz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06c94f13-56b4-4b81-92cd-c1ca369815cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "81672136-0410-4aee-bbfb-1f15dc153591", + "Order": 1, + "DeletedAt": null, + "EntryId": "06c94f13-56b4-4b81-92cd-c1ca369815cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "16", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "44115d4e-5765-4d16-bd26-bda00e9c3eed", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "82abf458-b54c-4b29-b1d9-4a0d86aa898a", + "Order": 1, + "DeletedAt": null, + "EntryId": "44115d4e-5765-4d16-bd26-bda00e9c3eed", + "Definition": {}, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "02fdaa00-2856-4abc-85f8-7ceae651d8d4", + "Order": 2, + "DeletedAt": null, + "EntryId": "44115d4e-5765-4d16-bd26-bda00e9c3eed", + "Definition": {}, + "Gloss": { + "en": "this one", + "pt": "aquele" + }, + "PartOfSpeech": { + "Id": "730528ca-6a9b-4424-9839-a58bf66db779", + "Name": { + "en": "Demonstrative2", + "pt": "Demonstrativo2" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "730528ca-6a9b-4424-9839-a58bf66db779", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ba446f7-f15d-45f7-a351-43fff2b00163", + "DeletedAt": null, + "LexemeForm": { + "seh": "ire" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9c034b2e-b7e3-4804-b76f-bb11375ce405", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ba446f7-f15d-45f7-a351-43fff2b00163", + "Definition": {}, + "Gloss": { + "en": "that one", + "pt": "aquele" + }, + "PartOfSpeech": { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbdd566d-b9e3-43fe-b6ed-f93ff5ff3abf", + "DeletedAt": null, + "LexemeForm": { + "seh": "iw" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "7fdf6163-c035-44ec-a325-8ea9542edf19", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbdd566d-b9e3-43fe-b6ed-f93ff5ff3abf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "passive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "passiva", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PAS", + "pt": "PAS" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a78bb1d7-a86c-40c5-8ad1-8d75b71c4962", + "DeletedAt": null, + "LexemeForm": { + "seh": "iwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "30a1be5f-a148-4a11-8d46-9a580d3e37fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "a78bb1d7-a86c-40c5-8ad1-8d75b71c4962", + "Definition": {}, + "Gloss": { + "en": "you", + "pt": "tu" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "df34b961-5c26-4c3a-b56c-29050997e285", + "DeletedAt": null, + "LexemeForm": { + "seh": "iwo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "211c4895-c3b6-402c-ad0f-b65ab8060c0a", + "Order": 1, + "DeletedAt": null, + "EntryId": "df34b961-5c26-4c3a-b56c-29050997e285", + "Definition": { + "en": { + "Spans": [ + { + "Text": "they, 3P, 2, 3, 6, 14", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "eles", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e4ae08a-2672-4df2-9e2d-980be367e893", + "DeletedAt": null, + "LexemeForm": { + "seh": "iye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5f185bf1-c60e-48b2-96ce-ed04187d814b", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e4ae08a-2672-4df2-9e2d-980be367e893", + "Definition": { + "en": { + "Spans": [ + { + "Text": "he, it, him", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ele", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "he", + "pt": "ele" + }, + "PartOfSpeech": { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "d35c60bd-e436-4769-a6c6-96770a849831", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "efef73f3-4da2-4446-a807-6e18819f2fe6", + "DeletedAt": null, + "LexemeForm": { + "seh": "iyi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cedea80b-ea9d-446e-aa04-d0385c642139", + "Order": 1, + "DeletedAt": null, + "EntryId": "efef73f3-4da2-4446-a807-6e18819f2fe6", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "12713d09-49d7-4250-8efb-63dab36af447", + "DeletedAt": null, + "LexemeForm": { + "seh": "iyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cf6952f4-708f-44e4-a2f5-097633417224", + "Order": 1, + "DeletedAt": null, + "EntryId": "12713d09-49d7-4250-8efb-63dab36af447", + "Definition": { + "en": { + "Spans": [ + { + "Text": "4, 5, 9", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29618029-4618-4cdb-b22d-7dcfb757bc59", + "DeletedAt": null, + "LexemeForm": { + "seh": "izi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "36c915b8-6034-4585-bedb-d4f97a86d10e", + "Order": 1, + "DeletedAt": null, + "EntryId": "29618029-4618-4cdb-b22d-7dcfb757bc59", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a164c211-9e6d-4824-b5f1-76f0d0abd62d", + "DeletedAt": null, + "LexemeForm": { + "seh": "izo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d5737080-4c72-405a-be28-33ba90e4d8ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "a164c211-9e6d-4824-b5f1-76f0d0abd62d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "10", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "they", + "pt": "eles" + }, + "PartOfSpeech": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3324b556-5483-4f44-8c64-1a11c575cdce", + "DeletedAt": null, + "LexemeForm": { + "seh": "Jorge" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f4c4f4d2-f942-4bf2-a71a-a7842e62662e", + "Order": 1, + "DeletedAt": null, + "EntryId": "3324b556-5483-4f44-8c64-1a11c575cdce", + "Definition": {}, + "Gloss": { + "en": "George", + "pt": "Jorge" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "Proper name added so the parse can handle it", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f8f88b9-5410-45c6-9e2c-f7144ee34041", + "DeletedAt": null, + "LexemeForm": { + "seh": "ka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "f112791e-e80f-4ddb-9874-cc80d19fddb2", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f8f88b9-5410-45c6-9e2c-f7144ee34041", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "abd8f356-c815-431a-ba70-217d61cda17a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1fc65011-9f5b-4aef-a34b-acd5799ee501", + "Order": 1, + "DeletedAt": null, + "EntryId": "abd8f356-c815-431a-ba70-217d61cda17a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "purpose inifintive, in.order.to", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "para", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "65b1dd23-3788-4968-860b-b29c8439c601", + "Order": 2, + "DeletedAt": null, + "EntryId": "abd8f356-c815-431a-ba70-217d61cda17a", + "Definition": {}, + "Gloss": { + "en": "PURP", + "pt": "PURP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "439845c9-6baf-47fd-9103-4765365279bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "908d1ba5-dd47-4009-854e-4cc834f59559", + "Order": 2, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f83e6701-d207-4261-a0ce-5de4c94449ee", + "Order": 3, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b2521441-a2c1-41ba-af12-5b5ce51208b7", + "Order": 4, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "8f9dbfe6-b955-4a56-9319-7315c1c03b14", + "Order": 5, + "DeletedAt": null, + "EntryId": "db8ade5b-dcab-4ccf-89d3-0c4cbc30189b", + "Definition": {}, + "Gloss": { + "en": "12", + "pt": "12" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bd6fc43-b491-4fcf-9f4e-dd748187e17c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kabudula" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b844486-8001-4dec-bc3f-1836662621ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bd6fc43-b491-4fcf-9f4e-dd748187e17c", + "Definition": {}, + "Gloss": { + "en": "pants", + "pt": "calc\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "49c60aa9-b119-41ab-a7f6-07a8f70e2ae1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth, Nyazeze George", + "Ws": "en" + } + ] + }, + "SenseId": "0b844486-8001-4dec-bc3f-1836662621ea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "329d1eae-07f8-44bd-bb9e-3b4d231235bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaciti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09f516ad-9d5a-442e-92a3-c4095e3e343c", + "Order": 1, + "DeletedAt": null, + "EntryId": "329d1eae-07f8-44bd-bb9e-3b4d231235bb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "round seat w/ 3 legs of the herbal doctor which the spirit sits on (or the herbal doctor or sick one in its stead)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "seat", + "pt": "asento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "bc5b4896-b65c-489f-90f1-1cd020eb4d92", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "09f516ad-9d5a-442e-92a3-c4095e3e343c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d59272b3-45dc-40d6-990b-224ec777ac1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kadera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "319aff20-994b-4b4d-b28c-15238443f956", + "Order": 1, + "DeletedAt": null, + "EntryId": "d59272b3-45dc-40d6-990b-224ec777ac1e", + "Definition": {}, + "Gloss": { + "en": "chair", + "pt": "cadeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8f97661-5ea1-4c18-803f-10e9f38a6f64", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "319aff20-994b-4b4d-b28c-15238443f956", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2c214461-c5d7-482b-a6c7-d18e4e899dea", + "DeletedAt": null, + "LexemeForm": { + "seh": "kadzako" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "edc77eed-15d6-45df-90ce-4d484442249f", + "Order": 1, + "DeletedAt": null, + "EntryId": "2c214461-c5d7-482b-a6c7-d18e4e899dea", + "Definition": {}, + "Gloss": { + "en": "coat", + "pt": "casaco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "650abe83-c5c8-441c-9ef1-3837ed46f6d7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "edc77eed-15d6-45df-90ce-4d484442249f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1d18bbd-8d45-4db5-b57f-cb7165afd721", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaidi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3ec38f1b-6eef-427f-8ff3-b8c2954de6a6", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1d18bbd-8d45-4db5-b57f-cb7165afd721", + "Definition": {}, + "Gloss": { + "en": "prison", + "pt": "prisa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "54ba6106-eee3-463f-880d-8b8953a545cf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3ec38f1b-6eef-427f-8ff3-b8c2954de6a6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f1016cd-1727-4dca-b053-c02d3720cf58", + "DeletedAt": null, + "LexemeForm": { + "seh": "kak" + }, + "CitationForm": { + "seh": "kaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4ffd0f96-ebcb-41b4-b896-e97d3dceb36a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f1016cd-1727-4dca-b053-c02d3720cf58", + "Definition": { + "en": { + "Spans": [ + { + "Text": "put skin on a drum", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ponhar pele no batuk", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "drum skinning", + "pt": "ponhar pele" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96cfb952-99b5-4602-8c16-3f8b620c4ecf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4ffd0f96-ebcb-41b4-b896-e97d3dceb36a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "940ae3b9-85bb-4be0-8632-987dc467eb9f", + "DeletedAt": null, + "LexemeForm": { + "seh": "kakamir" + }, + "CitationForm": { + "seh": "kakamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2826ed49-b83a-4b50-9c8a-05197cc50420", + "Order": 1, + "DeletedAt": null, + "EntryId": "940ae3b9-85bb-4be0-8632-987dc467eb9f", + "Definition": {}, + "Gloss": { + "en": "insist", + "pt": "insistir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e18cd0a-bfd7-47d6-8162-c290c60035aa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2826ed49-b83a-4b50-9c8a-05197cc50420", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7a918310-c086-441a-882f-04f9d8c77388", + "DeletedAt": null, + "LexemeForm": { + "seh": "kakamwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f9d28c7e-718b-4694-8d27-d1b8060ae4e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "7a918310-c086-441a-882f-04f9d8c77388", + "Definition": {}, + "Gloss": { + "en": "really", + "pt": "perfeitamente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6781f7d1-4438-4e66-8a78-66ba55713390", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f9d28c7e-718b-4694-8d27-d1b8060ae4e0", + "DeletedAt": null + } + ] + }, + { + "Id": "fb259a5a-3ee7-4a7c-b197-59c492d89384", + "Order": 2, + "DeletedAt": null, + "EntryId": "7a918310-c086-441a-882f-04f9d8c77388", + "Definition": {}, + "Gloss": { + "en": "perfect", + "pt": "mesmo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "429fb479-0fc8-4c03-a647-2116dd9b5d00", + "DeletedAt": null, + "LexemeForm": { + "seh": "kugawika" + }, + "CitationForm": { + "seh": "kakugawika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cd8ecd88-36e9-4e60-95ac-545ca3716063", + "Order": 1, + "DeletedAt": null, + "EntryId": "429fb479-0fc8-4c03-a647-2116dd9b5d00", + "Definition": { + "en": { + "Spans": [ + { + "Text": "very small part", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "particle", + "pt": "parti\u0301cula" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5058c6a7-5c99-4d60-824d-1598edc22bae", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cd8ecd88-36e9-4e60-95ac-545ca3716063", + "DeletedAt": null + } + ] + }, + { + "Id": "7fca8e82-3e78-4cb6-88fd-6f4e15177efb", + "Order": 2, + "DeletedAt": null, + "EntryId": "429fb479-0fc8-4c03-a647-2116dd9b5d00", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small divisions", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "coisa dividida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "division", + "pt": "divisa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c45f33ae-cd4e-4ea1-9aff-527f9e951d0e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kale" + }, + "CitationForm": { + "seh": "kale" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "90b31605-76db-4597-baa8-45ec4fda706d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c45f33ae-cd4e-4ea1-9aff-527f9e951d0e", + "Definition": {}, + "Gloss": { + "en": "long time", + "pt": "muito tempo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8aa65921-1cb6-4f21-bf10-66049c1e6a8e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndafika kale", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "I arrived long ago.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Chegei ha\u0301 muito tempo.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "90b31605-76db-4597-baa8-45ec4fda706d", + "DeletedAt": null + }, + { + "Id": "b33e242f-edc1-413f-b915-c89a3bd8f6de", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kale cino", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "long ago", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ha\u0301 muito tempo", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "90b31605-76db-4597-baa8-45ec4fda706d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c4c2dc23-9b9b-48da-b05a-ffaaa00c1206", + "DeletedAt": null, + "LexemeForm": { + "seh": "kale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d6e01571-4afc-4a63-93d6-d252408e2eeb", + "Order": 1, + "DeletedAt": null, + "EntryId": "c4c2dc23-9b9b-48da-b05a-ffaaa00c1206", + "Definition": {}, + "Gloss": { + "en": "old", + "pt": "antigo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62193672-2706-4fd0-b8d1-80be39541069", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d6e01571-4afc-4a63-93d6-d252408e2eeb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad493a2f-f091-41cf-8cfc-ef226e329d85", + "DeletedAt": null, + "LexemeForm": { + "seh": "kalene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4e52fc2c-f04f-4397-bf00-9145be555027", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad493a2f-f091-41cf-8cfc-ef226e329d85", + "Definition": {}, + "Gloss": { + "en": "long ago", + "pt": "muito tempo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1e00691b-0be1-454b-9c95-589bf6e5b1f6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4e52fc2c-f04f-4397-bf00-9145be555027", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30ffd501-7b51-40c4-96ca-2d3bb2c4465a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "18350c76-4bb9-4557-94e5-001eeca8c77a", + "Order": 1, + "DeletedAt": null, + "EntryId": "30ffd501-7b51-40c4-96ca-2d3bb2c4465a", + "Definition": {}, + "Gloss": { + "en": "long ago", + "pt": "antigo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f97b5011-30b3-467c-b883-dea37bd61631", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "anthu a kali", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "people of long ago, ancestors", + "Ws": "seh" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pessoas atigas, antepassados", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "18350c76-4bb9-4557-94e5-001eeca8c77a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a082d087-1955-4ecd-b823-c0639cbd1b2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4a8349d7-374b-4a3f-a008-2a8d036a6c72", + "Order": 1, + "DeletedAt": null, + "EntryId": "a082d087-1955-4ecd-b823-c0639cbd1b2e", + "Definition": {}, + "Gloss": { + "en": "tortoise", + "pt": "ca\u0301gado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b2e8958-a477-475a-beb7-59f0c154952b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4a8349d7-374b-4a3f-a008-2a8d036a6c72", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f2f5115-5cb0-4112-9c58-dd4b5861b3e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "kambalame" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab06a13e-8c8a-4c08-ace1-1dbe151d6a1f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f2f5115-5cb0-4112-9c58-dd4b5861b3e5", + "Definition": {}, + "Gloss": { + "en": "small bird", + "pt": "passarinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "561e883d-9e89-4b36-a2c0-b0837e5f54c3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ab06a13e-8c8a-4c08-ace1-1dbe151d6a1f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "708ff551-9116-458a-b6a9-ea8eab0beff0", + "DeletedAt": null, + "LexemeForm": { + "seh": "kambaz" + }, + "CitationForm": { + "seh": "kambaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d5eaedae-e470-4785-9b74-f67507701cd0", + "Order": 1, + "DeletedAt": null, + "EntryId": "708ff551-9116-458a-b6a9-ea8eab0beff0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "crawl, for a person", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "gatinhar, pessoa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "crawl", + "pt": "gatinhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "a2bbf179-8d38-4d2e-84cd-0e00bb6c74f3", + "Name": { + "en": "Crawl" + }, + "Code": "7.2.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2393616-7b1b-4b5b-a9b3-e581c0c0aab0", + "DeletedAt": null, + "LexemeForm": { + "seh": "kambuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c5a05a9b-8a7b-4b30-90b3-a22a0ede868c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2393616-7b1b-4b5b-a9b3-e581c0c0aab0", + "Definition": {}, + "Gloss": { + "en": "small kid", + "pt": "cabritinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f60915b-e5ac-498c-bc2c-d7b46f680bd7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c5a05a9b-8a7b-4b30-90b3-a22a0ede868c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "acbf736f-ea4c-40f4-b174-b5efa5b022d8", + "DeletedAt": null, + "LexemeForm": { + "seh": "kameru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "80130c84-3eb0-4670-b896-4cf854eb6103", + "Order": 1, + "DeletedAt": null, + "EntryId": "acbf736f-ea4c-40f4-b174-b5efa5b022d8", + "Definition": {}, + "Gloss": { + "en": "camel", + "pt": "camelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "e545baab-581d-4af8-81f2-5a884e272349", + "Name": { + "en": "Beast of burden" + }, + "Code": "6.3.1.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "56ce2232-4d60-4688-9048-d95e13898b50", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "80130c84-3eb0-4670-b896-4cf854eb6103", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa1e31cf-97aa-4fb0-b2ef-b55fb783de92", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamidza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "318d5b28-51b2-4924-88a0-044bbbf75cf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa1e31cf-97aa-4fb0-b2ef-b55fb783de92", + "Definition": {}, + "Gloss": { + "en": "shirt", + "pt": "camisa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5fd5fcf4-d9ac-456e-9bda-be311249ceb9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "318d5b28-51b2-4924-88a0-044bbbf75cf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a1d6328-c250-436b-9fa0-ff3d8a4f85fc", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamul" + }, + "CitationForm": { + "seh": "kamula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24907a9a-fa88-435d-bdd1-2a61fc122e4a", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a1d6328-c250-436b-9fa0-ff3d8a4f85fc", + "Definition": {}, + "Gloss": { + "en": "squeeze", + "pt": "espremer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b0d33b6d-0a9e-4106-9259-d28014e5e098", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "24907a9a-fa88-435d-bdd1-2a61fc122e4a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "052cdbd0-ee5c-4750-8bda-ba86be19659b", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamunthu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b80af28-d70b-41fa-b3e4-5a0e1431a220", + "Order": 1, + "DeletedAt": null, + "EntryId": "052cdbd0-ee5c-4750-8bda-ba86be19659b", + "Definition": {}, + "Gloss": { + "en": "small man", + "pt": "homenzinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "91848310-c982-4e1b-9e4b-1cf03edc9c1d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5b80af28-d70b-41fa-b3e4-5a0e1431a220", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f17a39c-63af-4142-a668-b2b7f7b04be7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamuti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "604ebd63-fd39-460e-a0ca-93d6d9443e41", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f17a39c-63af-4142-a668-b2b7f7b04be7", + "Definition": {}, + "Gloss": { + "en": "small tree", + "pt": "a\u0301rvore pequena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f748289-34c9-4cfe-a2f8-87c853de6f4c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George", + "Ws": "en" + } + ] + }, + "SenseId": "604ebd63-fd39-460e-a0ca-93d6d9443e41", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7a4585b7-b6f9-4be1-9c25-c3ba8fd04f85", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamwana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "511eb02f-a823-4d38-aeb7-5a35da034431", + "Order": 1, + "DeletedAt": null, + "EntryId": "7a4585b7-b6f9-4be1-9c25-c3ba8fd04f85", + "Definition": {}, + "Gloss": { + "en": "small child", + "pt": "criancinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "53e99ecb-d4bd-493f-9250-4c935030bfa1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George", + "Ws": "en" + } + ] + }, + "SenseId": "511eb02f-a823-4d38-aeb7-5a35da034431", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08c1e501-49e8-4f00-9b2c-15dccf56d807", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamwanambwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7edf14c7-8c33-4222-8eea-e99b6e727de2", + "Order": 1, + "DeletedAt": null, + "EntryId": "08c1e501-49e8-4f00-9b2c-15dccf56d807", + "Definition": {}, + "Gloss": { + "en": "little dog", + "pt": "ca\u0303ozinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5fd7077-b10c-4ebe-8b75-2f31def21782", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "7edf14c7-8c33-4222-8eea-e99b6e727de2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "416cf9e4-98d6-4296-8c42-2e943ea01de7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kang\u0027ombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9134f0c8-c69f-49d4-af7d-86d170ffff68", + "Order": 1, + "DeletedAt": null, + "EntryId": "416cf9e4-98d6-4296-8c42-2e943ea01de7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small cow or bull", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "small cow", + "pt": "boizinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ea3cb7b6-d61e-4850-b96d-cb9f1222c250", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22; George", + "Ws": "en" + } + ] + }, + "SenseId": "9134f0c8-c69f-49d4-af7d-86d170ffff68", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "066cbf82-7cd9-4cf8-a4c7-c62a84da72ea", + "DeletedAt": null, + "LexemeForm": { + "seh": "kanwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", + "Order": 1, + "DeletedAt": null, + "EntryId": "066cbf82-7cd9-4cf8-a4c7-c62a84da72ea", + "Definition": {}, + "Gloss": { + "en": "mouth inside", + "pt": "boca interior" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a6aa1b86-bdda-408c-b658-632a40a283c8", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mpaka nyama ifikire pa n\u0027kanwa mwace (Sulo 023)", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "until meat arrives in mouth his", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ate\u0301 a carne chega na boca d\u0027ele", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", + "DeletedAt": null + }, + { + "Id": "fad40892-bf12-4a19-ac0e-d7414e306dfd", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khanwa mbee na kubira", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "always crying", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "lit.\u0022boca aberta por chorar\u0022 id.\u0022sempre chora\u0022", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "17a07bfd-3e70-4daf-ad3f-47d7c57d70ee", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "10863cb5-f113-4a37-beaa-a6bf5430f27b", + "DeletedAt": null, + "LexemeForm": { + "seh": "kanyumba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01efa877-a8ff-43d5-9912-51eb18a83af9", + "Order": 1, + "DeletedAt": null, + "EntryId": "10863cb5-f113-4a37-beaa-a6bf5430f27b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small house or room", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "casa ou quarto pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "small house", + "pt": "casa pequena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61ea84eb-3664-4921-822b-2da8cbf1905e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "01efa877-a8ff-43d5-9912-51eb18a83af9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "24d12f3f-4f16-40c4-b331-c2b59c68e9dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "karu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bd3e2a9-e928-42b1-843f-6cde97a3ffa8", + "Order": 1, + "DeletedAt": null, + "EntryId": "24d12f3f-4f16-40c4-b331-c2b59c68e9dd", + "Definition": {}, + "Gloss": { + "en": "car", + "pt": "carro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac0435bc-825b-48da-bdc6-a61f1bc27008", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4bd3e2a9-e928-42b1-843f-6cde97a3ffa8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1412748b-d8af-435a-a081-32089eb6d5d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "kati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6b4af1f4-5c2f-400e-bb9f-1c0ab4e75492", + "Order": 1, + "DeletedAt": null, + "EntryId": "1412748b-d8af-435a-a081-32089eb6d5d1", + "Definition": {}, + "Gloss": { + "en": "middle", + "pt": "meio" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cea7d804-408e-4089-b79b-67b342367076", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6b4af1f4-5c2f-400e-bb9f-1c0ab4e75492", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "bd00c83a-e1f3-4f9e-a94a-a6d6d4e90735", + "MaybeId": "bd00c83a-e1f3-4f9e-a94a-a6d6d4e90735", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "1412748b-d8af-435a-a081-32089eb6d5d1", + "ComponentSenseId": null, + "ComponentHeadword": "kati" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kati-na-kati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d958b91d-fdcf-40a9-960e-8d4374fbaabc", + "Order": 1, + "DeletedAt": null, + "EntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "Definition": {}, + "Gloss": { + "en": "very middle", + "pt": "mesmo meio" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "bd00c83a-e1f3-4f9e-a94a-a6d6d4e90735", + "MaybeId": "bd00c83a-e1f3-4f9e-a94a-a6d6d4e90735", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "1412748b-d8af-435a-a081-32089eb6d5d1", + "ComponentSenseId": null, + "ComponentHeadword": "kati" + }, + { + "Id": "de3091a6-abfe-4ab7-b1d6-1c2cdfec39c1", + "MaybeId": "de3091a6-abfe-4ab7-b1d6-1c2cdfec39c1", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c33a461f-8090-4473-a3cb-08bf012d9cd7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kauta" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b44df76-bd2d-44b9-b086-0f1426f1a38f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c33a461f-8090-4473-a3cb-08bf012d9cd7", + "Definition": {}, + "Gloss": { + "en": "little bow", + "pt": "arco pequeno" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a572e9fd-37be-4aad-b67e-bf944aaaa175", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:22", + "Ws": "en" + } + ] + }, + "SenseId": "6b44df76-bd2d-44b9-b086-0f1426f1a38f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ada19ec5-676a-4af9-baab-a0db08efa479", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaxa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "80680b95-8ea8-4951-937e-0d3f5ef81de4", + "Order": 1, + "DeletedAt": null, + "EntryId": "ada19ec5-676a-4af9-baab-a0db08efa479", + "Definition": {}, + "Gloss": { + "en": "box", + "pt": "caixa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b16dcb42-d93b-413d-b595-59caafb220a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazari" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72a474a7-7a03-42a1-9a9c-9add30627592", + "Order": 1, + "DeletedAt": null, + "EntryId": "b16dcb42-d93b-413d-b595-59caafb220a5", + "Definition": {}, + "Gloss": { + "en": "marry", + "pt": "casar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1767583-d892-47c9-b3bf-6ca79d12296a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "72a474a7-7a03-42a1-9a9c-9add30627592", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21d201da-c91b-4b10-a004-85e69e6864ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "94f4937a-3404-4d37-8cd8-027547d1b381", + "Order": 1, + "DeletedAt": null, + "EntryId": "21d201da-c91b-4b10-a004-85e69e6864ab", + "Definition": {}, + "Gloss": { + "en": "feminine", + "pt": "feminina" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2ba16f4-50bd-4594-8c74-73ab0f07141a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "paka ikazi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "gato female", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "gato feminia", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "94f4937a-3404-4d37-8cd8-027547d1b381", + "DeletedAt": null + }, + { + "Id": "346dfe93-3433-43f5-af8e-db149eae8833", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mwana nkazi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "daughter", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "filha", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "94f4937a-3404-4d37-8cd8-027547d1b381", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7b5df550-a3ac-4719-bf89-c358a67a0bdf", + "DeletedAt": null, + "LexemeForm": { + "seh": "kha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "322825e9-dac9-46f5-afb5-f8b766b23c16", + "Order": 1, + "DeletedAt": null, + "EntryId": "7b5df550-a3ac-4719-bf89-c358a67a0bdf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "imperfect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "imperfeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "IMP", + "pt": "IMP" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "70ee8eb4-fc68-4a09-8074-9b51c70d3c3c", + "Order": 2, + "DeletedAt": null, + "EntryId": "7b5df550-a3ac-4719-bf89-c358a67a0bdf", + "Definition": {}, + "Gloss": { + "en": "IMP", + "pt": "IMP" + }, + "PartOfSpeech": { + "Id": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "Name": { + "en": "Irregular Verb - li" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c2ecd396-b01a-4627-bf6a-fccddce51b20", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaindi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "31ffccc7-f41d-4d9c-b82c-dedb94113c20", + "Order": 1, + "DeletedAt": null, + "EntryId": "c2ecd396-b01a-4627-bf6a-fccddce51b20", + "Definition": {}, + "Gloss": { + "en": "type", + "pt": "tipo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ecbd775-4ccc-46a9-937a-5b83be150b93", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "31ffccc7-f41d-4d9c-b82c-dedb94113c20", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c078a8ef-ebe9-4ef8-8086-17daeb33539a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9ba6dc47-1937-4a0c-bbf4-43464a8ce714", + "Order": 1, + "DeletedAt": null, + "EntryId": "c078a8ef-ebe9-4ef8-8086-17daeb33539a", + "Definition": {}, + "Gloss": { + "en": "cucumber", + "pt": "pepino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e3d610d-628a-4912-a386-1401c7e67c85", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Orth; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "9ba6dc47-1937-4a0c-bbf4-43464a8ce714", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "DeletedAt": null, + "LexemeForm": { + "seh": "khal" + }, + "CitationForm": { + "seh": "khala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4d37c94f-4809-4c0f-8082-1af196273387", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ser, estar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "be", + "pt": "ser" + }, + "PartOfSpeech": { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc904ff9-38c5-4388-ab09-e8e872ae9637", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "4d37c94f-4809-4c0f-8082-1af196273387", + "DeletedAt": null + } + ] + }, + { + "Id": "43505c77-2177-4fd9-b646-01366fc6d214", + "Order": 2, + "DeletedAt": null, + "EntryId": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "Definition": {}, + "Gloss": { + "en": "to sit", + "pt": "sentar" + }, + "PartOfSpeech": { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "373e19da-a2fe-4b25-ac07-22dae481675a", + "Order": 3, + "DeletedAt": null, + "EntryId": "c9e55c8c-2753-4576-b083-890e6f85a3f7", + "Definition": {}, + "Gloss": { + "en": "to live", + "pt": "morar" + }, + "PartOfSpeech": { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fabd39a6-0394-4907-9aff-d0e070169dc3", + "DeletedAt": null, + "LexemeForm": { + "seh": "khalir" + }, + "CitationForm": { + "seh": "khalira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce47cec8-8bfd-45ae-9f97-20dcf5d03892", + "Order": 1, + "DeletedAt": null, + "EntryId": "fabd39a6-0394-4907-9aff-d0e070169dc3", + "Definition": {}, + "Gloss": { + "en": "wait for", + "pt": "esperar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "78e2d320-7761-4dfa-8d5d-2d86c313ac65", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "ce47cec8-8bfd-45ae-9f97-20dcf5d03892", + "DeletedAt": null + } + ] + }, + { + "Id": "eee643f8-98a4-499d-9d23-4cc23bab31ef", + "Order": 2, + "DeletedAt": null, + "EntryId": "fabd39a6-0394-4907-9aff-d0e070169dc3", + "Definition": {}, + "Gloss": { + "en": "sit on", + "pt": "sentar em cima" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32e3d336-606a-4c86-a365-7c80027416ca", + "DeletedAt": null, + "LexemeForm": { + "seh": "khanda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0d2f5079-6737-4fde-97cb-006da839a693", + "Order": 1, + "DeletedAt": null, + "EntryId": "32e3d336-606a-4c86-a365-7c80027416ca", + "Definition": { + "en": { + "Spans": [ + { + "Text": "skin (general)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "skin", + "pt": "pele" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "df2b9d7a-9b90-4704-8bc3-11dcffe985f4", + "Name": { + "en": "Skin" + }, + "Code": "2.1.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a7f8fd55-10bd-400b-afcc-ed0c6c12788e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Orth; Wordlist; George", + "Ws": "en" + } + ] + }, + "SenseId": "0d2f5079-6737-4fde-97cb-006da839a693", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03d441d7-e915-46d5-87f6-87f5567d41c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "khangala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c1ff827-abd7-4cb3-803d-3c11dba1ff5c", + "Order": 1, + "DeletedAt": null, + "EntryId": "03d441d7-e915-46d5-87f6-87f5567d41c2", + "Definition": {}, + "Gloss": { + "en": "stretcher", + "pt": "maca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e842bd31-e26e-4da3-bf31-0e337740c94f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0c1ff827-abd7-4cb3-803d-3c11dba1ff5c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "82958554-f665-4e0d-b47b-b977b41f9400", + "DeletedAt": null, + "LexemeForm": { + "seh": "kharakaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f7c942cb-bbf4-444c-a244-ce6ac9bd36fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "82958554-f665-4e0d-b47b-b977b41f9400", + "Definition": { + "en": { + "Spans": [ + { + "Text": "all of the Family Mustelidae except otter, genete and civet", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "polecat", + "pt": "doninha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "56ef3f06-7fb9-462e-a7d0-517f3ce1623f", + "Name": { + "en": "Carnivore" + }, + "Code": "1.6.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3e3cdd72-5fe3-40f6-ae85-3bb20529fe24", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f7c942cb-bbf4-444c-a244-ce6ac9bd36fa", + "DeletedAt": null + } + ] + }, + { + "Id": "827e2351-ff14-4430-89e4-8a02747e0f94", + "Order": 2, + "DeletedAt": null, + "EntryId": "82958554-f665-4e0d-b47b-b977b41f9400", + "Definition": {}, + "Gloss": { + "en": "mongoose", + "pt": "mangusto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "7b4ed3bb-aea1-4906-8bab-37c602f04a6a", + "Order": 3, + "DeletedAt": null, + "EntryId": "82958554-f665-4e0d-b47b-b977b41f9400", + "Definition": {}, + "Gloss": { + "en": "badger", + "pt": "texugo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "67bad6ec-3326-4bea-9f8e-1d27ae548949", + "DeletedAt": null, + "LexemeForm": { + "seh": "khazik" + }, + "CitationForm": { + "seh": "khazika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f363c0f1-ede7-44f0-bd1b-75ba816911aa", + "Order": 1, + "DeletedAt": null, + "EntryId": "67bad6ec-3326-4bea-9f8e-1d27ae548949", + "Definition": {}, + "Gloss": { + "en": "let sit", + "pt": "deixar sentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b026b31e-e15c-46c1-a64d-fa7b2ba3d4bf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f363c0f1-ede7-44f0-bd1b-75ba816911aa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5cb3ce5-cbf9-4c51-8d1f-5964ce10a703", + "DeletedAt": null, + "LexemeForm": { + "seh": "khobok" + }, + "CitationForm": { + "seh": "khoboka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5cb3ce5-cbf9-4c51-8d1f-5964ce10a703", + "Definition": { + "en": { + "Spans": [ + { + "Text": "break by hand", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "quebrar a ma\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "break", + "pt": "quebrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b5b2f49-3158-4a05-a2d0-2c8d33f49478", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", + "DeletedAt": null + }, + { + "Id": "139743f6-1f4b-4a9f-b268-caad4d133d1b", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "wa kukhoboka ntima", + "Ws": "en" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "tolerant", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tolerante", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "9c29d3f5-8dd8-4dd7-90a3-a71ad81c0cc1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "43553bc2-73ef-426a-b149-4c1333bff68f", + "DeletedAt": null, + "LexemeForm": { + "seh": "khobwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6e63fbb8-5f43-44f0-b0b5-a27f49457178", + "Order": 1, + "DeletedAt": null, + "EntryId": "43553bc2-73ef-426a-b149-4c1333bff68f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large basket made of bamboo for carrying food", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "um cesto grande feito para transportar comida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "basket large", + "pt": "cesta grande" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b6cab3da-e2b1-4691-9758-72fdd6c10e55", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6e63fbb8-5f43-44f0-b0b5-a27f49457178", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "43034558-9135-4a67-a1c5-b02d1ea08e56", + "DeletedAt": null, + "LexemeForm": { + "seh": "khoko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6aa73def-278e-4751-b031-c9878ad3b838", + "Order": 1, + "DeletedAt": null, + "EntryId": "43034558-9135-4a67-a1c5-b02d1ea08e56", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tree bark", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "casca de a\u0301rvore", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bark", + "pt": "casca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "caba7528-3d3a-4f70-8f89-1f34c895afac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6aa73def-278e-4751-b031-c9878ad3b838", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "958a4232-c675-4eee-bba4-4c23490e0858", + "DeletedAt": null, + "LexemeForm": { + "seh": "kole" + }, + "CitationForm": { + "seh": "khole" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35b11b7d-8b22-4ad9-945b-a537452d3a36", + "Order": 1, + "DeletedAt": null, + "EntryId": "958a4232-c675-4eee-bba4-4c23490e0858", + "Definition": {}, + "Gloss": { + "en": "cloud", + "pt": "nuvem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "10348a7d-b7a3-49f5-9985-c86a4a8e9366", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "35b11b7d-8b22-4ad9-945b-a537452d3a36", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a5f1aac-c356-46f5-a5dc-eb73b7ba43ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50240252-ca03-40bb-8d69-7d6762997929", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a5f1aac-c356-46f5-a5dc-eb73b7ba43ae", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large hen", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "galinha, grande feminina", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hen", + "pt": "galinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fc9dfdc9-dc5c-4361-9155-416edd2da846", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "50240252-ca03-40bb-8d69-7d6762997929", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9095fe93-2207-4433-92cc-0ae1c22b55d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f44c1e36-2638-443b-83b1-6eb767cc8f54", + "Order": 1, + "DeletedAt": null, + "EntryId": "9095fe93-2207-4433-92cc-0ae1c22b55d7", + "Definition": {}, + "Gloss": { + "en": "generation", + "pt": "gerac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "371cf322-2dad-4b29-b616-b63d0bd2e616", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholokolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "06e54dd2-932a-4bd0-a72f-f33bf6285750", + "Order": 1, + "DeletedAt": null, + "EntryId": "371cf322-2dad-4b29-b616-b63d0bd2e616", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lower back, especially of animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "costa, parte em baixo, especialmente de animal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "lower back", + "pt": "costa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "31060bb0-f765-4e93-b82b-39d3c4ab703b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "06e54dd2-932a-4bd0-a72f-f33bf6285750", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31accc5a-c802-4cd5-a97f-0d5dd5435a1d", + "DeletedAt": null, + "LexemeForm": { + "seh": "kholongo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98dafe91-7baa-41bf-9cb3-cd20fff87679", + "Order": 1, + "DeletedAt": null, + "EntryId": "31accc5a-c802-4cd5-a97f-0d5dd5435a1d", + "Definition": {}, + "Gloss": { + "en": "throat", + "pt": "garganta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ae0280e-31e1-4444-910c-f42386248d64", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "98dafe91-7baa-41bf-9cb3-cd20fff87679", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5a930f1-211d-41fd-b65d-0f0b3405e1c5", + "DeletedAt": null, + "LexemeForm": { + "seh": "khomer" + }, + "CitationForm": { + "seh": "khomera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9dae3ae5-d349-4929-8fd0-d900777cdcde", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5a930f1-211d-41fd-b65d-0f0b3405e1c5", + "Definition": {}, + "Gloss": { + "en": "preach", + "pt": "pregar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2f7374c2-eaea-437b-8718-c24d95d83fa8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9dae3ae5-d349-4929-8fd0-d900777cdcde", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eaa9be44-bf1b-41f2-a407-6da70326a544", + "DeletedAt": null, + "LexemeForm": { + "seh": "khomole" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f7551d4a-a6a8-431b-82ae-cc87738cf29d", + "Order": 1, + "DeletedAt": null, + "EntryId": "eaa9be44-bf1b-41f2-a407-6da70326a544", + "Definition": {}, + "Gloss": { + "en": "cliff", + "pt": "precipi\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5de81c59-db4b-47af-917f-58436e859311", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f7551d4a-a6a8-431b-82ae-cc87738cf29d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "310718ab-8b11-40e0-b7bf-5e8548c03831", + "DeletedAt": null, + "LexemeForm": { + "seh": "khond" + }, + "CitationForm": { + "seh": "khonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "269f11ac-1cb3-4d45-885f-2b321b95e190", + "Order": 1, + "DeletedAt": null, + "EntryId": "310718ab-8b11-40e0-b7bf-5e8548c03831", + "Definition": {}, + "Gloss": { + "en": "refuse", + "pt": "recusar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b7739286-2199-4496-9f45-f0cf58260ab0", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khonda nkazi", + "Ws": "en" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "divorce wife", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "269f11ac-1cb3-4d45-885f-2b321b95e190", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "36c63646-7e40-4355-b322-6b450ce6607a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khoni" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f2cbdf3f-b54d-4bdb-9dc7-b5b9a5e55722", + "Order": 1, + "DeletedAt": null, + "EntryId": "36c63646-7e40-4355-b322-6b450ce6607a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "time between June and August", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "winter", + "pt": "inverno" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "527cafb9-837b-4f8b-91d5-72d369295f9f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f2cbdf3f-b54d-4bdb-9dc7-b5b9a5e55722", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "220d10d5-3dab-47fb-8623-4ca86601d9e6", + "DeletedAt": null, + "LexemeForm": { + "seh": "khono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bec2e73-a2fa-4be6-976f-ba6ff9f7acc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "220d10d5-3dab-47fb-8623-4ca86601d9e6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "from tip of outstreached arm to center of chest, about 1 meter", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "um metro, de dedo ate\u0301 meio de peito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "measure", + "pt": "um metro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a31d3bdf-a905-4551-89c2-2caa9180918d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4bec2e73-a2fa-4be6-976f-ba6ff9f7acc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f873c3eb-89a9-4bb6-84fc-cd56d6a75579", + "DeletedAt": null, + "LexemeForm": { + "seh": "khosi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97259073-9a23-4056-8f5d-6a500118ec61", + "Order": 1, + "DeletedAt": null, + "EntryId": "f873c3eb-89a9-4bb6-84fc-cd56d6a75579", + "Definition": {}, + "Gloss": { + "en": "neck", + "pt": "pescoc\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b1166bed-2f87-4981-acbc-122b29ac3466", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Alves; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "97259073-9a23-4056-8f5d-6a500118ec61", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8df2fe4c-81b5-48d4-a306-af165ad7840f", + "DeletedAt": null, + "LexemeForm": { + "seh": "khosol" + }, + "CitationForm": { + "seh": "khosola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "798afb72-f49f-478d-a1b9-1bb958494e15", + "Order": 1, + "DeletedAt": null, + "EntryId": "8df2fe4c-81b5-48d4-a306-af165ad7840f", + "Definition": {}, + "Gloss": { + "en": "cough", + "pt": "tossir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6b74debf-2dc1-4f3e-861f-000daf631977", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "798afb72-f49f-478d-a1b9-1bb958494e15", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c5daee51-337f-4705-bfa1-22a048ad4ec7", + "DeletedAt": null, + "LexemeForm": { + "seh": "khu" + }, + "CitationForm": { + "seh": "khua" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c37de104-6633-4a7f-8334-fba322f0c89b", + "Order": 1, + "DeletedAt": null, + "EntryId": "c5daee51-337f-4705-bfa1-22a048ad4ec7", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "clamar, gritar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "shout", + "pt": "clamar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c32e0e69-8f1a-42ca-8d95-c4a33c786203", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c37de104-6633-4a7f-8334-fba322f0c89b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "44af4d61-fa9c-4b62-8d30-1c70c2e9361b", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuch" + }, + "CitationForm": { + "seh": "khucha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cddee31a-556f-4a76-8e75-2be21302d85f", + "Order": 1, + "DeletedAt": null, + "EntryId": "44af4d61-fa9c-4b62-8d30-1c70c2e9361b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "pull out (nail, tooth, etc.)", + "Ws": "pt" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "arrancar (prego, dente etc)", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "pull out", + "pt": "arrancar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45ecf106-f2b1-486b-8ffc-b3a9d05e9dae", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo037", + "Ws": "en" + } + ] + }, + "SenseId": "cddee31a-556f-4a76-8e75-2be21302d85f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bc35fbc-9a38-463f-89dd-6c83fe514c0b", + "DeletedAt": null, + "LexemeForm": { + "seh": "khulupir" + }, + "CitationForm": { + "seh": "khulupira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1331035e-4a2d-4ede-b72a-8db3d2893ea6", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bc35fbc-9a38-463f-89dd-6c83fe514c0b", + "Definition": {}, + "Gloss": { + "en": "trust", + "pt": "confiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c8c313f0-bbf5-47e6-9f23-3aeeeb44927b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Khulupirani Mulungu anakwangisani", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Confia em Deus para ti curar.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Meque, Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1331035e-4a2d-4ede-b72a-8db3d2893ea6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f48c2b04-b018-46da-8055-902de8688768", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbi" + }, + "CitationForm": { + "seh": "khumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a45d7be9-f4bc-4a75-a43e-4d6d8c281bc8", + "Order": 1, + "DeletedAt": null, + "EntryId": "f48c2b04-b018-46da-8055-902de8688768", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small temporary houses used by youth at harvest time, by extension, any small house", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "palhota, casota", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "small house", + "pt": "palhota" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc0f2c66-0df3-419d-b4b1-fa44c17dfacf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a45d7be9-f4bc-4a75-a43e-4d6d8c281bc8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "66797917-55bf-465a-a33d-f7a139c8f102", + "DeletedAt": null, + "LexemeForm": { + "seh": "khumi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d64ed827-1d47-45ee-b253-1cc55d13b5d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "66797917-55bf-465a-a33d-f7a139c8f102", + "Definition": {}, + "Gloss": { + "en": "ten", + "pt": "dez" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "50abc623-4d41-4ff5-8e32-c423bda442dc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "d64ed827-1d47-45ee-b253-1cc55d13b5d3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f06003df-dc08-456b-bcab-0efcad5a2d59", + "DeletedAt": null, + "LexemeForm": { + "seh": "makhundu" + }, + "CitationForm": { + "seh": "khundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e1687c0-3394-4bc4-8bed-26c96d07c0de", + "Order": 1, + "DeletedAt": null, + "EntryId": "f06003df-dc08-456b-bcab-0efcad5a2d59", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bank of a river, edge of a road,", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "margem de rio ou rua", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bank ", + "pt": "margem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14acb080-e726-4f2b-b06e-7f955ac451cd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1e1687c0-3394-4bc4-8bed-26c96d07c0de", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc51e684-384f-4275-91da-bd0052c6fc94", + "DeletedAt": null, + "LexemeForm": { + "seh": "khundu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc9f82a8-e346-4734-a417-bfaee9c1b4c7", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc51e684-384f-4275-91da-bd0052c6fc94", + "Definition": {}, + "Gloss": { + "en": "side", + "pt": "lado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f60bbcb-4a42-40b4-a83d-940fc6c7271e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "khundu yadidi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "right side of body", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "dc9f82a8-e346-4734-a417-bfaee9c1b4c7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e35c4ef3-df39-4b0a-862e-d86734268567", + "DeletedAt": null, + "LexemeForm": { + "seh": "khurudzik" + }, + "CitationForm": { + "seh": "khurudzika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ea927e6-ee78-4f63-8ef9-bf46ff0b33f0", + "Order": 1, + "DeletedAt": null, + "EntryId": "e35c4ef3-df39-4b0a-862e-d86734268567", + "Definition": {}, + "Gloss": { + "en": "quiet oneself", + "pt": "sossegar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00c966d7-58e9-4203-9c02-c49a893c9bba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5ea927e6-ee78-4f63-8ef9-bf46ff0b33f0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "577a001e-b29b-479b-b4d8-053d8b103508", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuruzik" + }, + "CitationForm": { + "seh": "khuruzika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "067e18f7-8adc-447e-a072-a68ca8ff978b", + "Order": 1, + "DeletedAt": null, + "EntryId": "577a001e-b29b-479b-b4d8-053d8b103508", + "Definition": {}, + "Gloss": { + "en": "quiet", + "pt": "quietar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "539975fb-2dd9-4612-9c91-e8a18df9ce55", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "067e18f7-8adc-447e-a072-a68ca8ff978b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "58df76e3-256f-42cf-a57b-22de6846ee04", + "DeletedAt": null, + "LexemeForm": { + "seh": "khut" + }, + "CitationForm": { + "seh": "khuta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f2c0668-a52f-4ce7-83e7-a492905e4f82", + "Order": 1, + "DeletedAt": null, + "EntryId": "58df76e3-256f-42cf-a57b-22de6846ee04", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be full or content", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "be satisfied", + "pt": "ficar farto" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5ca17d1c-d40e-4ac6-8142-ff18d68fc846", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndakuta", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Obrigado", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "0f2c0668-a52f-4ce7-83e7-a492905e4f82", + "DeletedAt": null + } + ] + }, + { + "Id": "6ee1d961-3dae-4b46-9579-e7e8e34163a6", + "Order": 2, + "DeletedAt": null, + "EntryId": "58df76e3-256f-42cf-a57b-22de6846ee04", + "Definition": {}, + "Gloss": { + "en": "thank you", + "pt": "obrigado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4c02bcc5-8a2f-43fe-a369-c0363ec19c84", + "DeletedAt": null, + "LexemeForm": { + "seh": "kutu" + }, + "CitationForm": { + "seh": "khutu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "17b61c66-081e-4e77-bd7e-dbd2aead3932", + "Order": 1, + "DeletedAt": null, + "EntryId": "4c02bcc5-8a2f-43fe-a369-c0363ec19c84", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ear, outer and inner", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "ear", + "pt": "orelha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f86b05ba-7ff3-48af-91fa-cfb0c406dd1d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist;Moreira:5, 19; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "17b61c66-081e-4e77-bd7e-dbd2aead3932", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8c78953-e837-4474-8240-981b2d0325c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuy" + }, + "CitationForm": { + "seh": "khuya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e1d99b98-3faa-4fdf-a883-46c21364b777", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8c78953-e837-4474-8240-981b2d0325c3", + "Definition": {}, + "Gloss": { + "en": "touch", + "pt": "tocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "09773319-dad3-4051-a2c1-24a438bec3a7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e1d99b98-3faa-4fdf-a883-46c21364b777", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81289505-9e49-4391-ba0e-5f8747a7e798", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwaz" + }, + "CitationForm": { + "seh": "khwaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fd5ae1c9-56af-4bf4-85ce-e9e984550c42", + "Order": 1, + "DeletedAt": null, + "EntryId": "81289505-9e49-4391-ba0e-5f8747a7e798", + "Definition": {}, + "Gloss": { + "en": "paint", + "pt": "pintar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4e50f47-8bdd-491c-be9c-9f72eb22cae8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "fd5ae1c9-56af-4bf4-85ce-e9e984550c42", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "942fb913-e648-473c-a6ee-a592dd8996db", + "DeletedAt": null, + "LexemeForm": { + "seh": "-ko" + }, + "CitationForm": { + "seh": "ko" + }, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", + "Order": 1, + "DeletedAt": null, + "EntryId": "942fb913-e648-473c-a6ee-a592dd8996db", + "Definition": {}, + "Gloss": { + "en": "LOC there", + "pt": "ali" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "403597a6-4605-423d-a9da-2c079427acfd", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kauka-ko eko noko kubazari-ko", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "8d3e8de3-e531-4c01-98ac-6143f6bf3559", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef57f28b-7741-4249-9572-63de6aa524d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eb8e1f58-2a22-4738-8250-ddba406418df", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef57f28b-7741-4249-9572-63de6aa524d7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "your", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "teu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2S", + "pt": "2S" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa12a4b4-201a-43c6-bcd1-8007cabebe1a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kobiri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "471f30f4-6ef1-4306-b7be-bc5292a92b29", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa12a4b4-201a-43c6-bcd1-8007cabebe1a", + "Definition": {}, + "Gloss": { + "en": "money", + "pt": "dinheiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1083c1ab-2f24-4010-b6bf-a0c2ea38f61d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "471f30f4-6ef1-4306-b7be-bc5292a92b29", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7a36d3f-29be-4508-bb2c-3e28f65e2c25", + "DeletedAt": null, + "LexemeForm": { + "seh": "kodi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "587d38d2-4461-4d26-bbb6-9ecf46861a1b", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7a36d3f-29be-4508-bb2c-3e28f65e2c25", + "Definition": {}, + "Gloss": { + "en": "and so", + "pt": "enta\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ef3cc4c-ef2b-4344-95b8-faa0e4dcb248", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "587d38d2-4461-4d26-bbb6-9ecf46861a1b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ce24f8f-28a2-43f4-8f05-df24e6966f17", + "DeletedAt": null, + "LexemeForm": { + "seh": "kokota" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6d090ec4-8a2f-4648-996d-426753654a77", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ce24f8f-28a2-43f4-8f05-df24e6966f17", + "Definition": {}, + "Gloss": { + "en": "net", + "pt": "rede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7afe24ea-dc5e-4328-a37c-4a33d1e0cb63", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6d090ec4-8a2f-4648-996d-426753654a77", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebcf2139-6c6b-4c96-9588-817d10cb18cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "kokot" + }, + "CitationForm": { + "seh": "kokota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c2a3421e-e0f7-4591-bf62-3380df4bf413", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebcf2139-6c6b-4c96-9588-817d10cb18cc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "eat the last bit, \u0022lick the bowl\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "comer ao u\u0301ltima", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "finish", + "pt": "acabar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5e859f07-e671-4130-8537-17505e4096fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c2a3421e-e0f7-4591-bf62-3380df4bf413", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6bbc75f-6863-4d8c-9a1a-c6c724a0712e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kokot" + }, + "CitationForm": { + "seh": "kokota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "738ab3d0-596e-4145-99cd-03dadec168f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6bbc75f-6863-4d8c-9a1a-c6c724a0712e", + "Definition": {}, + "Gloss": { + "en": "pull a net", + "pt": "puxar uma rede" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "573bf23a-3fde-4552-9263-62b7c71cad02", + "Name": { + "en": "Fish with net" + }, + "Code": "6.4.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e928d96-8913-41b4-aff6-927e9508d7d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "kolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "339f2931-7da0-4c4f-b4ca-7d4b3317f496", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e928d96-8913-41b4-aff6-927e9508d7d9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Vervet monkey", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "monkey", + "pt": "macaco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c676ebe3-5792-4b40-a937-626c83cf20f7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "339f2931-7da0-4c4f-b4ca-7d4b3317f496", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "543f5ea8-0d41-4458-a6d5-78ebcc290418", + "DeletedAt": null, + "LexemeForm": { + "seh": "kom" + }, + "CitationForm": { + "seh": "koma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a0f2cb7-2604-4be8-adc6-455e93e9c30e", + "Order": 1, + "DeletedAt": null, + "EntryId": "543f5ea8-0d41-4458-a6d5-78ebcc290418", + "Definition": {}, + "Gloss": { + "en": "it\u0027s good", + "pt": "e\u0301 util" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e94538a-c6db-4836-853d-31d8f25b76f1", + "DeletedAt": null, + "LexemeForm": { + "seh": "komerw" + }, + "CitationForm": { + "seh": "komerwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e233ed05-a5c5-4db6-a8a7-549a611a0ae5", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e94538a-c6db-4836-853d-31d8f25b76f1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "happy, content", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "happy", + "pt": "contente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "49656d86-f829-4e9f-a9c2-2a38adb5e6f8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "e233ed05-a5c5-4db6-a8a7-549a611a0ae5", + "DeletedAt": null + } + ] + }, + { + "Id": "78f9be23-f46e-40f8-b9ae-feeb0fe345e1", + "Order": 2, + "DeletedAt": null, + "EntryId": "1e94538a-c6db-4836-853d-31d8f25b76f1", + "Definition": {}, + "Gloss": { + "en": "well fed", + "pt": "bem comida" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0a06a99-bff0-433c-8266-9addb522284c", + "DeletedAt": null, + "LexemeForm": { + "seh": "komos" + }, + "CitationForm": { + "seh": "komosa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f1ecb5b4-ec5f-4b06-9b7c-fd48f0a0fc08", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0a06a99-bff0-433c-8266-9addb522284c", + "Definition": {}, + "Gloss": { + "en": "faint", + "pt": "desmair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2f8218f6-1590-4a2c-a29f-047862e9b386", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f1ecb5b4-ec5f-4b06-9b7c-fd48f0a0fc08", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f836f49-463d-46fb-a1c4-74cf0c1de50a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kones" + }, + "CitationForm": { + "seh": "konesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "acbba421-d6ef-4abb-b1b8-65c6402e4a49", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f836f49-463d-46fb-a1c4-74cf0c1de50a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "found guilty", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "achado culpado, perder raza\u0303o no acusac\u0327a\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "guilty", + "pt": "culpado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "0ede51d2-69bd-411e-97f9-da0d5118bbff", + "Name": { + "en": "Condemn, find guilty" + }, + "Code": "4.7.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b9820fe4-a44e-4384-b10b-e75d5dedba56", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "acbba421-d6ef-4abb-b1b8-65c6402e4a49", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49e7fddf-f91d-4132-8ea9-a08a783ad8ad", + "DeletedAt": null, + "LexemeForm": { + "seh": "kontho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2b9a6917-5d94-4491-a253-e34b36bde45e", + "Order": 1, + "DeletedAt": null, + "EntryId": "49e7fddf-f91d-4132-8ea9-a08a783ad8ad", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the same place", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ao mesmo lugar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "the same place", + "pt": "ao mesmo lugar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "859cc13f-c7da-4330-96cd-a0af01b00385", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bale wako azati bwera kudaenda iye? Ande, ali kontho.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Your brother has not yet returned from where he went? Yes, he is in the same place.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Teu irmao ainde nao voltou para onde foi? Sim, esta\u0301 ainde.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "2b9a6917-5d94-4491-a253-e34b36bde45e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cb13003f-6131-4582-925c-f4965ea21dd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "konz" + }, + "CitationForm": { + "seh": "konza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e8c7028d-3a47-4b64-b2be-7b1819997a5f", + "Order": 1, + "DeletedAt": null, + "EntryId": "cb13003f-6131-4582-925c-f4965ea21dd8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "heal often by traditional means", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "heal", + "pt": "curar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bef2ee2d-280d-4f59-b28c-2c1cd9c26bfe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e8c7028d-3a47-4b64-b2be-7b1819997a5f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6c3d945-1d09-4681-ab57-2d827e958a0c", + "DeletedAt": null, + "LexemeForm": { + "seh": "konziw" + }, + "CitationForm": { + "seh": "konziwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fbdc0232-f0da-4dad-87fc-7717e704bca4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6c3d945-1d09-4681-ab57-2d827e958a0c", + "Definition": {}, + "Gloss": { + "en": "be healed", + "pt": "ser curado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b9bbf12-cc4e-4d4b-97b5-5a37d566b5a9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fbdc0232-f0da-4dad-87fc-7717e704bca4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7503fadb-efdf-4f65-b741-e05a7328cda3", + "DeletedAt": null, + "LexemeForm": { + "seh": "kotam" + }, + "CitationForm": { + "seh": "kotama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "184375ba-86e9-464f-9bdd-2993cd0263a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "7503fadb-efdf-4f65-b741-e05a7328cda3", + "Definition": {}, + "Gloss": { + "en": "bend over", + "pt": "enclinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c35c2655-a04d-446a-8851-940d68e9790f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "184375ba-86e9-464f-9bdd-2993cd0263a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b33f4cf5-04f5-46c6-9559-666c3c8b7ecd", + "DeletedAt": null, + "LexemeForm": { + "seh": "koy" + }, + "CitationForm": { + "seh": "koya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b76f140c-bc70-46f5-8da6-3aad4c1b293a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b33f4cf5-04f5-46c6-9559-666c3c8b7ecd", + "Definition": {}, + "Gloss": { + "en": "keep", + "pt": "guardar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a3d2ccd6-f0aa-4601-b266-a2b7e17f8e13", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "b76f140c-bc70-46f5-8da6-3aad4c1b293a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "d97a535e-3bf7-4e43-a361-ecdbb0e2609d", + "Order": 1, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "026ea7ef-fa84-4805-a9ee-6ade8a5afea8", + "Order": 2, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "33f29f92-bace-47d8-8596-91ba39570791", + "Order": 3, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "59922af6-e73d-4d5f-afb3-4f3e0ff0d7fc", + "Order": 4, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e455d9f3-c537-4fcc-b401-ab5f0d6e7a4e", + "Order": 5, + "DeletedAt": null, + "EntryId": "25104932-acb5-4b6c-b1da-2e3289c4b6ed", + "Definition": {}, + "Gloss": { + "en": "15", + "pt": "15" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "26b947ee-d663-4de2-bd2c-b5ad32c17ba3", + "Order": 1, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "9b7682f7-c63b-4a46-982d-b9d011a84753", + "Order": 2, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "4cef05db-5023-4826-a037-69997622e7d0", + "Order": 3, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e8f56462-bd82-46dd-b660-56268c759606", + "Order": 4, + "DeletedAt": null, + "EntryId": "330a4b1d-104b-4efa-80db-2bbe65855cb8", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "42af60da-df70-4c24-a52f-237d7efbf898", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "e784f30d-32a6-4959-bd12-0eec6804bfa7", + "Order": 1, + "DeletedAt": null, + "EntryId": "42af60da-df70-4c24-a52f-237d7efbf898", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Infinitive", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Infinitivo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "INF", + "pt": "INF" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e9d2b24-6890-423d-aa8e-b2da2eba5669", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kuuponya throw rock, kundya eat rabbit, kumponyera rabbit throw meat kumpita kupibva hear something", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "e784f30d-32a6-4959-bd12-0eec6804bfa7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "514fa3c2-7d42-427d-8eec-06b31153217a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "dbddb07d-5e8b-4208-a7ee-109d0637028d", + "Order": 1, + "DeletedAt": null, + "EntryId": "514fa3c2-7d42-427d-8eec-06b31153217a", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "76be65ab-4221-41d9-a68f-db80ef100c96", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", + "Order": 1, + "DeletedAt": null, + "EntryId": "76be65ab-4221-41d9-a68f-db80ef100c96", + "Definition": {}, + "Gloss": { + "en": "to", + "pt": "a\u0301" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7336f02a-0896-4169-9174-e2f11fb4f00d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d59897d5-86fc-4e24-9d9a-f1ef7a104c77", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7af9da8b-bf27-4006-bd4c-0bbc5205633f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "a1764bdf-5618-4a7b-9c9a-abb40494bd15", + "Order": 1, + "DeletedAt": null, + "EntryId": "7af9da8b-bf27-4006-bd4c-0bbc5205633f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "you", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2S", + "pt": "2S" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c1c47b06-dc41-4c2f-809f-a5d5425a99f0", + "DeletedAt": null, + "LexemeForm": { + "seh": "ku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "a848db7e-ebea-40ac-843d-381843f2523f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c1c47b06-dc41-4c2f-809f-a5d5425a99f0", + "Definition": {}, + "Gloss": { + "en": "17", + "pt": "17" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "DeletedAt": null, + "LexemeForm": { + "seh": "kubulukira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8c958583-0e11-4b66-b2c9-c3e570712355", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "Definition": {}, + "Gloss": { + "en": "since", + "pt": "desde" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90201f41-e4f6-4ca5-81b3-b5a6149245b7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kubulukira penepo", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "a partir de ali", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:44", + "Ws": "en" + } + ] + }, + "SenseId": "8c958583-0e11-4b66-b2c9-c3e570712355", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "c70fce40-a2f2-489e-af48-2e5111674ee4", + "MaybeId": "c70fce40-a2f2-489e-af48-2e5111674ee4", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "e8aa296a-46f4-49d9-87e8-36427d36e0da", + "ComplexFormHeadword": "kubulukira", + "ComponentEntryId": "1a4cadd7-be61-4725-ba0c-320cf823b4de", + "ComponentSenseId": null, + "ComponentHeadword": "bulukira" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "kubverana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7435327a-54ab-489b-912c-6cd4fcd4c701", + "Order": 1, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be in peaceful coexistance together, be at peace with", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "deep trusting", + "pt": "de confianc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28594255-2472-4ae9-ab4f-46ed5813b273", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo2:2", + "Ws": "en" + } + ] + }, + "SenseId": "7435327a-54ab-489b-912c-6cd4fcd4c701", + "DeletedAt": null + } + ] + }, + { + "Id": "56a695df-24fd-48b7-8fe5-e174a6a5ad31", + "Order": 2, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be at peace with", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ter comunhao, ter paz com alguem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "unity", + "pt": "unidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "151fa841-74d5-4fd3-9159-00b98f673b22", + "Order": 3, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": {}, + "Gloss": { + "en": "plan", + "pt": "combinar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a1db0f0d-f8e1-4edd-b6f6-14ae2441c385", + "Order": 4, + "DeletedAt": null, + "EntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "Definition": {}, + "Gloss": { + "en": "reconcile", + "pt": "reconcilhar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "aeec88c3-32b7-4625-80ce-187c332e2731", + "MaybeId": "aeec88c3-32b7-4625-80ce-187c332e2731", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c0c59e49-3bff-4249-b5d0-c94e0d46c9c3", + "ComplexFormHeadword": "kubverana", + "ComponentEntryId": "b23c2763-86ea-4bdf-aa14-836ede9cb57e", + "ComponentSenseId": null, + "ComponentHeadword": "bva" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "6fcdabd6-a74f-47b1-b36d-bd40eaebed36", + "Name": { + "en": "Benefactive", + "pt": "Aplicativa" + }, + "DeletedAt": null + }, + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0cbc3af-f925-43ef-a4d5-8a814b553aa9", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50029fb1-1687-4e3c-bb18-f56a4fff5ef0", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0cbc3af-f925-43ef-a4d5-8a814b553aa9", + "Definition": {}, + "Gloss": { + "en": "sun rise", + "pt": "amanhacer" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5db59acb-31c9-4b79-8eca-c7d1a3a93590", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "50029fb1-1687-4e3c-bb18-f56a4fff5ef0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "98fff588-02ef-4849-8b11-26d2a9834a12", + "DeletedAt": null, + "LexemeForm": { + "seh": "dambo" + }, + "CitationForm": { + "seh": "kudambo" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3f89b93b-bb37-4daa-acec-36437ce585cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "98fff588-02ef-4849-8b11-26d2a9834a12", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area near the house, the yard", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "quintal de casa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "yard", + "pt": "quintal" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e093cf8e-208a-4db6-9c48-986fb8c8392a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "3f89b93b-bb37-4daa-acec-36437ce585cb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a4833ca4-bcc3-44db-a525-c88993150c07", + "DeletedAt": null, + "LexemeForm": { + "seh": "kudza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "358a74e2-dbb0-4b7c-bec0-4466179f1ea8", + "Order": 1, + "DeletedAt": null, + "EntryId": "a4833ca4-bcc3-44db-a525-c88993150c07", + "Definition": {}, + "Gloss": { + "en": "coming", + "pt": "vindo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "fa0fcded-b553-49fd-a555-13aa2afb66f7", + "MaybeId": "fa0fcded-b553-49fd-a555-13aa2afb66f7", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a4833ca4-bcc3-44db-a525-c88993150c07", + "ComplexFormHeadword": "kudza", + "ComponentEntryId": "af8c4882-d0f9-44ae-9bc8-6f0073e2b859", + "ComponentSenseId": null, + "ComponentHeadword": "dza" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4a8bd5e-9f68-43d8-9963-2857d5ca81de", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu" + }, + "CitationForm": { + "seh": "kudzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7a66e6c9-beae-4e1c-942f-967c1366c772", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4a8bd5e-9f68-43d8-9963-2857d5ca81de", + "Definition": {}, + "Gloss": { + "en": "heaven", + "pt": "ce\u0301u" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + { + "Id": "d7eddc38-92ea-4a69-90f3-f9d98070cfc4", + "Order": 2, + "DeletedAt": null, + "EntryId": "e4a8bd5e-9f68-43d8-9963-2857d5ca81de", + "Definition": {}, + "Gloss": { + "en": "above", + "pt": "em cima" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuenda-na-kuenda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "99c14abc-9fbf-48a4-931a-f30d37463fd8", + "Order": 1, + "DeletedAt": null, + "EntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "Definition": {}, + "Gloss": { + "en": "forever", + "pt": "para sempre" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a0b6924d-e8f4-4f3d-a04f-2f005e866dcc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "99c14abc-9fbf-48a4-931a-f30d37463fd8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "85755fa5-a4ef-431c-a281-dcdcc7e992b1", + "MaybeId": "85755fa5-a4ef-431c-a281-dcdcc7e992b1", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "2bde7e2c-9ddc-4de0-b416-c24c0710c2fa", + "ComponentSenseId": null, + "ComponentHeadword": "enda" + }, + { + "Id": "c6b6d826-32ca-4bad-8faa-f2c6354de085", + "MaybeId": "c6b6d826-32ca-4bad-8faa-f2c6354de085", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab13df98-2d45-45f0-b7b1-9d7a17814663", + "DeletedAt": null, + "LexemeForm": { + "seh": "kukakamiz" + }, + "CitationForm": { + "seh": "kukakamiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b27d368e-9629-4c1d-b713-fa4a5e7296be", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab13df98-2d45-45f0-b7b1-9d7a17814663", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "obrigar com insistencia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "force", + "pt": "obrigar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff5aa203-d543-4147-b502-fe4c93be6701", + "DeletedAt": null, + "LexemeForm": { + "seh": "kul" + }, + "CitationForm": { + "seh": "kula" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c8e91867-97f2-4c5a-ab05-da7e9d8530a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff5aa203-d543-4147-b502-fe4c93be6701", + "Definition": {}, + "Gloss": { + "en": "grow", + "pt": "crecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3330cdf6-76d7-485f-b146-c8a0c640f40e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c65d2e3c-2af7-4397-9fc7-9513aec457bf", + "Order": 1, + "DeletedAt": null, + "EntryId": "3330cdf6-76d7-485f-b146-c8a0c640f40e", + "Definition": {}, + "Gloss": { + "en": "to", + "pt": "a\u0301" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3978b157-dddf-4969-a8e2-c602542a124c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kuli anthu onsene", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "em todas as pessoas", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c65d2e3c-2af7-4397-9fc7-9513aec457bf", + "DeletedAt": null + } + ] + }, + { + "Id": "7bb75da8-2d6d-4c36-a2ae-fdca2e05fccf", + "Order": 2, + "DeletedAt": null, + "EntryId": "3330cdf6-76d7-485f-b146-c8a0c640f40e", + "Definition": {}, + "Gloss": { + "en": "for", + "pt": "para" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78e44c04-e513-4248-868c-4d9da03d7add", + "DeletedAt": null, + "LexemeForm": { + "seh": "kulu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "66caea57-5e26-41fb-9075-e204d5d3c6a4", + "Order": 1, + "DeletedAt": null, + "EntryId": "78e44c04-e513-4248-868c-4d9da03d7add", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large size", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "grande tomanho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "large ", + "pt": "grande" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f356b33-3167-411a-b56d-a2bf65c091af", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nyama ikulu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "a large piece of meat or animal", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "carne ou animal grande", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "66caea57-5e26-41fb-9075-e204d5d3c6a4", + "DeletedAt": null + } + ] + }, + { + "Id": "19f70685-7f84-4c67-97bd-39c148b32a3d", + "Order": 2, + "DeletedAt": null, + "EntryId": "78e44c04-e513-4248-868c-4d9da03d7add", + "Definition": { + "en": { + "Spans": [ + { + "Text": "great in fame or significance", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "grande, nota\u0301vel, importante", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "great", + "pt": "grande" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9d0809a0-356b-4a23-9ac6-8bd77d9ed837", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumb" + }, + "CitationForm": { + "seh": "kumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "03ae5c91-0727-41a3-9667-dbd3115bf69e", + "Order": 1, + "DeletedAt": null, + "EntryId": "9d0809a0-356b-4a23-9ac6-8bd77d9ed837", + "Definition": {}, + "Gloss": { + "en": "dig", + "pt": "cavar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1c5a002-65dd-4052-80d5-099147c288c6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "03ae5c91-0727-41a3-9667-dbd3115bf69e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a3dd1e7-e921-4147-8eae-5a9737474fa2", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbidz" + }, + "CitationForm": { + "seh": "kumbidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4da51546-5eef-463c-b1be-526c4b34bc36", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a3dd1e7-e921-4147-8eae-5a9737474fa2", + "Definition": {}, + "Gloss": { + "en": "to shepherd", + "pt": "pastorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe22c733-954c-4ca7-9c5b-afc4e2977741", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4da51546-5eef-463c-b1be-526c4b34bc36", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33a8cf3a-7aa3-4935-bcf3-e4b7fe590c54", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbuk" + }, + "CitationForm": { + "seh": "kumbuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0515b9b2-9f91-415e-9081-1ffa59094bac", + "Order": 1, + "DeletedAt": null, + "EntryId": "33a8cf3a-7aa3-4935-bcf3-e4b7fe590c54", + "Definition": {}, + "Gloss": { + "en": "remember", + "pt": "lembrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8bafbcc4-3129-492b-bd4e-0eb92205120d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0515b9b2-9f91-415e-9081-1ffa59094bac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "98b8977c-431f-405b-8e58-c78dc519784c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuna" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "42c8d478-acca-448c-a512-3dbcd2d3f34c", + "Order": 1, + "DeletedAt": null, + "EntryId": "98b8977c-431f-405b-8e58-c78dc519784c", + "Definition": {}, + "Gloss": { + "en": "with", + "pt": "com" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fec8f5fd-6c9a-4447-993d-0d8a53e83782", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "42c8d478-acca-448c-a512-3dbcd2d3f34c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e5f75fed-a67c-4248-8993-41f13be9b855", + "DeletedAt": null, + "LexemeForm": { + "seh": "kund" + }, + "CitationForm": { + "seh": "kunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98996975-bc63-4c87-a7b7-79813e098bdc", + "Order": 1, + "DeletedAt": null, + "EntryId": "e5f75fed-a67c-4248-8993-41f13be9b855", + "Definition": {}, + "Gloss": { + "en": "win", + "pt": "vencer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df67c45a-f0df-4f8e-89d4-286ea293de94", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "98996975-bc63-4c87-a7b7-79813e098bdc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2cdbc249-472c-4fb5-816c-ba825f967ff7", + "DeletedAt": null, + "LexemeForm": { + "seh": "kunduli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa95d4f9-9ac2-432e-90e6-23b14f857d49", + "Order": 1, + "DeletedAt": null, + "EntryId": "2cdbc249-472c-4fb5-816c-ba825f967ff7", + "Definition": {}, + "Gloss": { + "en": "back", + "pt": "costas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed4ea1ca-bbae-4d00-9e24-bf6cd0e9bdd8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "aa95d4f9-9ac2-432e-90e6-23b14f857d49", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "374bcb04-b224-48e2-b5b4-153bb427a66b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nja" + }, + "CitationForm": { + "seh": "kunja" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "91688c53-43b6-4ecc-9194-bb960b61155b", + "Order": 1, + "DeletedAt": null, + "EntryId": "374bcb04-b224-48e2-b5b4-153bb427a66b", + "Definition": {}, + "Gloss": { + "en": "just outside", + "pt": "fora" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d867f469-1387-436f-ab72-4e6340d9d7ff", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndapira kunja kwakaru", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Subiu atras de carro (aberto)", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Moreira:24", + "Ws": "en" + } + ] + }, + "SenseId": "91688c53-43b6-4ecc-9194-bb960b61155b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "441c4f41-1d0e-48bf-a432-ce82338367f1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsi" + }, + "CitationForm": { + "seh": "kuntsi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "16a4d77d-f9ea-489b-ac07-bead9ecd8304", + "Order": 1, + "DeletedAt": null, + "EntryId": "441c4f41-1d0e-48bf-a432-ce82338367f1", + "Definition": {}, + "Gloss": { + "en": "behind", + "pt": "atra\u0301s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "558eaf38-68d6-44bf-9ad9-f164ba360cd9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Baba ali kunsi kwanyumba.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Pai esta\u0301 atra\u0301s de casa.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24 also says em_baixo; no cha\u0303o", + "Ws": "en" + } + ] + }, + "SenseId": "16a4d77d-f9ea-489b-ac07-bead9ecd8304", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "736f6304-3b11-4c6e-a21e-ea62455f697c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bb5431f8-9a7d-400b-90e3-176019ee4836", + "Order": 1, + "DeletedAt": null, + "EntryId": "736f6304-3b11-4c6e-a21e-ea62455f697c", + "Definition": {}, + "Gloss": { + "en": "where?", + "pt": "onde?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bf4b3113-1f6c-4481-b841-cb22b8a5af5e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bb5431f8-9a7d-400b-90e3-176019ee4836", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77344997-5891-4494-8483-59bf8db48f6e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sere" + }, + "CitationForm": { + "seh": "kusere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f9dbe01-d3b5-4945-849e-797f9bc54d7f", + "Order": 1, + "DeletedAt": null, + "EntryId": "77344997-5891-4494-8483-59bf8db48f6e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "behind the house", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "behind the house", + "pt": "atra\u0301s de casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "47795727-8c7c-4ae1-9e7b-a94aae0b61f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p25; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2f9dbe01-d3b5-4945-849e-797f9bc54d7f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd8be48e-384a-4be6-88dc-61e1dd15e478", + "DeletedAt": null, + "LexemeForm": { + "seh": "kusiana-sian" + }, + "CitationForm": { + "seh": "kusiana-siana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb2f2bf4-bc58-4a1e-a4bc-fddad7670996", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd8be48e-384a-4be6-88dc-61e1dd15e478", + "Definition": {}, + "Gloss": { + "en": "various", + "pt": "va\u0301rios" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a8ed5ad-6b1a-4c7a-acb9-2b53a5ad89fd", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nthenda za kusiana-siana", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "doenc\u0327as va\u0301rias", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "fb2f2bf4-bc58-4a1e-a4bc-fddad7670996", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "55ffaf73-c7dd-4dc5-a13c-547853535cb4", + "DeletedAt": null, + "LexemeForm": { + "seh": "kutali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8637487d-15dc-4ea3-8a29-b69137af0d60", + "Order": 1, + "DeletedAt": null, + "EntryId": "55ffaf73-c7dd-4dc5-a13c-547853535cb4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a long distance off", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "far", + "pt": "longe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "200d93da-549e-46aa-95a3-cf1d8cec48e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "8637487d-15dc-4ea3-8a29-b69137af0d60", + "DeletedAt": null + } + ] + }, + { + "Id": "4c2747b8-cffb-4030-8a96-bab2a7d514bc", + "Order": 2, + "DeletedAt": null, + "EntryId": "55ffaf73-c7dd-4dc5-a13c-547853535cb4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "long ago", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "long ago", + "pt": "ha\u0301 muito tempo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7d6b9945-f6e3-4b31-b4ff-b8c50ff18732", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": { + "seh": "kuti" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "13db6af2-dd49-4d2a-b27f-4da4c5884ebb", + "Order": 1, + "DeletedAt": null, + "EntryId": "7d6b9945-f6e3-4b31-b4ff-b8c50ff18732", + "Definition": {}, + "Gloss": { + "en": "that", + "pt": "que" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "14713929-5278-41e9-82d2-7832394146c8", + "Order": 2, + "DeletedAt": null, + "EntryId": "7d6b9945-f6e3-4b31-b4ff-b8c50ff18732", + "Definition": {}, + "Gloss": { + "en": "so that" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff7f992f-5df9-4b0c-aa46-847e32384280", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsogolo" + }, + "CitationForm": { + "seh": "kutsogolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6ef2f45c-a585-482a-b99f-32aaa9f0b91e", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff7f992f-5df9-4b0c-aa46-847e32384280", + "Definition": {}, + "Gloss": { + "en": "to the front", + "pt": "adiante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0c4075e3-20fc-40e5-931a-ab27ac1bd397", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6ef2f45c-a585-482a-b99f-32aaa9f0b91e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16704d25-1f22-4966-985a-9d543c5e8ff9", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwan" + }, + "CitationForm": { + "seh": "kwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "92947ad8-fa32-4f8a-8bb7-5328ea99a859", + "Order": 1, + "DeletedAt": null, + "EntryId": "16704d25-1f22-4966-985a-9d543c5e8ff9", + "Definition": {}, + "Gloss": { + "en": "be satisfied", + "pt": "estar satisfeito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e16c7b09-b7d6-43e2-899f-db41ee68ac87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "92947ad8-fa32-4f8a-8bb7-5328ea99a859", + "DeletedAt": null + } + ] + }, + { + "Id": "3ce820a3-cad2-4877-a735-e0ef244edba4", + "Order": 2, + "DeletedAt": null, + "EntryId": "16704d25-1f22-4966-985a-9d543c5e8ff9", + "Definition": {}, + "Gloss": { + "en": "succeed", + "pt": "conseguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3bc101d1-1ac9-442d-aa67-d548d60ba5dd", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "This is a test", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "um teste", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "3ce820a3-cad2-4877-a735-e0ef244edba4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "880780db-a760-47cf-9ca5-7a8d6d837559", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwanis" + }, + "CitationForm": { + "seh": "kwanisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d3b00031-dcd0-45f4-ae35-ae7fa76830dd", + "Order": 1, + "DeletedAt": null, + "EntryId": "880780db-a760-47cf-9ca5-7a8d6d837559", + "Definition": {}, + "Gloss": { + "en": "be able", + "pt": "conseguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb7a11a4-47a0-4d02-9182-934fdefb83a4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Mauricio", + "Ws": "en" + } + ] + }, + "SenseId": "d3b00031-dcd0-45f4-ae35-ae7fa76830dd", + "DeletedAt": null + } + ] + }, + { + "Id": "8e87bcf4-8ce8-4cb5-9de7-543122c7fda2", + "Order": 2, + "DeletedAt": null, + "EntryId": "880780db-a760-47cf-9ca5-7a8d6d837559", + "Definition": {}, + "Gloss": { + "en": "win", + "pt": "vencer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e73f3d3-fe5e-4650-b703-55bfdef05d0c", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwapul" + }, + "CitationForm": { + "seh": "kwapula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f3d8d3ed-b947-4fc4-baaf-90824ff64ae3", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e73f3d3-fe5e-4650-b703-55bfdef05d0c", + "Definition": {}, + "Gloss": { + "en": "whip", + "pt": "ac\u0327oitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "6bf7569e-dc79-49da-9ce1-e2e03303828a", + "Name": { + "en": "Punish" + }, + "Code": "4.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "15b522c5-78b3-40da-8dcd-27428a4ea63d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f3d8d3ed-b947-4fc4-baaf-90824ff64ae3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb5de16b-1e86-4e00-9b11-38fbbd9879fa", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwat" + }, + "CitationForm": { + "seh": "kwata" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad99f7bd-09ab-4b5d-8043-6c59d31f62c7", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb5de16b-1e86-4e00-9b11-38fbbd9879fa", + "Definition": {}, + "Gloss": { + "en": "take", + "pt": "levar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "166a1016-8662-44e3-8d58-c95ac1338b6c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo024; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ad99f7bd-09ab-4b5d-8043-6c59d31f62c7", + "DeletedAt": null + } + ] + }, + { + "Id": "01dafaba-c6cc-4d16-92a1-cded047655cf", + "Order": 2, + "DeletedAt": null, + "EntryId": "bb5de16b-1e86-4e00-9b11-38fbbd9879fa", + "Definition": {}, + "Gloss": { + "en": "get", + "pt": "buscar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86f6316c-9db1-499e-86d1-df494148cb29", + "DeletedAt": null, + "LexemeForm": { + "seh": "kweca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "2912198b-fb50-4312-8458-7ea24b423fc9", + "Order": 1, + "DeletedAt": null, + "EntryId": "86f6316c-9db1-499e-86d1-df494148cb29", + "Definition": {}, + "Gloss": { + "en": "publically", + "pt": "publicamente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bdc6da08-999c-488d-a5b8-3ba1574b1d1f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Alonga pakweca", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Falou publicamente", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "2912198b-fb50-4312-8458-7ea24b423fc9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "250d5e07-5084-457f-8ec0-b53faeb45993", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwew" + }, + "CitationForm": { + "seh": "kwewa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "da536137-5182-4e26-94bc-6830787b1a7a", + "Order": 1, + "DeletedAt": null, + "EntryId": "250d5e07-5084-457f-8ec0-b53faeb45993", + "Definition": {}, + "Gloss": { + "en": "pull", + "pt": "puxar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "614d37aa-a139-4004-b140-20136dc03e26", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "da536137-5182-4e26-94bc-6830787b1a7a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "27614845-25ec-4fe8-90f0-bb4a9bc7616f", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwir" + }, + "CitationForm": { + "seh": "kwira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cd54851f-e56c-42cf-b34e-32c7cfd30702", + "Order": 1, + "DeletedAt": null, + "EntryId": "27614845-25ec-4fe8-90f0-bb4a9bc7616f", + "Definition": {}, + "Gloss": { + "en": "go up", + "pt": "subir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "36b80037-c89e-4662-b18c-58445ea18d96", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cd54851f-e56c-42cf-b34e-32c7cfd30702", + "DeletedAt": null + } + ] + }, + { + "Id": "6c626dd8-43ba-47a7-a415-35c43f322f31", + "Order": 2, + "DeletedAt": null, + "EntryId": "27614845-25ec-4fe8-90f0-bb4a9bc7616f", + "Definition": {}, + "Gloss": { + "en": "go upstream", + "pt": "ir contracorrente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd4dcec1-65b3-46bb-98f9-bf3874e91bcb", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwis" + }, + "CitationForm": { + "seh": "kwisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dea34b42-5731-4d82-82b0-d6748f0234b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd4dcec1-65b3-46bb-98f9-bf3874e91bcb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "go against the current", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ir contracorrente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "go upstream", + "pt": "ir contracorrente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1386dc2b-811c-4707-b247-dd361ef3eff9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "dea34b42-5731-4d82-82b0-d6748f0234b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a4761ffa-f8ce-4a24-b4d7-903dbd082c66", + "DeletedAt": null, + "LexemeForm": { + "seh": "kwiz" + }, + "CitationForm": { + "seh": "kwiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e417aa16-cff4-4288-835d-2da5443630eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "a4761ffa-f8ce-4a24-b4d7-903dbd082c66", + "Definition": {}, + "Gloss": { + "en": "put on top", + "pt": "por em cima" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8877874c-f379-4e71-8de2-a673ac9769d5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e417aa16-cff4-4288-835d-2da5443630eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "95068ea4-6add-4976-8c94-f0bfac71787e", + "DeletedAt": null, + "LexemeForm": { + "seh": "lalam" + }, + "CitationForm": { + "seh": "lalama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b9767f89-5b00-4986-8c3a-018ea8d05d85", + "Order": 1, + "DeletedAt": null, + "EntryId": "95068ea4-6add-4976-8c94-f0bfac71787e", + "Definition": {}, + "Gloss": { + "en": "live", + "pt": "viver" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28c6effd-2ca5-4d10-8d12-6e29a2f49755", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b9767f89-5b00-4986-8c3a-018ea8d05d85", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3cd81442-cc2e-40d6-b193-d39ca5e795c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "lalanja" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a47bb6bc-4c1a-4c1c-90fc-1c8a660e09f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "3cd81442-cc2e-40d6-b193-d39ca5e795c6", + "Definition": {}, + "Gloss": { + "en": "orange tree", + "pt": "laranjeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl: milaranja sg: ??", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aa2fe4e7-b0d4-4aae-a5b7-df83b204feea", + "DeletedAt": null, + "LexemeForm": { + "seh": "lambe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1674d7bb-216f-4b4e-b61b-15cc84c420e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "aa2fe4e7-b0d4-4aae-a5b7-df83b204feea", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "fruto de mbondiera", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "baobab fruit", + "pt": "fruto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "9cae4ee3-03cf-46f7-9475-21d66c93ae04", + "Name": { + "en": "Food from fruit" + }, + "Code": "5.2.3.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "5e1ebdb7-3ccb-4964-9678-5f605a152130", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1674d7bb-216f-4b4e-b61b-15cc84c420e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a5708f5-490c-4b59-9df3-400d3724ee8c", + "DeletedAt": null, + "LexemeForm": { + "seh": "lambir" + }, + "CitationForm": { + "seh": "lambira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc5dde39-7eb8-41f1-a833-564569ccd28b", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a5708f5-490c-4b59-9df3-400d3724ee8c", + "Definition": {}, + "Gloss": { + "en": "worship", + "pt": "adorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc25a7ed-52ee-47c4-b9ce-daa5822505b9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cc5dde39-7eb8-41f1-a833-564569ccd28b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3551a649-032a-49be-8576-900eec508339", + "DeletedAt": null, + "LexemeForm": { + "seh": "lamuk" + }, + "CitationForm": { + "seh": "lamuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "20cf4edd-301c-4989-86b7-de760562ba4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "3551a649-032a-49be-8576-900eec508339", + "Definition": {}, + "Gloss": { + "en": "wake up", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3af6ce2e-7fdb-4b14-8787-4aadf38d3ed8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "20cf4edd-301c-4989-86b7-de760562ba4e", + "DeletedAt": null + } + ] + }, + { + "Id": "0b996a63-cfca-49ce-9717-5b7b12d34c58", + "Order": 2, + "DeletedAt": null, + "EntryId": "3551a649-032a-49be-8576-900eec508339", + "Definition": {}, + "Gloss": { + "en": "stand up", + "pt": "levantar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f894432-e1cc-40bd-b29f-0e2b28fd30d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "lamus" + }, + "CitationForm": { + "seh": "lamusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e8764c07-d5ea-42d5-b86c-d8e9979ab798", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f894432-e1cc-40bd-b29f-0e2b28fd30d2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake up someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causar acordar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00c51ae8-400e-40e3-807f-cee9665f0b26", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e8764c07-d5ea-42d5-b86c-d8e9979ab798", + "DeletedAt": null + } + ] + }, + { + "Id": "de112476-c4a7-4606-ac3c-5e0e44d9aa39", + "Order": 2, + "DeletedAt": null, + "EntryId": "4f894432-e1cc-40bd-b29f-0e2b28fd30d2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "get someone up", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "causar levantar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "get up", + "pt": "levantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f3bebae-4eaa-487c-91ac-b591653dcabf", + "DeletedAt": null, + "LexemeForm": { + "seh": "landan" + }, + "CitationForm": { + "seh": "landana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07b38b92-3a89-421b-befa-15fad6569e32", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f3bebae-4eaa-487c-91ac-b591653dcabf", + "Definition": {}, + "Gloss": { + "en": "is like", + "pt": "e\u0301 simulante" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb9a2c0c-63d5-4b78-8079-5034f3473a21", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "07b38b92-3a89-421b-befa-15fad6569e32", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06976211-d271-4135-8452-e2aa57d51b46", + "DeletedAt": null, + "LexemeForm": { + "seh": "lang\u0027an" + }, + "CitationForm": { + "seh": "lang\u0027ana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6aa3269d-8c92-4daf-b74e-5c8adc0a4fc1", + "Order": 1, + "DeletedAt": null, + "EntryId": "06976211-d271-4135-8452-e2aa57d51b46", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "olhar, reparar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "look", + "pt": "olhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "946d57b4-05c8-4258-bd0c-2bc683132944", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6aa3269d-8c92-4daf-b74e-5c8adc0a4fc1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fda07a70-f8b4-4c66-a55c-d8e45c28b172", + "DeletedAt": null, + "LexemeForm": { + "seh": "lang\u0027anis" + }, + "CitationForm": { + "seh": "lang\u0027anisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "983b1d9f-0995-402b-bdf1-9925d8044db7", + "Order": 1, + "DeletedAt": null, + "EntryId": "fda07a70-f8b4-4c66-a55c-d8e45c28b172", + "Definition": {}, + "Gloss": { + "en": "observe", + "pt": "observar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9263e9c0-81bf-43ff-b07e-2f51ac95ae81", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "983b1d9f-0995-402b-bdf1-9925d8044db7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d087c114-30bc-45c9-927c-414b505fe1c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ledzer" + }, + "CitationForm": { + "seh": "ledzera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad4b7a60-ba81-464e-becf-6226fbf153bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d087c114-30bc-45c9-927c-414b505fe1c7", + "Definition": {}, + "Gloss": { + "en": "get drunk", + "pt": "embebedar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "333ef741-6753-4864-9eec-273a00ff5184", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ad4b7a60-ba81-464e-becf-6226fbf153bc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8da08768-9b89-4d6a-ab4e-deb87d8e40fe", + "DeletedAt": null, + "LexemeForm": { + "seh": "lek" + }, + "CitationForm": { + "seh": "leka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b525967-2c84-492b-b802-08372872cdf5", + "Order": 1, + "DeletedAt": null, + "EntryId": "8da08768-9b89-4d6a-ab4e-deb87d8e40fe", + "Definition": {}, + "Gloss": { + "en": "quit", + "pt": "desistir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ca22caa5-4f85-42a1-929c-89592a5fc3e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "6b525967-2c84-492b-b802-08372872cdf5", + "DeletedAt": null + } + ] + }, + { + "Id": "d33f8677-dabf-458f-80a8-e606bdb4cb0c", + "Order": 2, + "DeletedAt": null, + "EntryId": "8da08768-9b89-4d6a-ab4e-deb87d8e40fe", + "Definition": {}, + "Gloss": { + "en": "put", + "pt": "deixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "03db04bc-1143-4170-ab2d-ef3176203966", + "DeletedAt": null, + "LexemeForm": { + "seh": "lekerer" + }, + "CitationForm": { + "seh": "lekerera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1229547d-d9de-4523-ba1e-891053df36a8", + "Order": 1, + "DeletedAt": null, + "EntryId": "03db04bc-1143-4170-ab2d-ef3176203966", + "Definition": {}, + "Gloss": { + "en": "forgive", + "pt": "perdoar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "08f7c015-e173-4059-9307-133dd5b8cc44", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1229547d-d9de-4523-ba1e-891053df36a8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4656786d-1a59-4576-92c9-9a8145677230", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemb" + }, + "CitationForm": { + "seh": "lemba" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3a89870c-b27f-490e-bed9-6f03a8074d9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "4656786d-1a59-4576-92c9-9a8145677230", + "Definition": {}, + "Gloss": { + "en": "write", + "pt": "escrever" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "af700054-258a-458a-9e38-e90397833e51", + "Name": { + "en": "Write" + }, + "Code": "3.5.7.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a296f4d8-cef5-4385-989d-c4b0009061ad", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3a89870c-b27f-490e-bed9-6f03a8074d9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a960cfde-c0e9-469b-8b51-726d687ef6a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "lembw" + }, + "CitationForm": { + "seh": "lembwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "703d0fd4-773c-4915-99f6-0f9a461290f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "a960cfde-c0e9-469b-8b51-726d687ef6a2", + "Definition": {}, + "Gloss": { + "en": "written", + "pt": "ser escrito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "8db7c016-bdc9-410b-9523-3197602358f4", + "Name": { + "en": "Written material" + }, + "Code": "3.5.7.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4caf83ac-6a67-49c6-8108-cd95283c5f08", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "703d0fd4-773c-4915-99f6-0f9a461290f8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f0d25f9-51f2-49f0-9aab-25e7ff3b6f14", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemedz" + }, + "CitationForm": { + "seh": "lemedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98b0f1d8-b3f8-4876-9ec5-17e28a80a8b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f0d25f9-51f2-49f0-9aab-25e7ff3b6f14", + "Definition": {}, + "Gloss": { + "en": "respect", + "pt": "respeitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9", + "Name": { + "en": "Honor" + }, + "Code": "4.5.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "9148e55b-acb5-439c-85c7-1b1ffb7ffb1a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "98b0f1d8-b3f8-4876-9ec5-17e28a80a8b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d01b93b-9cb0-4620-8ea2-e07ec147d467", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemer" + }, + "CitationForm": { + "seh": "lemera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0a80dcf6-b583-4c1f-9e80-b636400cdfcb", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d01b93b-9cb0-4620-8ea2-e07ec147d467", + "Definition": {}, + "Gloss": { + "en": "over weighed", + "pt": "cargado demais" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28228fd2-9575-42d5-b01e-6fd139750d8a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0a80dcf6-b583-4c1f-9e80-b636400cdfcb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd3d7ca9-5192-4427-ad66-d189dd835ea2", + "DeletedAt": null, + "LexemeForm": { + "seh": "leng" + }, + "CitationForm": { + "seh": "lenga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f19f938-d264-4e3a-aa26-502445dd8266", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd3d7ca9-5192-4427-ad66-d189dd835ea2", + "Definition": {}, + "Gloss": { + "en": "create", + "pt": "criar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "305dd894-82b2-492d-8280-de50a130d24b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8f19f938-d264-4e3a-aa26-502445dd8266", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0b6d441-05dc-4d1d-b30b-50b5b471cc53", + "DeletedAt": null, + "LexemeForm": { + "seh": "lenges" + }, + "CitationForm": { + "seh": "lengesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "940376b0-d627-4d5c-82c7-bc77aa4a772b", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0b6d441-05dc-4d1d-b30b-50b5b471cc53", + "Definition": { + "en": { + "Spans": [ + { + "Text": "count numbers", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "contar nu\u0301meros", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "count", + "pt": "contar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cab3aa47-e4c1-4a02-abfc-f7eaf3aba50e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "940376b0-d627-4d5c-82c7-bc77aa4a772b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09226098-f664-425f-81fd-18c0a8c7afbf", + "DeletedAt": null, + "LexemeForm": { + "seh": "lero" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "df45b4f2-25bd-4f90-b89c-3cec51877f7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "09226098-f664-425f-81fd-18c0a8c7afbf", + "Definition": {}, + "Gloss": { + "en": "today", + "pt": "ho\u0301je" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "42dff89b-f826-4687-a75a-b07801ba42d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "df45b4f2-25bd-4f90-b89c-3cec51877f7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8f7c22b-7757-48a6-88d5-3f312f18e4de", + "DeletedAt": null, + "LexemeForm": { + "seh": "leser" + }, + "CitationForm": { + "seh": "lesera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e89b6243-a7c0-48c2-b34c-1bf1fc057d85", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8f7c22b-7757-48a6-88d5-3f312f18e4de", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tempt, experiment/try, to fool", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "tempt", + "pt": "tentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb", + "Name": { + "en": "Deceive" + }, + "Code": "4.3.5.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "509924a9-5bd2-4c3a-99b9-be71d26d5987", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e89b6243-a7c0-48c2-b34c-1bf1fc057d85", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "85aa5ed0-186b-4cc4-bb3d-e2ea9a75ddf0", + "DeletedAt": null, + "LexemeForm": { + "seh": "lezi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2d93aa5f-85c0-4262-a073-4c52725df0ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "85aa5ed0-186b-4cc4-bb3d-e2ea9a75ddf0", + "Definition": {}, + "Gloss": { + "en": "vulture", + "pt": "abutre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4a798c9-79d8-43a8-8a96-b234608e1f5e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2d93aa5f-85c0-4262-a073-4c52725df0ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e44e4446-bbb2-488d-b2fc-a374add17b0f", + "DeletedAt": null, + "LexemeForm": { + "seh": "li" + }, + "CitationForm": { + "seh": "li" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "14656f11-c542-4d0d-a8d8-1bf4404d8a50", + "Order": 1, + "DeletedAt": null, + "EntryId": "e44e4446-bbb2-488d-b2fc-a374add17b0f", + "Definition": {}, + "Gloss": { + "en": "be", + "pt": "ser" + }, + "PartOfSpeech": { + "Id": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "Name": { + "en": "Irregular Verb - li" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2785155-c34c-438a-8406-38ad14a9bd31", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ali kunyumba", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "S/he is in the house.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Esta\u0301 em casa.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "14656f11-c542-4d0d-a8d8-1bf4404d8a50", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eee1f47d-dca3-4c92-8960-b7669879c60c", + "DeletedAt": null, + "LexemeForm": { + "seh": "likombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b0b51446-4aca-4563-afde-fece60b50110", + "Order": 1, + "DeletedAt": null, + "EntryId": "eee1f47d-dca3-4c92-8960-b7669879c60c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spoon made of wood or shell, by extension metal", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spoon", + "pt": "colher" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b4e6c077-4f5e-44f3-8868-1f7ae3486585", + "Name": { + "en": "Eating utensil" + }, + "Code": "5.2.2.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "d6656000-4bfa-4cf1-a051-f5c2bc02cced", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "b0b51446-4aca-4563-afde-fece60b50110", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a76a32b-988e-40da-9574-b73a2a61a7f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "lim" + }, + "CitationForm": { + "seh": "lima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e9e0b4cd-f43e-4782-99e4-ebdbb9beface", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a76a32b-988e-40da-9574-b73a2a61a7f5", + "Definition": {}, + "Gloss": { + "en": "cultivate", + "pt": "cultivar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "5bb29704-fe0f-4594-9622-ce0aa42b93c8", + "Name": { + "en": "Agriculture" + }, + "Code": "6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "32a89fe3-586f-46d2-8f9f-db42c0178de2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e9e0b4cd-f43e-4782-99e4-ebdbb9beface", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d810efd-113c-43df-accb-cd2111c4ef5b", + "DeletedAt": null, + "LexemeForm": { + "seh": "limir" + }, + "CitationForm": { + "seh": "limira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f252789-f43e-4ab9-861b-24a34a80be54", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d810efd-113c-43df-accb-cd2111c4ef5b", + "Definition": {}, + "Gloss": { + "en": "standing", + "pt": "estar de pe\u0301" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b255f337-9e7b-4ac6-803b-15c5ef2cf93a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "6f252789-f43e-4ab9-861b-24a34a80be54", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "28b3b978-50c9-4bce-95db-e61bc98a3f59", + "DeletedAt": null, + "LexemeForm": { + "seh": "lini" + }, + "CitationForm": { + "seh": "lini?" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "98a00a46-22ea-43b9-9c91-30592f12e9b8", + "Order": 1, + "DeletedAt": null, + "EntryId": "28b3b978-50c9-4bce-95db-e61bc98a3f59", + "Definition": {}, + "Gloss": { + "en": "when?", + "pt": "quando?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a6b95bd3-1097-4023-ac6d-1670bc323b69", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "98a00a46-22ea-43b9-9c91-30592f12e9b8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "deaf7897-9532-4ba3-afc2-3d25300db453", + "DeletedAt": null, + "LexemeForm": { + "seh": "lip" + }, + "CitationForm": { + "seh": "lipa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09e43ed4-56f0-486c-9716-df293f95bbc2", + "Order": 1, + "DeletedAt": null, + "EntryId": "deaf7897-9532-4ba3-afc2-3d25300db453", + "Definition": {}, + "Gloss": { + "en": "pay", + "pt": "pagar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0126917-61cc-4acf-b66d-4667d1a66155", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "09e43ed4-56f0-486c-9716-df293f95bbc2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b53184d2-c0c0-4edf-a0e4-74c88d9296b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "lipo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21d335a6-7d87-4e70-ac02-23010d17dcf2", + "Order": 1, + "DeletedAt": null, + "EntryId": "b53184d2-c0c0-4edf-a0e4-74c88d9296b1", + "Definition": {}, + "Gloss": { + "en": "there was", + "pt": "era ali" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "264f31d2-0988-429a-9026-6024b3cd18cf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akhalipo \u0022there was\u0022 alipo \u0022there is\u0022", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "21d335a6-7d87-4e70-ac02-23010d17dcf2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3679eb18-b521-49d0-9430-93a309567c54", + "DeletedAt": null, + "LexemeForm": { + "seh": "lir" + }, + "CitationForm": { + "seh": "lira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "954570dd-87fd-4d6e-add9-7d819381c22c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3679eb18-b521-49d0-9430-93a309567c54", + "Definition": {}, + "Gloss": { + "en": "cry", + "pt": "chorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "b4fe4698-54a2-4bcd-9490-e07ee1ee97af", + "Name": { + "en": "Cry, tear" + }, + "Code": "3.5.6.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb2c05fd-4063-4299-a21f-49fb586023fd", + "DeletedAt": null, + "LexemeForm": { + "seh": "lirimi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad5209b6-e450-44ea-9e26-7843d1400eef", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb2c05fd-4063-4299-a21f-49fb586023fd", + "Definition": {}, + "Gloss": { + "en": "tongue", + "pt": "li\u0301ngua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28709ae5-978b-4fc6-9815-8b203f5a4f73", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "ad5209b6-e450-44ea-9e26-7843d1400eef", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e504f90-f7df-46a0-8fbb-080f16fc33b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "liwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1a2af823-093d-4226-b1af-71906c968a91", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e504f90-f7df-46a0-8fbb-080f16fc33b1", + "Definition": {}, + "Gloss": { + "en": "snare", + "pt": "armadilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "29f4e655-80af-4c02-be8c-63c5473e32ce", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "1a2af823-093d-4226-b1af-71906c968a91", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "acd26daa-9774-4a34-997d-8d3d7660a54b", + "DeletedAt": null, + "LexemeForm": { + "seh": "liz" + }, + "CitationForm": { + "seh": "liza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fbdc42ce-d4b0-45b8-8385-d9096064ba6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "acd26daa-9774-4a34-997d-8d3d7660a54b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "play instrument", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tocar instrumente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "play", + "pt": "tocar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b47081f-512b-41a9-940c-a6c7987aa056", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "fbdc42ce-d4b0-45b8-8385-d9096064ba6f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c007e718-9eb0-442a-8c3b-42b8e2e32453", + "DeletedAt": null, + "LexemeForm": { + "seh": "lobzek" + }, + "CitationForm": { + "seh": "lobzeka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "45ef7e48-d380-41f2-9ec2-7ce2f5616944", + "Order": 1, + "DeletedAt": null, + "EntryId": "c007e718-9eb0-442a-8c3b-42b8e2e32453", + "Definition": {}, + "Gloss": { + "en": "shipwreck", + "pt": "naufragar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e30652da-be16-4e3b-bd94-1457f71f5fb9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Alobzweka mwadia", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Naufragou com canoa", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth = sink", + "Ws": "en" + } + ] + }, + "SenseId": "45ef7e48-d380-41f2-9ec2-7ce2f5616944", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f2983d64-34f8-473a-9575-3bfb1ef54d2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "lokot" + }, + "CitationForm": { + "seh": "lokota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5cf564d-fa0d-4818-94dd-e542b59f80a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "f2983d64-34f8-473a-9575-3bfb1ef54d2e", + "Definition": {}, + "Gloss": { + "en": "find", + "pt": "achar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fa071f13-666b-4834-a265-6b894ab69054", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a5cf564d-fa0d-4818-94dd-e542b59f80a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "46f0b1a4-d1a2-4e13-8424-20776002c03f", + "DeletedAt": null, + "LexemeForm": { + "seh": "lokoter" + }, + "CitationForm": { + "seh": "lokotera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f6191876-68d6-4e06-877f-24ef94aa31d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "46f0b1a4-d1a2-4e13-8424-20776002c03f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "pick up left overs", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "pick up scraps", + "pt": "apanhar migalhas" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c837823-367a-4f9a-8906-ba688ef20fd1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f6191876-68d6-4e06-877f-24ef94aa31d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "931ae19c-9a0d-494e-8fcf-0ee54c67fa9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "lond" + }, + "CitationForm": { + "seh": "londa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "27e52026-b6f1-47b3-a588-e7891b63d80f", + "Order": 1, + "DeletedAt": null, + "EntryId": "931ae19c-9a0d-494e-8fcf-0ee54c67fa9e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to follow or track", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "seguir por onde outra passo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "follow", + "pt": "seguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "19d54c2f-ae03-4cbc-9b7e-57292f92fbc1", + "Name": { + "en": "Pursue" + }, + "Code": "7.2.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a84211ca-c71a-4ddc-88f4-76245b304e7a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwanabwa ali kulonda cinyama", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ca\u0303o esta\u0301 a perseguir o animal.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "27e52026-b6f1-47b3-a588-e7891b63d80f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "069db5da-52da-42b1-a39f-c8e4554f6362", + "DeletedAt": null, + "LexemeForm": { + "seh": "long" + }, + "CitationForm": { + "seh": "longa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7639dce1-8ea5-40de-b8e9-681656497f59", + "Order": 1, + "DeletedAt": null, + "EntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "Definition": {}, + "Gloss": { + "en": "talk", + "pt": "falar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c834dec1-0ff1-4da7-b273-654c70b5bbfe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "7639dce1-8ea5-40de-b8e9-681656497f59", + "DeletedAt": null + } + ] + }, + { + "Id": "94a44008-2b57-45cf-abf8-56a29b881810", + "Order": 2, + "DeletedAt": null, + "EntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "Definition": {}, + "Gloss": { + "en": "say", + "pt": "dizer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "8900703c-e95b-4f35-a036-89951a79d7d0", + "MaybeId": "8900703c-e95b-4f35-a036-89951a79d7d0", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "ComplexFormHeadword": "longana", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + }, + { + "Id": "8cbc8e55-fb1a-4cb0-a670-3928d20af8b1", + "MaybeId": "8cbc8e55-fb1a-4cb0-a670-3928d20af8b1", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "ComplexFormHeadword": "malongero", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "DeletedAt": null, + "LexemeForm": { + "seh": "longan" + }, + "CitationForm": { + "seh": "longana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f1d582f4-f8a1-4e6c-99f3-039650900166", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "Definition": {}, + "Gloss": { + "en": "dispute", + "pt": "disputar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f11af878-af28-454f-8ae2-862cbaffe855", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f1d582f4-f8a1-4e6c-99f3-039650900166", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "8900703c-e95b-4f35-a036-89951a79d7d0", + "MaybeId": "8900703c-e95b-4f35-a036-89951a79d7d0", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a6be04db-1a6b-4e6d-8743-1d8cdb5b2bfc", + "ComplexFormHeadword": "longana", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5e597800-64a1-4748-bd2e-4ee399aab0e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "lot" + }, + "CitationForm": { + "seh": "lota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbe5cf38-4025-4302-a67f-f288ae0d0b1f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5e597800-64a1-4748-bd2e-4ee399aab0e8", + "Definition": {}, + "Gloss": { + "en": "dream", + "pt": "sonhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d34f6947-a053-48c2-b1d7-2f311eed6a48", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cbe5cf38-4025-4302-a67f-f288ae0d0b1f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "741413db-214c-44f0-9646-a3dc4fa3f382", + "DeletedAt": null, + "LexemeForm": { + "seh": "low" + }, + "CitationForm": { + "seh": "lowa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a87fe186-90f5-4664-b096-faa0c8d73c83", + "Order": 1, + "DeletedAt": null, + "EntryId": "741413db-214c-44f0-9646-a3dc4fa3f382", + "Definition": {}, + "Gloss": { + "en": "sink", + "pt": "naufragar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4de33742-5a70-4593-8386-6426bbc5a99c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a87fe186-90f5-4664-b096-faa0c8d73c83", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4507a379-ef26-4e14-9e20-064dfc89951d", + "DeletedAt": null, + "LexemeForm": { + "seh": "lukul" + }, + "CitationForm": { + "seh": "lukula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a48b6a25-3b5b-4749-b75c-5b54f2465c2f", + "Order": 1, + "DeletedAt": null, + "EntryId": "4507a379-ef26-4e14-9e20-064dfc89951d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "when a ruminante animal brings up food", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "ruminate", + "pt": "ruminar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b6c1cc10-351f-4db2-9ef8-407027bc3549", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a48b6a25-3b5b-4749-b75c-5b54f2465c2f", + "DeletedAt": null + } + ] + }, + { + "Id": "ec56155f-e5b8-435d-a475-7a774c86a3d3", + "Order": 2, + "DeletedAt": null, + "EntryId": "4507a379-ef26-4e14-9e20-064dfc89951d", + "Definition": {}, + "Gloss": { + "en": "vomit", + "pt": "vomitar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fad0b873-83d0-4e97-9aeb-6fe7c6768ec9", + "DeletedAt": null, + "LexemeForm": { + "seh": "lukwali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3ffb5f73-0470-40c2-b53d-79dcdd45d2a7", + "Order": 1, + "DeletedAt": null, + "EntryId": "fad0b873-83d0-4e97-9aeb-6fe7c6768ec9", + "Definition": {}, + "Gloss": { + "en": "prostitution", + "pt": "prostituic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b2e9e5e9-c305-4740-a3d4-e83334d07c39", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3ffb5f73-0470-40c2-b53d-79dcdd45d2a7", + "DeletedAt": null + } + ] + }, + { + "Id": "4c579b8c-15d9-4217-91d2-a801e123a806", + "Order": 2, + "DeletedAt": null, + "EntryId": "fad0b873-83d0-4e97-9aeb-6fe7c6768ec9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sexual immorality", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "imoralidade sexual", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "immorality", + "pt": "imoralidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5de74fc5-b4fe-481b-9411-16e5f8c295fa", + "DeletedAt": null, + "LexemeForm": { + "seh": "lul" + }, + "CitationForm": { + "seh": "lula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "54ed62eb-8bcb-47ef-a452-8ea424fe3d01", + "Order": 1, + "DeletedAt": null, + "EntryId": "5de74fc5-b4fe-481b-9411-16e5f8c295fa", + "Definition": { + "en": { + "Spans": [ + { + "Text": "rotting of food because of no refrigeration", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "podrecer comida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rot", + "pt": "podrecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d2d8b05-f018-4ad4-b0a2-273973933f2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "lulup" + }, + "CitationForm": { + "seh": "lulupa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b2804ad1-af28-4a1a-9e64-4219db3dfd42", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d2d8b05-f018-4ad4-b0a2-273973933f2b", + "Definition": {}, + "Gloss": { + "en": "light weight", + "pt": "leve" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4330a027-99e8-481b-8009-d6a5750a00e9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b2804ad1-af28-4a1a-9e64-4219db3dfd42", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2f52d128-5fd5-404f-8e4b-e2b39c157392", + "DeletedAt": null, + "LexemeForm": { + "seh": "lum" + }, + "CitationForm": { + "seh": "luma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea0b55a0-af6b-4491-af06-4fa4ca2f95c7", + "Order": 1, + "DeletedAt": null, + "EntryId": "2f52d128-5fd5-404f-8e4b-e2b39c157392", + "Definition": {}, + "Gloss": { + "en": "bite", + "pt": "morder" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "70a05b51-2334-4adc-a876-ada0eb6c6995", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ea0b55a0-af6b-4491-af06-4fa4ca2f95c7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08f79028-69d4-46ed-bd92-a6370a1f7c6b", + "DeletedAt": null, + "LexemeForm": { + "seh": "lumbza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "48671a5c-801b-4f46-b57a-33a713431e3e", + "Order": 1, + "DeletedAt": null, + "EntryId": "08f79028-69d4-46ed-bd92-a6370a1f7c6b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Livingstone antilope", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "antilope", + "pt": "antelope" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2423dbb1-cb03-40a3-ac64-26eb40a6640b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "48671a5c-801b-4f46-b57a-33a713431e3e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ade2df45-cb8b-4718-a1e3-1b4113047737", + "DeletedAt": null, + "LexemeForm": { + "seh": "lumo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "611bc6d1-791c-4d82-a45f-7721e8b7b7cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "ade2df45-cb8b-4718-a1e3-1b4113047737", + "Definition": {}, + "Gloss": { + "en": "blade", + "pt": "la\u0301mina" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26a00be4-5b87-47de-9850-d7d3c0e8f9a7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "611bc6d1-791c-4d82-a45f-7721e8b7b7cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab02d289-84c7-4f71-a1f9-151708cd27f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "lungam" + }, + "CitationForm": { + "seh": "lungama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "122c9804-0c81-46bf-a059-eff5a71114d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab02d289-84c7-4f71-a1f9-151708cd27f5", + "Definition": {}, + "Gloss": { + "en": "justice", + "pt": "justica" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c09f749c-8d81-4a70-97ba-e0079779773e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "122c9804-0c81-46bf-a059-eff5a71114d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0bb89c2-38b0-4d91-bb8e-09f9529d6c69", + "DeletedAt": null, + "LexemeForm": { + "seh": "lungul" + }, + "CitationForm": { + "seh": "lungula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "45cfd084-6fcc-4918-8aa8-1f448a585505", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0bb89c2-38b0-4d91-bb8e-09f9529d6c69", + "Definition": {}, + "Gloss": { + "en": "salty taste", + "pt": "sabor de sal" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71d0edb7-f3b1-49dc-941a-bf77de1d1c54", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "45cfd084-6fcc-4918-8aa8-1f448a585505", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa3adea2-17d4-48cf-b1f7-a8dbbad88a5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "luphato" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "48326394-3e3c-4ced-a93e-aad376af4be3", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa3adea2-17d4-48cf-b1f7-a8dbbad88a5d", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "lobolo, premeiro promesa, prendas ou dinheiro dado para iniciar uma promessa de casamento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bride price", + "pt": "lobolo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d679307-91c5-43cf-b259-aca5d5a90c2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "lupya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a0e195ba-db0d-4e06-8512-0d683e9d9cb5", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d679307-91c5-43cf-b259-aca5d5a90c2c", + "Definition": {}, + "Gloss": { + "en": "burnt", + "pt": "queimada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28fe0e82-c3da-4557-a2e5-b3e342428a2d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nzizi uno ntsanga musaoneka lupya dza okhaokha.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Este tempo o mato se ve queimado so\u0301mente aquele tipo.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a0e195ba-db0d-4e06-8512-0d683e9d9cb5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5cad3d08-3860-4af6-8d26-b250ee09ea42", + "DeletedAt": null, + "LexemeForm": { + "seh": "luwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88f99db9-c0c5-44b5-a9af-b2c4f61fe87f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5cad3d08-3860-4af6-8d26-b250ee09ea42", + "Definition": {}, + "Gloss": { + "en": "flower", + "pt": "flo\u0301r" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c345f278-91ff-463d-b9a6-8abac8a267eb", + "Name": { + "en": "Grass, herb, vine" + }, + "Code": "1.5.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b27f9aed-bb46-4277-a161-ab49f0aa6412", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "88f99db9-c0c5-44b5-a9af-b2c4f61fe87f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04c59753-bc07-4b42-a0d6-471f9b4db0d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "luz" + }, + "CitationForm": { + "seh": "luza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7bbab562-1e09-4b3c-84ce-f59fbfe201ae", + "Order": 1, + "DeletedAt": null, + "EntryId": "04c59753-bc07-4b42-a0d6-471f9b4db0d7", + "Definition": {}, + "Gloss": { + "en": "lose", + "pt": "perder" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "abbf1b68-f3cd-474c-b7d6-a3f4d9245ae4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7bbab562-1e09-4b3c-84ce-f59fbfe201ae", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "bale" + }, + "CitationForm": { + "seh": "m\u0027bale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a625dc05-4f89-44fb-a88a-3e2f564442dd", + "Order": 1, + "DeletedAt": null, + "EntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "brother, sister", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "brother", + "pt": "irma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3423c016-0d7d-42e5-be79-f333eafacd8d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,33; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a625dc05-4f89-44fb-a88a-3e2f564442dd", + "DeletedAt": null + } + ] + }, + { + "Id": "2ed3a10f-6c6d-40b2-b807-38bbe00a07a0", + "Order": 2, + "DeletedAt": null, + "EntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the plural it can mean family", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sister", + "pt": "irma\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "786ff878-6874-43be-806f-a3dadbd3998d", + "MaybeId": "786ff878-6874-43be-806f-a3dadbd3998d", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "790f529d-28ed-4a50-af49-27de75aecc4f", + "ComplexFormHeadword": "ubale", + "ComponentEntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "ComponentSenseId": null, + "ComponentHeadword": "m\u0027bale" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f04d1336-46bf-4e67-a0ae-8b2520eb0cc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027bambakuca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "649cbb4c-aeac-49d3-9939-2a485927f7d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "f04d1336-46bf-4e67-a0ae-8b2520eb0cc1", + "Definition": {}, + "Gloss": { + "en": "early morning", + "pt": "madurgada" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea32a665-7d74-47bd-a1a2-cc8f1b3a846e", + "DeletedAt": null, + "LexemeForm": { + "seh": "binzi" + }, + "CitationForm": { + "seh": "m\u0027binzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "461c78a8-d2b1-4d57-9c9a-bc14e85364d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea32a665-7d74-47bd-a1a2-cc8f1b3a846e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Jackel, Wild dog or Aardwolf(no distiction made)", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Chacal ou ca\u0303o selvagem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "jackal", + "pt": "chacal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7284946-7853-4504-b8b7-ad5673658e0d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque, Moreira:15", + "Ws": "en" + } + ] + }, + "SenseId": "461c78a8-d2b1-4d57-9c9a-bc14e85364d1", + "DeletedAt": null + } + ] + }, + { + "Id": "9b148078-a552-4b81-91fa-c5313a4badc9", + "Order": 2, + "DeletedAt": null, + "EntryId": "ea32a665-7d74-47bd-a1a2-cc8f1b3a846e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild dog, does not include domestic dog", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "wild dog", + "pt": "ca\u0303o selvagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6e3f095-e1e8-43f9-88a7-0c07de62785b", + "DeletedAt": null, + "LexemeForm": { + "seh": "bobo" + }, + "CitationForm": { + "seh": "m\u0027bobo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef7144af-9ed2-45d2-8ae0-5e8f11d5cce5", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6e3f095-e1e8-43f9-88a7-0c07de62785b", + "Definition": {}, + "Gloss": { + "en": "snake type", + "pt": "cobra tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9734a448-1a40-4b69-b761-0fb698008c99", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef7144af-9ed2-45d2-8ae0-5e8f11d5cce5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "76507046-08dd-42da-8179-7290e797c7e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027boliboli" + }, + "CitationForm": { + "seh": "m\u0027boliboli" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f80ea820-9403-463b-aaf5-e0e7747d95d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "76507046-08dd-42da-8179-7290e797c7e4", + "Definition": {}, + "Gloss": { + "en": "blind person", + "pt": "cego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5cda2cbe-24b5-47e3-ba09-1280c6ed8d2c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f80ea820-9403-463b-aaf5-e0e7747d95d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8b999bd-aae7-4303-b4ae-a156b281ea30", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027dzukwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d2999056-d762-47c7-966a-8f2fc20d1272", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8b999bd-aae7-4303-b4ae-a156b281ea30", + "Definition": {}, + "Gloss": { + "en": "ghost", + "pt": "fantasma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd48ee8f-48bd-4ab9-a964-d369d3dd8921", + "DeletedAt": null, + "LexemeForm": { + "seh": "phale" + }, + "CitationForm": { + "seh": "m\u0027phale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c63aca2-095f-4b6c-a2ad-f0b45abc4345", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd48ee8f-48bd-4ab9-a964-d369d3dd8921", + "Definition": {}, + "Gloss": { + "en": "boy", + "pt": "rapaz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8453ff91-003f-470a-84c2-9e5edac856a3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "2c63aca2-095f-4b6c-a2ad-f0b45abc4345", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b69e7877-6b8b-4b35-af0c-42dc6f4f6a6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "phembero" + }, + "CitationForm": { + "seh": "m\u0027phembero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4b55442-7b5f-4da4-8df5-f41a07a7a07a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b69e7877-6b8b-4b35-af0c-42dc6f4f6a6a", + "Definition": {}, + "Gloss": { + "en": "prayer", + "pt": "orac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "029dfc24-e810-436c-8e41-0b9594e2aa97", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a4b55442-7b5f-4da4-8df5-f41a07a7a07a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "444d0b18-88cc-4d40-bee3-44eb2fcdc937", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027phole-m\u0027phole" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8d2938b5-66df-4628-a5d2-331356818b90", + "Order": 1, + "DeletedAt": null, + "EntryId": "444d0b18-88cc-4d40-bee3-44eb2fcdc937", + "Definition": {}, + "Gloss": { + "en": "slowly", + "pt": "devegar" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f49cf039-9a78-4275-812f-e82a0c6070eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d2938b5-66df-4628-a5d2-331356818b90", + "DeletedAt": null + } + ] + }, + { + "Id": "e4f8f769-2814-4cf2-b98d-b03db5840f52", + "Order": 2, + "DeletedAt": null, + "EntryId": "444d0b18-88cc-4d40-bee3-44eb2fcdc937", + "Definition": {}, + "Gloss": { + "en": "with care", + "pt": "cautela" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "932a69bd-4e22-40a2-9a88-6d27e1feb482", + "DeletedAt": null, + "LexemeForm": { + "seh": "m\u0027phy" + }, + "CitationForm": { + "seh": "m\u0027phya" + }, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "8af45d7c-067b-4bac-9eb4-0c0e6bd35c9c", + "Order": 1, + "DeletedAt": null, + "EntryId": "932a69bd-4e22-40a2-9a88-6d27e1feb482", + "Definition": {}, + "Gloss": { + "en": "is of", + "pt": "e\u0301 de" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8be4b8a-546b-4fb9-8d82-62c03124f41c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8af45d7c-067b-4bac-9eb4-0c0e6bd35c9c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4242ac27-b0bf-4d39-86ce-0efb655ead4a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ma" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "e9fc5fdd-7261-4dd9-81ee-dad6106b5bcc", + "Order": 1, + "DeletedAt": null, + "EntryId": "4242ac27-b0bf-4d39-86ce-0efb655ead4a", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bea76ea6-9cd6-491a-9158-47a29ba95ffe", + "DeletedAt": null, + "LexemeForm": { + "seh": "ma" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1871ee3d-67a2-4ccc-adbd-413b2535f0fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "bea76ea6-9cd6-491a-9158-47a29ba95ffe", + "Definition": {}, + "Gloss": { + "en": "6", + "pt": "6" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c76ff5f1-2b47-4670-9c26-f986bf6a5dc1", + "DeletedAt": null, + "LexemeForm": { + "seh": "amacadu" + }, + "CitationForm": { + "seh": "macadu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "89e08ce0-76fe-4600-909c-a6ef6ddc369f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c76ff5f1-2b47-4670-9c26-f986bf6a5dc1", + "Definition": {}, + "Gloss": { + "en": "axe", + "pt": "machado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ddbb6bd6-4269-438f-8e81-7c0f1322e3b3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "89e08ce0-76fe-4600-909c-a6ef6ddc369f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "013dd3e2-358f-4c3d-9274-330b93626e7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "cibese" + }, + "CitationForm": { + "seh": "macibese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7be81c0e-c674-4ffc-8c2e-e74e5f87a429", + "Order": 1, + "DeletedAt": null, + "EntryId": "013dd3e2-358f-4c3d-9274-330b93626e7f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "starting at around 4am until masikati", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "morning", + "pt": "manha\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4889a68-6b75-418f-a903-c5c580f5ddc7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13,19", + "Ws": "en" + } + ] + }, + "SenseId": "7be81c0e-c674-4ffc-8c2e-e74e5f87a429", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3dc760ba-5910-4979-9b9b-32e6a3245831", + "DeletedAt": null, + "LexemeForm": { + "seh": "citiro" + }, + "CitationForm": { + "seh": "macitiro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f2bfb53-00f2-4797-9b6b-e516e0ce179f", + "Order": 1, + "DeletedAt": null, + "EntryId": "3dc760ba-5910-4979-9b9b-32e6a3245831", + "Definition": { + "en": { + "Spans": [ + { + "Text": "habits, manner of acting", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "maneira de actos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "habits", + "pt": "ha\u0301bitos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b55dffb-d386-437b-8fa3-9f3b1b4281d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1f2bfb53-00f2-4797-9b6b-e516e0ce179f", + "DeletedAt": null + } + ] + }, + { + "Id": "52d378cc-8bee-46e9-be52-68d791d04080", + "Order": 2, + "DeletedAt": null, + "EntryId": "3dc760ba-5910-4979-9b9b-32e6a3245831", + "Definition": {}, + "Gloss": { + "en": "what you do" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ec4d122-342c-4eec-bc85-52e0133b3e2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunguzo" + }, + "CitationForm": { + "seh": "macunguzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3fbf73de-bc50-4b0e-a81d-4d4a7274fe31", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ec4d122-342c-4eec-bc85-52e0133b3e2d", + "Definition": {}, + "Gloss": { + "en": "marriage", + "pt": "casamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "45999096-e8b6-4dfc-8914-0f58b3fb7942", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3fbf73de-bc50-4b0e-a81d-4d4a7274fe31", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "64b8230d-3a23-424f-8e4d-dcd8e21644e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "dyaundu" + }, + "CitationForm": { + "seh": "madyaundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5e8265a3-3165-4af9-a937-69e5f2a6139a", + "Order": 1, + "DeletedAt": null, + "EntryId": "64b8230d-3a23-424f-8e4d-dcd8e21644e2", + "Definition": {}, + "Gloss": { + "en": "gourd plant", + "pt": "cabac\u0327eira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "89512d58-0851-4c01-a0c7-7718fb1da3a8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Carlotta", + "Ws": "en" + } + ] + }, + "SenseId": "5e8265a3-3165-4af9-a937-69e5f2a6139a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c4f4316e-eef4-438a-8e26-4a5e88c21043", + "DeletedAt": null, + "LexemeForm": { + "seh": "madyo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "efc09d29-c9cd-465c-90dd-e7b1573aa8c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "c4f4316e-eef4-438a-8e26-4a5e88c21043", + "Definition": {}, + "Gloss": { + "en": "right side", + "pt": "direito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "908fc4c2-ca59-4c2b-bdc6-68e61ecf9058", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "efc09d29-c9cd-465c-90dd-e7b1573aa8c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "966fb39e-6c2b-434e-b156-ea2797510c13", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": { + "seh": "madzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e15307e9-af9b-4c96-b500-7da6cae75fc3", + "Order": 1, + "DeletedAt": null, + "EntryId": "966fb39e-6c2b-434e-b156-ea2797510c13", + "Definition": {}, + "Gloss": { + "en": "water", + "pt": "a\u0301gua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "60364974-a005-4567-82e9-7aaeff894ab0", + "Name": { + "en": "Water" + }, + "Code": "1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7b23e2b5-0913-4110-987f-f49a6acd672d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e15307e9-af9b-4c96-b500-7da6cae75fc3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0fd18421-b43a-4f15-b59e-258e4aded3e5", + "DeletedAt": null, + "LexemeForm": { + "seh": "mai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c6142fea-e652-40b7-b102-80fa25f41171", + "Order": 1, + "DeletedAt": null, + "EntryId": "0fd18421-b43a-4f15-b59e-258e4aded3e5", + "Definition": {}, + "Gloss": { + "en": "mother", + "pt": "ma\u0303e" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efbb0fd2-f6be-4d34-acd4-a5deb7edc2b4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook", + "Ws": "en" + } + ] + }, + "SenseId": "c6142fea-e652-40b7-b102-80fa25f41171", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c264498-be24-45ff-8e89-74bee6d331a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "makamaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "db1b84b1-735e-4654-b942-bf0785e5c957", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c264498-be24-45ff-8e89-74bee6d331a7", + "Definition": {}, + "Gloss": { + "en": "more than that", + "pt": "sobretudo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23171277-7731-4c1a-85aa-dd1e18151779", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisakufunani bwenye makamaka babano", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Gosto (com respeito) sobretudo seu pai.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "db1b84b1-735e-4654-b942-bf0785e5c957", + "DeletedAt": null + }, + { + "Id": "959aff94-7218-483a-8d80-62cf3359852b", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisamwa kafe bwenye makamaka kokakola.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Bebo mais Coca Cola do que cafe.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "db1b84b1-735e-4654-b942-bf0785e5c957", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c92125f-2581-40b7-a285-f631c69067ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaliro" + }, + "CitationForm": { + "seh": "makhaliro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb463714-a764-41a6-930d-72042a2d09ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": { + "en": { + "Spans": [ + { + "Text": "behaviour", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "comportamento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "behaviour", + "pt": "comportamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "425b3984-e46d-4ec4-855a-ce912dfc47d7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ana acincino makhaliro awo mbanawa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Crianc\u0327as de agora (hoje\u0301) comportamento deles e\u0301 este.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "fb463714-a764-41a6-930d-72042a2d09ec", + "DeletedAt": null + } + ] + }, + { + "Id": "75e9c0e7-e53d-45b6-84cc-09eb21401f99", + "Order": 2, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": {}, + "Gloss": { + "en": "culture", + "pt": "cultura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "b37cebbd-6125-438b-aebd-e65174d9f464", + "Order": 3, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": {}, + "Gloss": { + "en": "entity", + "pt": "entidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e3873582-d497-4056-8de1-fc93329a7edf", + "Order": 4, + "DeletedAt": null, + "EntryId": "9c92125f-2581-40b7-a285-f631c69067ae", + "Definition": {}, + "Gloss": { + "en": "essense", + "pt": "essencia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09765816-82fe-4e50-b90a-8fc0608806c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "konzero" + }, + "CitationForm": { + "seh": "makonzero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ec144453-8e8a-45cc-b506-495ca91ba00f", + "Order": 1, + "DeletedAt": null, + "EntryId": "09765816-82fe-4e50-b90a-8fc0608806c6", + "Definition": {}, + "Gloss": { + "en": "way of curing", + "pt": "maneira de curar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a60dd263-3e07-4470-b48a-e9c47ef0dc40", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Makonzero ace mbakuipa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "A maneira que ele esta\u0301 a curar (tratar doentes) e\u0301 mal.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "ec144453-8e8a-45cc-b506-495ca91ba00f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d2d8a29-b6f3-4c51-bead-b6f657b8894e", + "DeletedAt": null, + "LexemeForm": { + "seh": "makote" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4e518d15-c861-4f3b-bd03-c757d9598bf8", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d2d8a29-b6f3-4c51-bead-b6f657b8894e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "communal.harvesting work", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "trabalho.colectivo de colheita", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "harvest", + "pt": "colheita" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0e9f77a9-ae38-43ab-986c-b72debddc315", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4e518d15-c861-4f3b-bd03-c757d9598bf8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "634c2bfe-ad43-4215-a521-cc41414055d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "kuliro" + }, + "CitationForm": { + "seh": "makuliro" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8910df53-b949-4206-9f66-bf799a42c9cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "634c2bfe-ad43-4215-a521-cc41414055d2", + "Definition": {}, + "Gloss": { + "en": "growing", + "pt": "crecimento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1b2f7c4-8bca-4982-a2a9-326b15ee4f50", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8910df53-b949-4206-9f66-bf799a42c9cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e4bae19-8715-4eb9-9e34-2d5e84e88987", + "DeletedAt": null, + "LexemeForm": { + "seh": "makumanai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "11782e46-c080-4795-843b-96fb819cba28", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e4bae19-8715-4eb9-9e34-2d5e84e88987", + "Definition": {}, + "Gloss": { + "en": "forty", + "pt": "quarenta" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "97c6d521-4b8d-4509-8cb6-d68504b637ea", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "11782e46-c080-4795-843b-96fb819cba28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "010b10bf-b36b-472c-8048-0bb3349e7b5c", + "DeletedAt": null, + "LexemeForm": { + "seh": "makuantanthatu" + }, + "CitationForm": { + "seh": "makumatanthatu" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "601deede-c9d4-4d77-aa8e-a2e9ac75d53f", + "Order": 1, + "DeletedAt": null, + "EntryId": "010b10bf-b36b-472c-8048-0bb3349e7b5c", + "Definition": {}, + "Gloss": { + "en": "sixty", + "pt": "sessenta" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4eb00bbe-4479-481b-8c91-00430f32e780", + "DeletedAt": null, + "LexemeForm": { + "seh": "makumatatu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "edbb9351-ca4a-4b12-a70b-50de1c298db4", + "Order": 1, + "DeletedAt": null, + "EntryId": "4eb00bbe-4479-481b-8c91-00430f32e780", + "Definition": {}, + "Gloss": { + "en": "thirty", + "pt": "trinte" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a7e47662-39d5-4558-868f-ac871b1f1ff9", + "DeletedAt": null, + "LexemeForm": { + "seh": "makumawiri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "319b5368-715d-4ff1-a6f5-01de219b6be7", + "Order": 1, + "DeletedAt": null, + "EntryId": "a7e47662-39d5-4558-868f-ac871b1f1ff9", + "Definition": {}, + "Gloss": { + "en": "twenty", + "pt": "vinte" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aa6e0ba9-2956-42db-bf37-5c06fa2ceff1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "319b5368-715d-4ff1-a6f5-01de219b6be7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4772d058-ec6e-45fe-bc61-33e6761aa7bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "mal" + }, + "CitationForm": { + "seh": "mala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38b1819b-80b8-4894-992e-80f3da0b48a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "4772d058-ec6e-45fe-bc61-33e6761aa7bc", + "Definition": {}, + "Gloss": { + "en": "finish", + "pt": "acabar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "83a5643e-2e8f-414f-9f77-8f4cd68d132b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndamala kudya.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Acabei comer.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "38b1819b-80b8-4894-992e-80f3da0b48a9", + "DeletedAt": null + }, + { + "Id": "b2d48890-aac6-4c42-911f-626981e117a3", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndingamala kusamba ndinadya.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Quando acabar banhar vou comer.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "38b1819b-80b8-4894-992e-80f3da0b48a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e11ff2a9-ff7c-496d-b848-aabd77d9bca9", + "DeletedAt": null, + "LexemeForm": { + "seh": "landalupya" + }, + "CitationForm": { + "seh": "malandalupya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0388212f-ad6d-42ce-a72f-4441945f5547", + "Order": 1, + "DeletedAt": null, + "EntryId": "e11ff2a9-ff7c-496d-b848-aabd77d9bca9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "summer, time to burn", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "summer", + "pt": "vera\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "72799068-7cc5-45f9-87c0-c67e839a08e8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0388212f-ad6d-42ce-a72f-4441945f5547", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6900dedb-2f3c-41f3-9c67-9f92b6ac8b18", + "DeletedAt": null, + "LexemeForm": { + "seh": "lemba" + }, + "CitationForm": { + "seh": "malemba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d53a476-c543-4f58-bc95-92ac73bcee5a", + "Order": 1, + "DeletedAt": null, + "EntryId": "6900dedb-2f3c-41f3-9c67-9f92b6ac8b18", + "Definition": {}, + "Gloss": { + "en": "writings", + "pt": "escritura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5ea40a0-c4ff-417d-9f51-230283583916", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1d53a476-c543-4f58-bc95-92ac73bcee5a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bb8b588-0d50-4c6e-854f-9c894597aed1", + "DeletedAt": null, + "LexemeForm": { + "seh": "malikofa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d7ff011f-0022-4533-902b-56e93efdab6a", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bb8b588-0d50-4c6e-854f-9c894597aed1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "basket for traveling", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cesta de viagem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "basket", + "pt": "cesta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "459ec1c8-c9b5-4a8e-824a-77d95e659cd8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d7ff011f-0022-4533-902b-56e93efdab6a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad10ba32-bcc7-43cd-a41a-1d41b2c67251", + "DeletedAt": null, + "LexemeForm": { + "seh": "malis" + }, + "CitationForm": { + "seh": "malisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad10ba32-bcc7-43cd-a41a-1d41b2c67251", + "Definition": {}, + "Gloss": { + "en": "cause to finish", + "pt": "causar acabar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61738de2-6553-4a34-9adf-1cfb3144e83a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndiri kumalisa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "faulta pouco para acabar", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", + "DeletedAt": null + }, + { + "Id": "601f347c-3396-475d-93f8-092d71f1c603", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0d59fe4f-9e19-4763-81ba-bd45d1e23037", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9ed4cbe-d4b6-42cb-891b-0f4ae76dda09", + "DeletedAt": null, + "LexemeForm": { + "seh": "londa" + }, + "CitationForm": { + "seh": "malonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e67054cc-f854-4ea7-b572-aade7b6ad1cf", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9ed4cbe-d4b6-42cb-891b-0f4ae76dda09", + "Definition": {}, + "Gloss": { + "en": "trade", + "pt": "nego\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e4c53c2-cffc-4a2b-8348-9c9638bac0e7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e67054cc-f854-4ea7-b572-aade7b6ad1cf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "DeletedAt": null, + "LexemeForm": { + "seh": "longero" + }, + "CitationForm": { + "seh": "malongero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "10f0881e-85ec-4486-ac2f-e6ea88516505", + "Order": 1, + "DeletedAt": null, + "EntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the customary way that a certain person talks", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "way of speaking", + "pt": "forma de falar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "399572af-4914-4f6b-b91c-203776a04319", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Malongero a Antonio nkhabe kubveka.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "O forma de falar de Antonio na\u0303o se entende.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "10f0881e-85ec-4486-ac2f-e6ea88516505", + "DeletedAt": null + } + ] + }, + { + "Id": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", + "Order": 2, + "DeletedAt": null, + "EntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "Definition": {}, + "Gloss": { + "en": "a language", + "pt": "uma li\u0301nuga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "577e88b2-19d0-49c3-a753-99fb0be9b576", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "malongero a cigerego", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "language of Greek", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "li\u0301nuga de grego", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "7c15746d-d7bd-4e44-8acf-78fa7b4b6aec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "8cbc8e55-fb1a-4cb0-a670-3928d20af8b1", + "MaybeId": "8cbc8e55-fb1a-4cb0-a670-3928d20af8b1", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a0e66091-c1bd-4188-8119-0d5a88afbe78", + "ComplexFormHeadword": "malongero", + "ComponentEntryId": "069db5da-52da-42b1-a39f-c8e4554f6362", + "ComponentSenseId": null, + "ComponentHeadword": "longa" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfcc9c5b-2dda-4ab6-8eea-36c9c3f2031b", + "DeletedAt": null, + "LexemeForm": { + "seh": "mama" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b6779c26-0a60-4de2-b6f2-110d923d6882", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfcc9c5b-2dda-4ab6-8eea-36c9c3f2031b", + "Definition": {}, + "Gloss": { + "en": "mother", + "pt": "ma\u0303e" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "56c12184-6508-4ef1-9435-9b20d41a0d04", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1,33", + "Ws": "en" + } + ] + }, + "SenseId": "b6779c26-0a60-4de2-b6f2-110d923d6882", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "212bba96-db9e-4b3a-9158-81376ca0fcba", + "DeletedAt": null, + "LexemeForm": { + "seh": "mazimambo" + }, + "CitationForm": { + "seh": "mambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a6beb173-ee69-45f7-ad58-2834e81cc4f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "212bba96-db9e-4b3a-9158-81376ca0fcba", + "Definition": {}, + "Gloss": { + "en": "king", + "pt": "rei" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "35632d6f-f6a8-4bae-82cf-a6f065a0baba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19 diz pr= \u0022dias\u0022 gr= 6", + "Ws": "en" + } + ] + }, + "SenseId": "a6beb173-ee69-45f7-ad58-2834e81cc4f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbwera" + }, + "CitationForm": { + "seh": "mambwera-mbwera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e3433c1a-13bb-4aa1-ade7-cc7f2ac780c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "Definition": {}, + "Gloss": { + "en": "left-overs", + "pt": "migalhes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b98f75a3-8ee9-4b38-ba71-0b5ab312e3eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e3433c1a-13bb-4aa1-ade7-cc7f2ac780c2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "0f5a1ea1-84e3-485c-8aa0-199811960a4b", + "MaybeId": "0f5a1ea1-84e3-485c-8aa0-199811960a4b", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "fb8194ed-fb58-4a0e-8938-c476367dbbf4", + "ComplexFormHeadword": "mambwera-mbwera", + "ComponentEntryId": "4cd4ae6b-f67c-478a-86c8-b2be8932d44d", + "ComponentSenseId": null, + "ComponentHeadword": "bwera" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "70627ebf-b344-4412-be65-c36fdb8190cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "mamphasa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4f53bb12-ebc7-4893-af3f-efc435cb6333", + "Order": 1, + "DeletedAt": null, + "EntryId": "70627ebf-b344-4412-be65-c36fdb8190cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "multiple birth, twins or triplets or more", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "twins", + "pt": "ge\u0302meos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9b6be8d-dceb-44d9-a231-29a85e6d049e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4f53bb12-ebc7-4893-af3f-efc435cb6333", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "54f91027-d1bf-4a84-b47f-ecbe1e1096d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": { + "seh": "mamuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84a2be95-35ad-49a6-8366-4f77b22b7737", + "Order": 1, + "DeletedAt": null, + "EntryId": "54f91027-d1bf-4a84-b47f-ecbe1e1096d3", + "Definition": {}, + "Gloss": { + "en": "male", + "pt": "masculino" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ee7fb5d-1703-4a4a-b236-c2e2df102106", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ngombe imuna", + "Ws": "en" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "male ox", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "boi masculino", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "84a2be95-35ad-49a6-8366-4f77b22b7737", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c86b8756-aae2-452a-a4e3-677aae25f4ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": { + "seh": "mamuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f772d5cf-e5e9-4a1b-a3a1-ddbe27ae2f14", + "Order": 1, + "DeletedAt": null, + "EntryId": "c86b8756-aae2-452a-a4e3-677aae25f4ac", + "Definition": {}, + "Gloss": { + "en": "man", + "pt": "homen" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0698e2b7-9769-4956-95f0-c8f46479d632", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira 26", + "Ws": "en" + } + ] + }, + "SenseId": "f772d5cf-e5e9-4a1b-a3a1-ddbe27ae2f14", + "DeletedAt": null + } + ] + }, + { + "Id": "60b0f55b-d605-4ca1-a1cd-c8e82a49707e", + "Order": 2, + "DeletedAt": null, + "EntryId": "c86b8756-aae2-452a-a4e3-677aae25f4ac", + "Definition": {}, + "Gloss": { + "en": "husband", + "pt": "marido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "565d4dc8-d32e-4753-b21c-069e1f5fc77c", + "DeletedAt": null, + "LexemeForm": { + "seh": "man" + }, + "CitationForm": { + "seh": "mana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "89ce983e-4216-43b0-8096-a826d80c20e7", + "Order": 1, + "DeletedAt": null, + "EntryId": "565d4dc8-d32e-4753-b21c-069e1f5fc77c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "refuse to share for love of food", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "glutonous", + "pt": "golozise" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2d189163-1b80-4d46-a7d6-e4e18f77fca5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "89ce983e-4216-43b0-8096-a826d80c20e7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "435ef209-5021-4ded-8bae-731d9e9899a6", + "DeletedAt": null, + "LexemeForm": { + "seh": "mang" + }, + "CitationForm": { + "seh": "manga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f32c1cb-884c-49ef-b610-9179b3454c30", + "Order": 1, + "DeletedAt": null, + "EntryId": "435ef209-5021-4ded-8bae-731d9e9899a6", + "Definition": {}, + "Gloss": { + "en": "tie up", + "pt": "amarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9ba9f0a1-205a-4dda-ba1f-a3f25618e2b9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akhazimanga", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "amarrava-a", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Meque-Mark1", + "Ws": "en" + } + ] + }, + "SenseId": "1f32c1cb-884c-49ef-b610-9179b3454c30", + "DeletedAt": null + }, + { + "Id": "94f9c2dd-00ed-44f1-a26f-8b448d1db2e9", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "tamanga nyumba", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "1f32c1cb-884c-49ef-b610-9179b3454c30", + "DeletedAt": null + } + ] + }, + { + "Id": "ee07fe98-80ff-4cc7-a2ec-e27deeb7df23", + "Order": 2, + "DeletedAt": null, + "EntryId": "435ef209-5021-4ded-8bae-731d9e9899a6", + "Definition": {}, + "Gloss": { + "en": "construct", + "pt": "construir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "574fbf69-453e-4b6f-97fa-3ee71cc2c84e", + "DeletedAt": null, + "LexemeForm": { + "seh": "manga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5547e1b1-0d57-43db-be6f-bc636f8ffa7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "574fbf69-453e-4b6f-97fa-3ee71cc2c84e", + "Definition": {}, + "Gloss": { + "en": "mango tree", + "pt": "mangeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl: mimanga sg: ??", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93a33c0a-5d65-44d6-8bb3-48fee1d1403a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mangawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1eecd5c-342e-4d45-9ae0-f7351d18ed55", + "Order": 1, + "DeletedAt": null, + "EntryId": "93a33c0a-5d65-44d6-8bb3-48fee1d1403a", + "Definition": {}, + "Gloss": { + "en": "debt", + "pt": "di\u0301vida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "53edf717-6c24-439f-8e74-7096e49adda3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c1eecd5c-342e-4d45-9ae0-f7351d18ed55", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49660c60-d3ed-4355-af61-68a46c12e8a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "mangwana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fcd8d925-5562-419a-a0f7-729609a2a7fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "49660c60-d3ed-4355-af61-68a46c12e8a8", + "Definition": {}, + "Gloss": { + "en": "tomorrow", + "pt": "amanha\u0303" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "698c2eb4-0e99-4618-9cbf-db6be6f4e880", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac", + "Ws": "en" + } + ] + }, + "SenseId": "fcd8d925-5562-419a-a0f7-729609a2a7fe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7c14bb4-0027-4609-a1c9-e3d83fb3e95e", + "DeletedAt": null, + "LexemeForm": { + "seh": "maningi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b20a8b8c-6dbe-404b-9e5f-5a1803329125", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7c14bb4-0027-4609-a1c9-e3d83fb3e95e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "much, many", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "much", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b6ee938-5d76-4a54-9840-49e9d135194e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "b20a8b8c-6dbe-404b-9e5f-5a1803329125", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1e5c886-ad06-444e-89dc-a4ead0a8fc5c", + "DeletedAt": null, + "LexemeForm": { + "seh": "mankhadzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5d316f71-9f38-4273-9963-c04cc1446167", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1e5c886-ad06-444e-89dc-a4ead0a8fc5c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "boy friend, lover, fiance\u0301", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "fiance\u0301", + "pt": "noivo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "89a23ecf-a007-47a8-a396-a740294db0af", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5d316f71-9f38-4273-9963-c04cc1446167", + "DeletedAt": null + }, + { + "Id": "af0f7294-27b0-48be-a269-0e2e5f0bdca6", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5d316f71-9f38-4273-9963-c04cc1446167", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa08457d-e296-4aab-a6e1-71e00fd6bce5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nungo" + }, + "CitationForm": { + "seh": "manungo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1063b7d7-a239-46cc-b345-96631b31fede", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa08457d-e296-4aab-a6e1-71e00fd6bce5", + "Definition": {}, + "Gloss": { + "en": "body", + "pt": "corpo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "137a6133-05bc-423f-b02e-cc3c78efdae6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "1063b7d7-a239-46cc-b345-96631b31fede", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f16c050e-dd7e-48e5-a7be-95d4ad1efd2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "manyazo" + }, + "CitationForm": { + "seh": "manyadzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "34976250-13b2-4ddf-b6da-d9737e7365ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "f16c050e-dd7e-48e5-a7be-95d4ad1efd2b", + "Definition": {}, + "Gloss": { + "en": "shame", + "pt": "vergonha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26652b7e-6659-4510-9b10-b2bcebc19dc4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "34976250-13b2-4ddf-b6da-d9737e7365ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7c8a122-c047-493f-825e-a711aef36899", + "DeletedAt": null, + "LexemeForm": { + "seh": "manyedzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "43c943ac-02b2-438d-9c5c-0c8dc5f5495d", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7c8a122-c047-493f-825e-a711aef36899", + "Definition": {}, + "Gloss": { + "en": "table scraps", + "pt": "migalha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f97439fc-d851-46fc-a760-699d81a2c2cb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "43c943ac-02b2-438d-9c5c-0c8dc5f5495d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32f6ecd0-d22b-45cc-bbec-5ce9c1ce9fb1", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyengerero" + }, + "CitationForm": { + "seh": "manyengerero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "85e6f588-f11b-4c33-a357-397479f3d9ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "32f6ecd0-d22b-45cc-bbec-5ce9c1ce9fb1", + "Definition": {}, + "Gloss": { + "en": "temptations", + "pt": "tetac\u0327o\u0303es" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88d941f8-0938-4205-8f85-6e22f00b8087", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "85e6f588-f11b-4c33-a357-397479f3d9ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1d88a23a-d209-42d8-be45-1d59d1b00f88", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyerezero" + }, + "CitationForm": { + "seh": "manyerezero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f2cdf68d-32bc-4d0d-9adf-050026c3c84b", + "Order": 1, + "DeletedAt": null, + "EntryId": "1d88a23a-d209-42d8-be45-1d59d1b00f88", + "Definition": {}, + "Gloss": { + "en": "thoughts", + "pt": "pensamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "63a6f605-644d-40aa-878f-02f5c361f8ab", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f2cdf68d-32bc-4d0d-9adf-050026c3c84b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e1b75d0-95ae-4116-bb6c-08f0be2d9ae6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyezo" + }, + "CitationForm": { + "seh": "manyezo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bf91ed99-0560-4fb0-b3ef-4b6bc1888b80", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e1b75d0-95ae-4116-bb6c-08f0be2d9ae6", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "migalhas pequenos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "crumbs", + "pt": "migalhas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ad85665-de48-4c30-a9c1-bb931d2ebe3e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "bf91ed99-0560-4fb0-b3ef-4b6bc1888b80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "DeletedAt": null, + "LexemeForm": { + "seh": "pika" + }, + "CitationForm": { + "seh": "mapika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c04a03f5-5139-4ee7-b9c7-c49ae92c8e2f", + "Order": 1, + "DeletedAt": null, + "EntryId": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "Definition": {}, + "Gloss": { + "en": "race", + "pt": "corrida" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eab2939b-1861-492e-ba14-7ce36361b256", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:16", + "Ws": "en" + } + ] + }, + "SenseId": "c04a03f5-5139-4ee7-b9c7-c49ae92c8e2f", + "DeletedAt": null + } + ] + }, + { + "Id": "0822131f-95c9-4c5b-b28a-f7203db30f55", + "Order": 2, + "DeletedAt": null, + "EntryId": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "Definition": {}, + "Gloss": { + "en": "bet", + "pt": "aposta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "e9000da3-e344-44b0-824d-b9977e535d49", + "Order": 3, + "DeletedAt": null, + "EntryId": "8fc27dd7-9926-46e5-b175-5c6990ad3c03", + "Definition": {}, + "Gloss": { + "en": "challenge", + "pt": "disafio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d9f4ade-c774-456a-8500-2532ae6f8c7a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mapita" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f531ecf-0f20-44fa-a102-1d2f124709e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d9f4ade-c774-456a-8500-2532ae6f8c7a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "competition in general", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "competition", + "pt": "competic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a6344df-c062-457b-95e5-9b5d97bb44d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0f531ecf-0f20-44fa-a102-1d2f124709e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3e8d5d25-2d5d-40a8-9f38-603a4cc55b77", + "DeletedAt": null, + "LexemeForm": { + "seh": "marambe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "06bc691e-5a54-4a35-ab95-849b45b7721a", + "Order": 1, + "DeletedAt": null, + "EntryId": "3e8d5d25-2d5d-40a8-9f38-603a4cc55b77", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild cat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "wild cat", + "pt": "gato bravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2c895875-6eaa-47bd-a5cb-4b2df046b2c7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "06bc691e-5a54-4a35-ab95-849b45b7721a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "365a86f9-cdbf-4229-9bd4-43edd2c960ad", + "DeletedAt": null, + "LexemeForm": { + "seh": "sali" + }, + "CitationForm": { + "seh": "masali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "48999a41-330e-4325-8fc2-fc6f660b057e", + "Order": 1, + "DeletedAt": null, + "EntryId": "365a86f9-cdbf-4229-9bd4-43edd2c960ad", + "Definition": { + "en": { + "Spans": [ + { + "Text": "place of a new.house", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "lugar novo de residencia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "new house", + "pt": "casa nova" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4299e25-c472-4e22-a93a-f1d8c05a197d", + "DeletedAt": null, + "LexemeForm": { + "seh": "masedze" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0daee1c3-bf0a-4a64-8d6a-705ab4ab5c14", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4299e25-c472-4e22-a93a-f1d8c05a197d", + "Definition": {}, + "Gloss": { + "en": "even though", + "pt": "embora" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23b7a7a7-4595-4adb-ad08-82a69b208eba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0daee1c3-bf0a-4a64-8d6a-705ab4ab5c14", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ff0c084-5f25-4630-8fe2-549171d77c70", + "DeletedAt": null, + "LexemeForm": { + "seh": "masese" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d70e028c-2bf8-4dcc-aa25-54f372ec9dd4", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ff0c084-5f25-4630-8fe2-549171d77c70", + "Definition": {}, + "Gloss": { + "en": "even though", + "pt": "embora" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "19739104-8bf8-4c51-b572-e16512650784", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d70e028c-2bf8-4dcc-aa25-54f372ec9dd4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba8417fa-101a-4ec9-99a3-cf2b4fd8ff63", + "DeletedAt": null, + "LexemeForm": { + "seh": "sikati" + }, + "CitationForm": { + "seh": "masikati" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f96c1723-a60f-42db-83da-de68fff7b641", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba8417fa-101a-4ec9-99a3-cf2b4fd8ff63", + "Definition": { + "en": { + "Spans": [ + { + "Text": "heat of the day, 11 to 15 hours", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "parte de dia colorosa, de 11 a 15 horas", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "afternoon", + "pt": "tarde" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "313df45a-140b-4d31-b01d-f5b590f64e4d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "f96c1723-a60f-42db-83da-de68fff7b641", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "897a6c8c-a72e-4155-b8c2-baa516a20971", + "DeletedAt": null, + "LexemeForm": { + "seh": "siku" + }, + "CitationForm": { + "seh": "masiku" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "11d1070b-3b98-4b55-9242-02b6674d2a78", + "Order": 1, + "DeletedAt": null, + "EntryId": "897a6c8c-a72e-4155-b8c2-baa516a20971", + "Definition": { + "en": { + "Spans": [ + { + "Text": "when the sunlight is completely gone until macibesi", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "evening", + "pt": "noite" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "823f3a8f-8205-43b7-9776-dc8f4d3c8904", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "11d1070b-3b98-4b55-9242-02b6674d2a78", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0a53f674-07dd-410d-b3f2-e98bf7dd34eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "masiye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a46c1374-9f24-47bb-8a61-db6f0e7fc85e", + "Order": 1, + "DeletedAt": null, + "EntryId": "0a53f674-07dd-410d-b3f2-e98bf7dd34eb", + "Definition": {}, + "Gloss": { + "en": "cemetery", + "pt": "cemite\u0301rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7703d1c3-a882-4ac4-8987-c3725b7aeb96", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a46c1374-9f24-47bb-8a61-db6f0e7fc85e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad5ea011-1c39-4b15-94c8-327d17851753", + "DeletedAt": null, + "LexemeForm": { + "seh": "mata" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae58f54b-7f05-4d1d-a022-02ebc5405989", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad5ea011-1c39-4b15-94c8-327d17851753", + "Definition": {}, + "Gloss": { + "en": "saliva", + "pt": "saliva" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "75825d72-695b-4e92-9f33-0f3ab4d7dd11", + "Name": { + "en": "Spit, saliva" + }, + "Code": "2.2.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f32a3656-c7a6-48c8-b224-1ad307408ae5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ae58f54b-7f05-4d1d-a022-02ebc5405989", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3fbb96dc-3ca5-4450-b343-ae5dbaef8056", + "DeletedAt": null, + "LexemeForm": { + "seh": "taka" + }, + "CitationForm": { + "seh": "mataka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "486fcf0c-de3f-4a30-bf62-dd75b7e096d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "3fbb96dc-3ca5-4450-b343-ae5dbaef8056", + "Definition": {}, + "Gloss": { + "en": "dirt", + "pt": "solo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e27c6260-4150-43d4-97c3-ca25b596401d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "486fcf0c-de3f-4a30-bf62-dd75b7e096d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ff6ecc5-7b66-48a7-abe1-4d4f9cc9d552", + "DeletedAt": null, + "LexemeForm": { + "seh": "matal" + }, + "CitationForm": { + "seh": "matala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c9990577-4e77-4b4f-aed5-3ecbbf15a1f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ff6ecc5-7b66-48a7-abe1-4d4f9cc9d552", + "Definition": {}, + "Gloss": { + "en": "be silent", + "pt": "ficar silencioso" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6130a4a3-5f31-49db-83e2-63547364fbc5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "c9990577-4e77-4b4f-aed5-3ecbbf15a1f6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a6a4c40-3dae-41a3-b5bc-e427865854e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "matam" + }, + "CitationForm": { + "seh": "matama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97315f66-6358-4771-96f7-4ee76436ff8f", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a6a4c40-3dae-41a3-b5bc-e427865854e2", + "Definition": {}, + "Gloss": { + "en": "be quiet", + "pt": "calar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9c9b762d-56e4-42b0-8728-e38e962c2dcb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "97315f66-6358-4771-96f7-4ee76436ff8f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5212fc0d-9cdc-4f9d-9425-b27213f369a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "matamis" + }, + "CitationForm": { + "seh": "matamisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a8fd0ff5-f64b-4419-9154-1be2e583c29c", + "Order": 1, + "DeletedAt": null, + "EntryId": "5212fc0d-9cdc-4f9d-9425-b27213f369a5", + "Definition": {}, + "Gloss": { + "en": "quiet", + "pt": "fazer calar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "02d37a73-f8d0-4e61-8dd8-fd10537020a8", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Tendeni kamatamisa mamferwa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Vamos conselhar (familia em) lutado.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "a8fd0ff5-f64b-4419-9154-1be2e583c29c", + "DeletedAt": null + } + ] + }, + { + "Id": "322b1569-3d3c-486d-91ad-615a6a43cd52", + "Order": 2, + "DeletedAt": null, + "EntryId": "5212fc0d-9cdc-4f9d-9425-b27213f369a5", + "Definition": {}, + "Gloss": { + "en": "console", + "pt": "consolar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fccfb5e7-3c78-460c-9915-b71322b48203", + "DeletedAt": null, + "LexemeForm": { + "seh": "matongero" + }, + "CitationForm": { + "seh": "matongero" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35278c37-466e-4194-9da0-faae2cd7908d", + "Order": 1, + "DeletedAt": null, + "EntryId": "fccfb5e7-3c78-460c-9915-b71322b48203", + "Definition": { + "en": { + "Spans": [ + { + "Text": "law, ten commandments", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "law mandamentos de Deus", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "law", + "pt": "law" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "da777558-6be4-46b0-a174-0c09b842c524", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "35278c37-466e-4194-9da0-faae2cd7908d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1b62650a-3b7e-427f-a66c-869186cfa288", + "DeletedAt": null, + "LexemeForm": { + "seh": "tope" + }, + "CitationForm": { + "seh": "matope" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ec8fb8f1-c0bd-4c7b-a67c-2e48a1bb044b", + "Order": 1, + "DeletedAt": null, + "EntryId": "1b62650a-3b7e-427f-a66c-869186cfa288", + "Definition": {}, + "Gloss": { + "en": "river mud", + "pt": "lodo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "180a2220-942c-4e17-96ee-cd4f63a4c715", + "Name": { + "en": "Soil, dirt" + }, + "Code": "1.2.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fa1c51b8-4171-414a-b37a-d1a062055604", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "ec8fb8f1-c0bd-4c7b-a67c-2e48a1bb044b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d26e8d4d-cce6-4635-a35e-2be0db65c729", + "DeletedAt": null, + "LexemeForm": { + "seh": "ulo" + }, + "CitationForm": { + "seh": "maulo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd98267d-b7b7-465c-a61d-128f0ec3dd27", + "Order": 1, + "DeletedAt": null, + "EntryId": "d26e8d4d-cce6-4635-a35e-2be0db65c729", + "Definition": { + "en": { + "Spans": [ + { + "Text": "afternoon and evening; when the day starts to cool, starts around 15 hours", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tarde e noite cedo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "afternoon", + "pt": "tarde" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "204bdc22-f689-4e29-bb28-c257905a80c5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "dd98267d-b7b7-465c-a61d-128f0ec3dd27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "89b79930-93cb-4af5-be86-bea62f1de26a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5adef85a-9ff2-477b-a967-a5d519664767", + "Order": 1, + "DeletedAt": null, + "EntryId": "89b79930-93cb-4af5-be86-bea62f1de26a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "thematic continuity, -ing", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "continuidade de tema, -ando", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "COHES", + "pt": "COHES" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b50ce1f3-96db-4ed7-bfce-211f882a6c1b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mbauponyera throwing stone, mbumala they ended friendship mbamphata grabing the rabbit,", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "5adef85a-9ff2-477b-a967-a5d519664767", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cb2d50c-7571-4757-80f9-6bb29d9047cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "baala" + }, + "CitationForm": { + "seh": "mbaala" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f38c8ff5-8399-46d0-a608-16aa91fa27af", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cb2d50c-7571-4757-80f9-6bb29d9047cd", + "Definition": {}, + "Gloss": { + "en": "gazell", + "pt": "gazela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3367d955-653e-4e08-b408-7b12c93f9bda", + "DeletedAt": null, + "LexemeForm": { + "seh": "babvu" + }, + "CitationForm": { + "seh": "mbabvu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "889a81df-a63f-4e76-93b9-7873aab77714", + "Order": 1, + "DeletedAt": null, + "EntryId": "3367d955-653e-4e08-b408-7b12c93f9bda", + "Definition": {}, + "Gloss": { + "en": "rib", + "pt": "costela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee33e5b2-72c7-49b2-b0e4-c73febfce1a8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "889a81df-a63f-4e76-93b9-7873aab77714", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ebb2033-aeae-4c84-b34a-7ddfb38f2ef2", + "DeletedAt": null, + "LexemeForm": { + "seh": "badza" + }, + "CitationForm": { + "seh": "mbadza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aebb266e-130f-433e-adce-2399c4f7ffdd", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ebb2033-aeae-4c84-b34a-7ddfb38f2ef2", + "Definition": {}, + "Gloss": { + "en": "snake type", + "pt": "cobra tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0f3f15d0-c1f8-4ccd-a3ec-0d7edd3369cf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "aebb266e-130f-433e-adce-2399c4f7ffdd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6be1c388-3564-4e71-8158-6ff938c4e853", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbadzati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7f26c9ab-e41e-437a-82af-6962ab7a59fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "6be1c388-3564-4e71-8158-6ff938c4e853", + "Definition": {}, + "Gloss": { + "en": "before", + "pt": "antes" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d80b6cec-4339-4ea0-bb68-941feb538f11", + "DeletedAt": null, + "LexemeForm": { + "seh": "badzo" + }, + "CitationForm": { + "seh": "mbadzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "70a1de9b-c5eb-4ca7-a214-1b33f85127f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "d80b6cec-4339-4ea0-bb68-941feb538f11", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hatchet to cut firewood and small trees used by men", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hatchet", + "pt": "machadinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71f6d357-b03a-4a10-a7f9-520577a5ba9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "70a1de9b-c5eb-4ca7-a214-1b33f85127f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "753bd785-b855-4232-9594-8be21ff30ef4", + "DeletedAt": null, + "LexemeForm": { + "seh": "balame" + }, + "CitationForm": { + "seh": "mbalame" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b48232bf-44e2-48f4-9c2a-6a0136d092df", + "Order": 1, + "DeletedAt": null, + "EntryId": "753bd785-b855-4232-9594-8be21ff30ef4", + "Definition": {}, + "Gloss": { + "en": "bird", + "pt": "passaro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "0724682c-71bc-4d53-b323-602d9fbbde47", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b48232bf-44e2-48f4-9c2a-6a0136d092df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "12504ce0-0d4e-499e-8d1a-a796f4da05b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "824ec104-b330-42f6-b353-123cb03998b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "12504ce0-0d4e-499e-8d1a-a796f4da05b7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wood plate", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "prato de pau", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "plate", + "pt": "prato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5902969d-0d6f-4724-8dc5-a3cfa5b8d636", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "824ec104-b330-42f6-b353-123cb03998b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c713678-7a2e-40fc-9fce-d3e8d7011d36", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbani" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4cb5708d-0ba7-46f7-afbe-13d9d987ad91", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c713678-7a2e-40fc-9fce-d3e8d7011d36", + "Definition": {}, + "Gloss": { + "en": "who?", + "pt": "quem?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ea7421cc-2a6c-41de-9611-ef4942470f61", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4cb5708d-0ba7-46f7-afbe-13d9d987ad91", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "052cd426-ab5e-4a74-843f-ae6dce5aa6c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbava" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "55345d98-6fd0-484b-950d-e2fa12b6aec4", + "Order": 1, + "DeletedAt": null, + "EntryId": "052cd426-ab5e-4a74-843f-ae6dce5aa6c0", + "Definition": {}, + "Gloss": { + "en": "thief", + "pt": "ladra\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de17de32-b537-4298-a26d-d2239eaf9f62", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "55345d98-6fd0-484b-950d-e2fa12b6aec4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d341650e-a816-4bb7-9757-7d7952b2cf24", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "305ecbd1-ba98-4ff9-8bad-985b4e1f48ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "d341650e-a816-4bb7-9757-7d7952b2cf24", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sardine, species of small fresh water fish", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "sardinha, um tipo de peixinho de a\u0301gua doce.", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "sardine ", + "pt": "sardinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "207e0d03-66f9-484a-9aae-9a2c9e759ff8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "305ecbd1-ba98-4ff9-8bad-985b4e1f48ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "15b453c1-e980-4d00-849c-3b4f96c8f1be", + "DeletedAt": null, + "LexemeForm": { + "seh": "beu" + }, + "CitationForm": { + "seh": "mbeu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b096a890-d21c-4734-b0ef-2c8ef0de6ea5", + "Order": 1, + "DeletedAt": null, + "EntryId": "15b453c1-e980-4d00-849c-3b4f96c8f1be", + "Definition": {}, + "Gloss": { + "en": "seed", + "pt": "semente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e33932fc-a153-4098-a07a-7556c8251639", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b096a890-d21c-4734-b0ef-2c8ef0de6ea5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ba5fc13-73cc-4aaf-9346-5b407754fcf9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbewa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "605f204e-b617-44b4-9732-995b23d1a14f", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ba5fc13-73cc-4aaf-9346-5b407754fcf9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "any rat or mouse that lives outside", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rat or mouse", + "pt": "rato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4a0b27d-fa44-4c0b-881d-a70ef99b7340", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "605f204e-b617-44b4-9732-995b23d1a14f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05a45110-1b3e-4a61-8af3-15464a3edc46", + "DeletedAt": null, + "LexemeForm": { + "seh": "bidzi" + }, + "CitationForm": { + "seh": "mbidzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87b14641-5673-443e-938a-2700deea5b0a", + "Order": 1, + "DeletedAt": null, + "EntryId": "05a45110-1b3e-4a61-8af3-15464a3edc46", + "Definition": { + "en": { + "Spans": [ + { + "Text": "zebra - Equus burchellii but they recognize all zebra as mbidzi", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "zebra", + "pt": "zebra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "bbd3c3f1-7387-4ec6-a75d-66c1355a94ef", + "Name": { + "en": "Hoofed animals" + }, + "Code": "1.6.1.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "06fb5db3-1693-470f-9e5e-c6f12a014bff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "87b14641-5673-443e-938a-2700deea5b0a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab235a62-1e60-4a68-83a4-838075de7d43", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14af0b49-0487-46f8-ad04-1fc2a860f289", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab235a62-1e60-4a68-83a4-838075de7d43", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hydrax of the Family Procavidae", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "porquito de familia Procavidae", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hydrax", + "pt": "porquito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "66470288-2b6e-461f-a57d-7b32ee502b68", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze (gave pr)", + "Ws": "en" + } + ] + }, + "SenseId": "14af0b49-0487-46f8-ad04-1fc2a860f289", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc4c80d8-6f01-44e8-93df-992b43bc3924", + "DeletedAt": null, + "LexemeForm": { + "seh": "biti" + }, + "CitationForm": { + "seh": "mbiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41724d8b-53b5-4d0e-af28-3c864b0e39b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc4c80d8-6f01-44e8-93df-992b43bc3924", + "Definition": {}, + "Gloss": { + "en": "otter", + "pt": "lontra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d0887f1b-da20-44de-a687-6c388b8fc6b4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "41724d8b-53b5-4d0e-af28-3c864b0e39b1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Enclitic", + "Senses": [ + { + "Id": "752f6980-2888-411b-bd45-a37bad94f428", + "Order": 1, + "DeletedAt": null, + "EntryId": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "additive, \u0022also\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "additivo, \u0022tambe\u0301m\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "ADD", + "pt": "ADD" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d13979f4-0ec4-45a6-b2b2-7a948930b47f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "iwombo", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "752f6980-2888-411b-bd45-a37bad94f428", + "DeletedAt": null + } + ] + }, + { + "Id": "1132c791-3980-4fe1-af2e-99e766f8ac01", + "Order": 2, + "DeletedAt": null, + "EntryId": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "Definition": {}, + "Gloss": { + "en": "INTENS", + "pt": "INTENS" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "6ad40996-9427-4951-8596-61a482180cf5", + "Order": 3, + "DeletedAt": null, + "EntryId": "0693f6d4-463a-46aa-92b4-18c3008e0da1", + "Definition": {}, + "Gloss": { + "en": "please", + "pt": "por favor" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "38639731-5769-4618-b5c4-837c4f59119f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndiwangisenimbo \u0022cure-me por favor (lit tambe\u0301m)\u0022", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "6ad40996-9427-4951-8596-61a482180cf5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "052042f8-9181-451d-92f7-599974fd0fec", + "DeletedAt": null, + "LexemeForm": { + "seh": "bondo" + }, + "CitationForm": { + "seh": "mbondo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57945f8a-40d5-4ca4-9c89-f8cecc68f8b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "052042f8-9181-451d-92f7-599974fd0fec", + "Definition": {}, + "Gloss": { + "en": "knee", + "pt": "joelho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1d8633e0-4279-4ddc-826e-16aa08a977e5", + "Name": { + "en": "Bone, joint" + }, + "Code": "2.1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "1bcdca5a-454a-46aa-8906-1dd8df34bb39", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "57945f8a-40d5-4ca4-9c89-f8cecc68f8b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65a4e65e-13da-4fa5-8ec5-a7248750371d", + "DeletedAt": null, + "LexemeForm": { + "seh": "bua" + }, + "CitationForm": { + "seh": "mbua" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdb7385d-b828-4b3a-95c3-6392cf178925", + "Order": 1, + "DeletedAt": null, + "EntryId": "65a4e65e-13da-4fa5-8ec5-a7248750371d", + "Definition": {}, + "Gloss": { + "en": "threshing floor", + "pt": "eira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b36c4bca-817c-4843-b458-cfe57e7abdc4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bdb7385d-b828-4b3a-95c3-6392cf178925", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08006bb2-9f97-4754-a1d0-6e0a31bd3b69", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbudzati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6114e22f-0bf4-4987-97f0-e4f9e4fc09aa", + "Order": 1, + "DeletedAt": null, + "EntryId": "08006bb2-9f97-4754-a1d0-6e0a31bd3b69", + "Definition": {}, + "Gloss": { + "en": "before", + "pt": "antes" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "37a6f4ed-d949-4038-a075-9d6f2b46fc9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6114e22f-0bf4-4987-97f0-e4f9e4fc09aa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "475473f7-16bf-4aae-adb3-07e95f60d7e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "bumba" + }, + "CitationForm": { + "seh": "mbumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2083395f-5ad8-47e1-84da-9570b2571584", + "Order": 1, + "DeletedAt": null, + "EntryId": "475473f7-16bf-4aae-adb3-07e95f60d7e9", + "Definition": {}, + "Gloss": { + "en": "people", + "pt": "povo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6da32e8-4730-47c1-bcd6-aa5dc961fb46", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2083395f-5ad8-47e1-84da-9570b2571584", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9cce8577-9c0f-4406-ab4a-699a428930d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mburuk" + }, + "CitationForm": { + "seh": "mburuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eb4e8cdf-de54-4ee4-89d4-5fab25b9c7c3", + "Order": 1, + "DeletedAt": null, + "EntryId": "9cce8577-9c0f-4406-ab4a-699a428930d7", + "Definition": {}, + "Gloss": { + "en": "fly", + "pt": "voar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "5cc64831-c14a-4dbe-beba-214e725ad041", + "Name": { + "en": "Manner of movement" + }, + "Code": "7.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2589b6ce-ccf2-4db6-817c-49f857e47fbf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "eb4e8cdf-de54-4ee4-89d4-5fab25b9c7c3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b9e0579-0c85-48c8-8f77-5963d07088b0", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbus" + }, + "CitationForm": { + "seh": "mbusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f250ea0-f41e-40e9-9ab4-c5c26b1e52e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b9e0579-0c85-48c8-8f77-5963d07088b0", + "Definition": {}, + "Gloss": { + "en": "collect fees", + "pt": "cobrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0e19cf83-9133-4d8a-a367-82993d8abf81", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6f250ea0-f41e-40e9-9ab4-c5c26b1e52e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "28b19ef7-e9fb-44b1-afd8-23743e39c4ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "buto" + }, + "CitationForm": { + "seh": "mbuto" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c8cae0e-aa0b-486b-a195-55538dbe67df", + "Order": 1, + "DeletedAt": null, + "EntryId": "28b19ef7-e9fb-44b1-afd8-23743e39c4ac", + "Definition": {}, + "Gloss": { + "en": "place", + "pt": "lugar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ae0041d-133b-4de6-ba94-688938df52d9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1c8cae0e-aa0b-486b-a195-55538dbe67df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56f6c163-c208-4c56-978e-81c7944a4d64", + "DeletedAt": null, + "LexemeForm": { + "seh": "buwa" + }, + "CitationForm": { + "seh": "mbuwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cf09ea68-25fe-423a-b238-edd3ca05e9b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "56f6c163-c208-4c56-978e-81c7944a4d64", + "Definition": {}, + "Gloss": { + "en": "fisherman", + "pt": "pescador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ece0c43-9ca5-471f-ad6c-f5c83a836742", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cf09ea68-25fe-423a-b238-edd3ca05e9b6", + "DeletedAt": null + } + ] + }, + { + "Id": "60561d0d-5be7-43af-b3f7-619b74510ef0", + "Order": 2, + "DeletedAt": null, + "EntryId": "56f6c163-c208-4c56-978e-81c7944a4d64", + "Definition": {}, + "Gloss": { + "en": "threshing floor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "322fce11-2210-408a-a432-cd73bca12783", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbuya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "888c502e-7006-4841-9087-e8500209b257", + "Order": 1, + "DeletedAt": null, + "EntryId": "322fce11-2210-408a-a432-cd73bca12783", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lord of a slave", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "lord", + "pt": "senhor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "982593c3-8984-4d12-bd5d-a74d213e633c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "888c502e-7006-4841-9087-e8500209b257", + "DeletedAt": null + } + ] + }, + { + "Id": "8c04a4dd-084f-4496-bb4b-76429767a4d7", + "Order": 2, + "DeletedAt": null, + "EntryId": "322fce11-2210-408a-a432-cd73bca12783", + "Definition": { + "en": { + "Spans": [ + { + "Text": "grandfather on mother\u0027s side", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "grandfather", + "pt": "avo\u0302" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d1e58469-52e3-4b50-b0de-00bf9f09f8d4", + "Name": { + "en": "Grandfather, grandmother" + }, + "Code": "4.1.9.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c402cdb2-9284-4b03-9756-b2c29eb63535", + "DeletedAt": null, + "LexemeForm": { + "seh": "buyantumbzi" + }, + "CitationForm": { + "seh": "mbuyantumbzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6c44f63d-f5ce-491d-a0a6-0263fd10f95d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c402cdb2-9284-4b03-9756-b2c29eb63535", + "Definition": {}, + "Gloss": { + "en": "in-laws", + "pt": "consogros" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4374989d-1479-44c0-a603-540502aa9280", + "DeletedAt": null, + "LexemeForm": { + "seh": "buzi" + }, + "CitationForm": { + "seh": "mbuzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7b087c80-53a1-41e8-ad08-7e5aea18410c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4374989d-1479-44c0-a603-540502aa9280", + "Definition": {}, + "Gloss": { + "en": "goat", + "pt": "cabrito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4eea233-a735-4a5d-9507-f75b5dbfe8ec", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16,27; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "7b087c80-53a1-41e8-ad08-7e5aea18410c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "85d6924e-20fa-4fee-9094-3753094700c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbvimbvinidz" + }, + "CitationForm": { + "seh": "mbvimbvinidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bae12644-8d47-42e6-8fce-28076b38da88", + "Order": 1, + "DeletedAt": null, + "EntryId": "85d6924e-20fa-4fee-9094-3753094700c6", + "Definition": {}, + "Gloss": { + "en": "get lost", + "pt": "extraviar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f03a9415-d09f-47b4-a88b-07d9108103da", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "bae12644-8d47-42e6-8fce-28076b38da88", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e9f39346-ab14-437e-9ecc-df5180846b09", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvini" + }, + "CitationForm": { + "seh": "mbvini" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d2673bb4-023b-4497-838c-3be9db01dfc6", + "Order": 1, + "DeletedAt": null, + "EntryId": "e9f39346-ab14-437e-9ecc-df5180846b09", + "Definition": {}, + "Gloss": { + "en": "dancer", + "pt": "danc\u0327arino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9b70dcac-6a87-4b9a-b4a7-7c0cb30f853c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d2673bb4-023b-4497-838c-3be9db01dfc6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "facd1fda-36fe-4254-b02e-159f94c7d784", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvuni" + }, + "CitationForm": { + "seh": "mbvuni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4c668f4-1dad-4606-a6d0-14b5ed1684e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "facd1fda-36fe-4254-b02e-159f94c7d784", + "Definition": {}, + "Gloss": { + "en": "peacemaker", + "pt": "pacificador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "256e6f6b-d355-4e43-9b3a-620858d26b7d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c4c668f4-1dad-4606-a6d0-14b5ed1684e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49eb324b-13e4-4d4d-95ab-9a0a5b3048be", + "DeletedAt": null, + "LexemeForm": { + "seh": "bvuu" + }, + "CitationForm": { + "seh": "mbvuu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "462d9ee6-1d42-409f-824e-5a25e6ac1a48", + "Order": 1, + "DeletedAt": null, + "EntryId": "49eb324b-13e4-4d4d-95ab-9a0a5b3048be", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Hippopotamus amphibius", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hippopotomus", + "pt": "hipopotomo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0141b6aa-7312-44f6-ba85-4fa91012f72c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "462d9ee6-1d42-409f-824e-5a25e6ac1a48", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a0e7e7c-a701-4fd2-9234-7f89a546258a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbwenye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "95882d6f-1b5f-4211-8ae6-092819469162", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a0e7e7c-a701-4fd2-9234-7f89a546258a", + "Definition": {}, + "Gloss": { + "en": "but", + "pt": "mas" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "057cc851-6f94-4a65-afcf-331477e75fa5", + "DeletedAt": null, + "LexemeForm": { + "seh": "cherengi" + }, + "CitationForm": { + "seh": "mcherengi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e59940fe-9ebc-4531-8f0f-606d65db189c", + "Order": 1, + "DeletedAt": null, + "EntryId": "057cc851-6f94-4a65-afcf-331477e75fa5", + "Definition": {}, + "Gloss": { + "en": "poor person", + "pt": "pobre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b94239dc-5c67-42c7-827c-530741070d0f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e59940fe-9ebc-4531-8f0f-606d65db189c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fac1d361-b9ee-4da0-9c02-32bab3ccb41d", + "DeletedAt": null, + "LexemeForm": { + "seh": "mebzala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1882c819-4011-4b47-ba67-4af189d622da", + "Order": 1, + "DeletedAt": null, + "EntryId": "fac1d361-b9ee-4da0-9c02-32bab3ccb41d", + "Definition": {}, + "Gloss": { + "en": "mother-in-law", + "pt": "sogra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1e9ed078-6919-4c10-8c6e-573830146fb4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1882c819-4011-4b47-ba67-4af189d622da", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b974fa51-77c1-46ee-9972-10b6fb3b6ea8", + "DeletedAt": null, + "LexemeForm": { + "seh": "meny" + }, + "CitationForm": { + "seh": "menya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1cb19796-f0b4-459b-80ed-4ed620027d8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b974fa51-77c1-46ee-9972-10b6fb3b6ea8", + "Definition": {}, + "Gloss": { + "en": "hit", + "pt": "bater" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6c60e6cd-ccda-469e-95b4-895f69c0eab6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "1cb19796-f0b4-459b-80ed-4ed620027d8e", + "DeletedAt": null + } + ] + }, + { + "Id": "ad086c20-5484-4369-a988-86d1bee667a9", + "Order": 2, + "DeletedAt": null, + "EntryId": "b974fa51-77c1-46ee-9972-10b6fb3b6ea8", + "Definition": {}, + "Gloss": { + "en": "break bread", + "pt": "partir pa\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7292cacd-2831-4b11-b6eb-3dbb02c7fe93", + "DeletedAt": null, + "LexemeForm": { + "seh": "menya-meny" + }, + "CitationForm": { + "seh": "menya-menya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0de5de90-4272-4d51-878c-12b83a619769", + "Order": 1, + "DeletedAt": null, + "EntryId": "7292cacd-2831-4b11-b6eb-3dbb02c7fe93", + "Definition": { + "en": { + "Spans": [ + { + "Text": "break bread repetively", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "partir pa\u0303o repetivament", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "break bread", + "pt": "partir pa\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "026431d5-fe59-436a-b0dc-551a75d86916", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0de5de90-4272-4d51-878c-12b83a619769", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dcaa76dc-7458-4338-a1eb-12fceb56ca3d", + "DeletedAt": null, + "LexemeForm": { + "seh": "menyan" + }, + "CitationForm": { + "seh": "menyana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "11b748dc-ab4a-4525-9cbb-a6de4b85caf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "dcaa76dc-7458-4338-a1eb-12fceb56ca3d", + "Definition": {}, + "Gloss": { + "en": "fight", + "pt": "lutar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62b5407b-a152-4748-a8c7-b1acca9916c5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "11b748dc-ab4a-4525-9cbb-a6de4b85caf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af7275f4-b375-4997-a00d-5af1899d13d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mer" + }, + "CitationForm": { + "seh": "mera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3c4ba6f1-e3b9-41f4-8331-47704488975f", + "Order": 1, + "DeletedAt": null, + "EntryId": "af7275f4-b375-4997-a00d-5af1899d13d9", + "Definition": {}, + "Gloss": { + "en": "germinate", + "pt": "germinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ae335f5-ab6a-4c8a-ba3c-54af440b75c9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3c4ba6f1-e3b9-41f4-8331-47704488975f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "11abf5ec-8b88-46d7-9b1c-b0ddae7ac894", + "DeletedAt": null, + "LexemeForm": { + "seh": "mez" + }, + "CitationForm": { + "seh": "meza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5da5191e-c7c9-4c91-b4eb-16e52fd275ae", + "Order": 1, + "DeletedAt": null, + "EntryId": "11abf5ec-8b88-46d7-9b1c-b0ddae7ac894", + "Definition": {}, + "Gloss": { + "en": "to fish", + "pt": "pescar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f4e6abac-692b-48d0-af56-abcff67ec8a8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5da5191e-c7c9-4c91-b4eb-16e52fd275ae", + "DeletedAt": null + } + ] + }, + { + "Id": "2392de10-0208-4840-9154-35f146b14662", + "Order": 2, + "DeletedAt": null, + "EntryId": "11abf5ec-8b88-46d7-9b1c-b0ddae7ac894", + "Definition": {}, + "Gloss": { + "en": "swallow", + "pt": "engolir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47f45f37-0706-4a70-861e-06d8d489028b", + "DeletedAt": null, + "LexemeForm": { + "seh": "meza" + }, + "CitationForm": { + "seh": "meza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2b1557be-9bd5-42d7-87da-7e53334a49f1", + "Order": 1, + "DeletedAt": null, + "EntryId": "47f45f37-0706-4a70-861e-06d8d489028b", + "Definition": {}, + "Gloss": { + "en": "table", + "pt": "mesa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "f732bdb5-9a04-468a-b50b-510f94d20fb4", + "Name": { + "en": "Table" + }, + "Code": "5.1.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7a46f279-dd9c-473f-a3b3-69ba0a52236a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:23; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2b1557be-9bd5-42d7-87da-7e53334a49f1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "90cbdc5c-5a93-45b3-ac80-5e16fe523852", + "DeletedAt": null, + "LexemeForm": { + "seh": "mi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "0e78b61e-306a-4e3c-94a2-84a6b6a044f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "90cbdc5c-5a93-45b3-ac80-5e16fe523852", + "Definition": {}, + "Gloss": { + "en": "4", + "pt": "4" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "efaa842b-b2aa-4332-925f-931700412d6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "michamu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "43584f6e-c0da-49e1-b3ae-2f3c5dfa0618", + "Order": 1, + "DeletedAt": null, + "EntryId": "efaa842b-b2aa-4332-925f-931700412d6a", + "Definition": {}, + "Gloss": { + "en": "lashes", + "pt": "ac\u0327oites" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16727713-f06f-4470-9eea-8602dbd44762", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "43584f6e-c0da-49e1-b3ae-2f3c5dfa0618", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0ac275c1-cbea-4fff-b78c-44647e4c87da", + "DeletedAt": null, + "LexemeForm": { + "seh": "mimba" + }, + "CitationForm": { + "seh": "mimba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "66347a27-02b1-4634-9e15-6e558eea1975", + "Order": 1, + "DeletedAt": null, + "EntryId": "0ac275c1-cbea-4fff-b78c-44647e4c87da", + "Definition": {}, + "Gloss": { + "en": "belly", + "pt": "barriga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db24b91c-f580-414c-a771-acd44fed2f1e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "66347a27-02b1-4634-9e15-6e558eea1975", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75c1100c-e1f4-4b34-97c3-e64a8b2eb291", + "DeletedAt": null, + "LexemeForm": { + "seh": "minyoka" + }, + "CitationForm": { + "seh": "minyoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9854719e-fc52-413f-bd46-923c7ed16dc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "75c1100c-e1f4-4b34-97c3-e64a8b2eb291", + "Definition": {}, + "Gloss": { + "en": "worm", + "pt": "minhoca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed5d5789-54ef-424e-88e6-204ef0e3b072", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "9854719e-fc52-413f-bd46-923c7ed16dc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "17284bb5-377c-4a19-ad5c-ca02b52fc11b", + "DeletedAt": null, + "LexemeForm": { + "seh": "sozi" + }, + "CitationForm": { + "seh": "misozi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ebd98cc-38b8-4548-8f65-85df6f081421", + "Order": 1, + "DeletedAt": null, + "EntryId": "17284bb5-377c-4a19-ad5c-ca02b52fc11b", + "Definition": {}, + "Gloss": { + "en": "tears", + "pt": "lagrimas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d38ab932-26cc-4a96-987e-278e2827a45c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0ebd98cc-38b8-4548-8f65-85df6f081421", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61a0c41b-8612-4304-a9e5-cb7726197456", + "DeletedAt": null, + "LexemeForm": { + "seh": "tindo" + }, + "CitationForm": { + "seh": "mitindo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "70922f18-954d-4d45-838b-9e8add104260", + "Order": 1, + "DeletedAt": null, + "EntryId": "61a0c41b-8612-4304-a9e5-cb7726197456", + "Definition": {}, + "Gloss": { + "en": "urine", + "pt": "urina" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b361f9c7-b5d2-4ebb-958b-b07f146a2224", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "70922f18-954d-4d45-838b-9e8add104260", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1241a470-7fe5-40e2-a734-81425dbf4cc7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mudzi" + }, + "CitationForm": { + "seh": "mmudzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "615cba3f-626c-411f-a90c-bb76ca15d1f5", + "Order": 1, + "DeletedAt": null, + "EntryId": "1241a470-7fe5-40e2-a734-81425dbf4cc7", + "Definition": {}, + "Gloss": { + "en": "host", + "pt": "afitria\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3d948c63-961c-46c3-a89f-4109646372e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "615cba3f-626c-411f-a90c-bb76ca15d1f5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "632f5e17-13ed-4d51-8998-6c17184c8347", + "DeletedAt": null, + "LexemeForm": { + "seh": "omba" + }, + "CitationForm": { + "seh": "momba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "309c1c0c-cb5e-466b-a081-427e61ca781b", + "Order": 1, + "DeletedAt": null, + "EntryId": "632f5e17-13ed-4d51-8998-6c17184c8347", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spear with a sharp round pointed iron head", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spear", + "pt": "zagaia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d19b2c0c-3337-4808-9624-6ad1f0e6dba5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "309c1c0c-cb5e-466b-a081-427e61ca781b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a032b7d8-da95-4168-a943-6e99d32dd37c", + "DeletedAt": null, + "LexemeForm": { + "seh": "oto" + }, + "CitationForm": { + "seh": "moto" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "75eada5f-2469-4558-ab57-256655ef86d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "a032b7d8-da95-4168-a943-6e99d32dd37c", + "Definition": {}, + "Gloss": { + "en": "fire", + "pt": "fogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fbd753a4-bf58-4603-9e1b-e39bab51249a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "75eada5f-2469-4558-ab57-256655ef86d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e63992d2-2f7b-4653-adfe-fcdb19aecde5", + "DeletedAt": null, + "LexemeForm": { + "seh": "moyok" + }, + "CitationForm": { + "seh": "moyoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9acfd40f-6073-4cb3-b6e4-38be96b09fb8", + "Order": 1, + "DeletedAt": null, + "EntryId": "e63992d2-2f7b-4653-adfe-fcdb19aecde5", + "Definition": {}, + "Gloss": { + "en": "greet", + "pt": "comprimentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "94607f44-9a9c-4de1-a528-d60a10423c17", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9acfd40f-6073-4cb3-b6e4-38be96b09fb8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab672944-a2c4-4741-969f-01700b334572", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "50e674a7-0b8a-4233-875b-e2cab0cf2c77", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab672944-a2c4-4741-969f-01700b334572", + "Definition": {}, + "Gloss": { + "en": "until", + "pt": "ate\u0301" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d04f5c9d-7b68-4e99-98db-0bc72341554e", + "DeletedAt": null, + "LexemeForm": { + "seh": "pando" + }, + "CitationForm": { + "seh": "mpando" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0aed8037-a007-49e4-9953-3aab76aa6f21", + "Order": 1, + "DeletedAt": null, + "EntryId": "d04f5c9d-7b68-4e99-98db-0bc72341554e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one or two place bench without a back", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "banco de um ou dois lugares sem costa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stool", + "pt": "banco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7e183f98-01ed-45f1-ba53-7d4967ec7fb8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0aed8037-a007-49e4-9953-3aab76aa6f21", + "DeletedAt": null + } + ] + }, + { + "Id": "fe140ec7-3093-4e13-99b5-9d34e707c2c8", + "Order": 2, + "DeletedAt": null, + "EntryId": "d04f5c9d-7b68-4e99-98db-0bc72341554e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "at times by extention \u0022chair\u0022", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "chair", + "pt": "cadera" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29b900c6-b2c5-4d76-85c2-c76c03ce60cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "pani" + }, + "CitationForm": { + "seh": "mpani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "214820fd-bc1f-4271-9191-2be4725a8e78", + "Order": 1, + "DeletedAt": null, + "EntryId": "29b900c6-b2c5-4d76-85c2-c76c03ce60cc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "stick with meat or fish on it for roasting, fish on a stick", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "espeto com carne para assar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stick", + "pt": "espeto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c56eb008-41b8-4d8a-ad0c-7f8dfdc36ec5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "214820fd-bc1f-4271-9191-2be4725a8e78", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93951d41-1c68-4ecd-ad29-13b77d469a8d", + "DeletedAt": null, + "LexemeForm": { + "seh": "peni" + }, + "CitationForm": { + "seh": "mpeni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "165d58e1-9723-4410-9075-7f30d84d20ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "93951d41-1c68-4ecd-ad29-13b77d469a8d", + "Definition": {}, + "Gloss": { + "en": "knife", + "pt": "faca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2bfedc86-1e0d-4c8a-b479-7472d052d830", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "165d58e1-9723-4410-9075-7f30d84d20ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5c88aa1-f634-4cd0-bef8-b0ed976ff39c", + "DeletedAt": null, + "LexemeForm": { + "seh": "falinya" + }, + "CitationForm": { + "seh": "mpfalinya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "772629ab-f835-4320-9b39-0e243b405e41", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5c88aa1-f634-4cd0-bef8-b0ed976ff39c", + "Definition": {}, + "Gloss": { + "en": "manioc plant", + "pt": "mandioqueira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a19e182b-ebfe-47d3-a54c-6c4ecac12162", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "772629ab-f835-4320-9b39-0e243b405e41", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a28ac300-426f-4e88-bd44-cce6de8fec31", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfemba" + }, + "CitationForm": { + "seh": "mpfemba" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b8e47d4a-1a2e-4ebe-9de1-5dfc1ea46e89", + "Order": 1, + "DeletedAt": null, + "EntryId": "a28ac300-426f-4e88-bd44-cce6de8fec31", + "Definition": {}, + "Gloss": { + "en": "nine", + "pt": "nove" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f0c0b52-86c8-45a7-a5de-8feae122dcbd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b8e47d4a-1a2e-4ebe-9de1-5dfc1ea46e89", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7ee490e9-d639-4a8e-a307-5d7f35075d54", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfendu" + }, + "CitationForm": { + "seh": "mpfendu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", + "Order": 1, + "DeletedAt": null, + "EntryId": "7ee490e9-d639-4a8e-a307-5d7f35075d54", + "Definition": {}, + "Gloss": { + "en": "occasion", + "pt": "vez" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ef964514-0831-4da9-825d-f6c27db2192b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndinenda mpfendu inango", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eu vou outra vez", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", + "DeletedAt": null + }, + { + "Id": "4d75075d-afc9-430e-a806-c62f28e9556f", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b4c106cc-062e-4324-a6b3-2c0d8f7d5b86", + "DeletedAt": null + } + ] + }, + { + "Id": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", + "Order": 2, + "DeletedAt": null, + "EntryId": "7ee490e9-d639-4a8e-a307-5d7f35075d54", + "Definition": {}, + "Gloss": { + "en": "generation", + "pt": "gerac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d67c37c1-594b-4658-9d97-431b0eadaac4", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mpfendu yathu tikhakhondeswa kumwa nipa mbatiri ana.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Our generation was forbidden to drink liquor as children.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Gerac\u0327a\u0303o nossa era nos proibido beber aguardente idade crianc\u0327a.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "212fe8cc-2e3f-4355-bfec-54d39bd8dca6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d352b613-93ae-4f6b-9bd9-be5f21b94fb1", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfigu" + }, + "CitationForm": { + "seh": "mpfigu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "21b1db45-dee8-44d8-a566-eee8e8705670", + "Order": 1, + "DeletedAt": null, + "EntryId": "d352b613-93ae-4f6b-9bd9-be5f21b94fb1", + "Definition": {}, + "Gloss": { + "en": "banana tree", + "pt": "bananeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b0aedff6-d5da-4595-9b28-6abd1310f4cb", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mpfigu ukulu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "21b1db45-dee8-44d8-a566-eee8e8705670", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a7324004-98a9-40c3-bd3d-0b5bc1918e61", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfinyinji" + }, + "CitationForm": { + "seh": "mpfinyinji" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5c7c257e-0536-4cc9-bcd7-1e00db08655b", + "Order": 1, + "DeletedAt": null, + "EntryId": "a7324004-98a9-40c3-bd3d-0b5bc1918e61", + "Definition": {}, + "Gloss": { + "en": "spleen?", + "pt": "moela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96e7323c-532a-41c2-9342-b1b8be3719e7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5c7c257e-0536-4cc9-bcd7-1e00db08655b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "748e5797-944d-4c02-80e4-d560461f358f", + "DeletedAt": null, + "LexemeForm": { + "seh": "fiti" + }, + "CitationForm": { + "seh": "mpfiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "861141fa-1b5e-4a3d-9f45-7f0d0ea8af4a", + "Order": 1, + "DeletedAt": null, + "EntryId": "748e5797-944d-4c02-80e4-d560461f358f", + "Definition": {}, + "Gloss": { + "en": "witch", + "pt": "feiticeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c8731ae-7d1e-4ad4-83a7-a756a0fd0d7d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "861141fa-1b5e-4a3d-9f45-7f0d0ea8af4a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbad6402-5b20-4ba9-a3b1-49dd9ab55a79", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfukwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdfdd59e-ed0a-4ae0-9c8e-9e6f7a334597", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbad6402-5b20-4ba9-a3b1-49dd9ab55a79", + "Definition": {}, + "Gloss": { + "en": "lair", + "pt": "covil" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "971da8f6-f34c-40e6-8508-20f35eebad7b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4 (m\u0027pfukue)", + "Ws": "en" + } + ] + }, + "SenseId": "bdfdd59e-ed0a-4ae0-9c8e-9e6f7a334597", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "66a247d9-29c6-4d6f-b3b1-199a55dd7f8a", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfuma" + }, + "CitationForm": { + "seh": "mpfuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3beed235-e349-4ba0-8237-b3908315723a", + "Order": 1, + "DeletedAt": null, + "EntryId": "66a247d9-29c6-4d6f-b3b1-199a55dd7f8a", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riquesas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c7d4f50f-9f1d-454c-9fec-e87bc47489ca", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfuma" + }, + "CitationForm": { + "seh": "mpfuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98e18f17-178e-41c1-bc63-3816771bb6d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "c7d4f50f-9f1d-454c-9fec-e87bc47489ca", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riqueza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee767254-ddaa-4879-adb7-02d65ae8d265", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "98e18f17-178e-41c1-bc63-3816771bb6d1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f159952-dae0-456a-9260-f9ae4079848c", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfumi" + }, + "CitationForm": { + "seh": "mpfumi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "63f05f21-fbeb-434d-8077-9437deda278a", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f159952-dae0-456a-9260-f9ae4079848c", + "Definition": {}, + "Gloss": { + "en": "rich person", + "pt": "pessoa rica" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b5dafde1-9aef-4eb5-80e0-9b163b4a80b9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "63f05f21-fbeb-434d-8077-9437deda278a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9791c3a6-c2d2-4282-aff3-645a7171f5a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfumu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "22b81191-b1d1-4237-8dcd-3f702b915b39", + "Order": 1, + "DeletedAt": null, + "EntryId": "9791c3a6-c2d2-4282-aff3-645a7171f5a8", + "Definition": {}, + "Gloss": { + "en": "chief", + "pt": "chefe" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "bbf5f321-2855-49c9-8278-839fc022e829", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ababa apfumu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "pais chefes", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "22b81191-b1d1-4237-8dcd-3f702b915b39", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e83317e0-567a-4f50-8148-ef4abfa2656c", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpfumu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "12a6c537-68f2-4e8e-bdba-9020132a271c", + "Order": 1, + "DeletedAt": null, + "EntryId": "e83317e0-567a-4f50-8148-ef4abfa2656c", + "Definition": {}, + "Gloss": { + "en": "chief", + "pt": "chefe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6ecb636e-e671-4f19-849f-ce63fb29e117", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunye" + }, + "CitationForm": { + "seh": "mpfunye" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dcfe92de-cfe6-42ed-8b46-531865b930e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "6ecb636e-e671-4f19-849f-ce63fb29e117", + "Definition": {}, + "Gloss": { + "en": "worm", + "pt": "verme" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dd20cd3-4548-415a-b036-bd075d687529", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "dcfe92de-cfe6-42ed-8b46-531865b930e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea944392-6150-497c-83fb-d64f2e45fba7", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunzisi" + }, + "CitationForm": { + "seh": "mpfunzisi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc7bf292-711c-4bf3-8525-beee57ca6e80", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea944392-6150-497c-83fb-d64f2e45fba7", + "Definition": {}, + "Gloss": { + "en": "teacher", + "pt": "professor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "928224fe-084d-43b5-83a2-535e3a6dc86b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "bc7bf292-711c-4bf3-8525-beee57ca6e80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0710257d-ea52-4f90-ab1f-bf2812da2ca4", + "DeletedAt": null, + "LexemeForm": { + "seh": "futi" + }, + "CitationForm": { + "seh": "mpfuti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bcc80d0b-d814-4902-8d8a-87ffec430eaa", + "Order": 1, + "DeletedAt": null, + "EntryId": "0710257d-ea52-4f90-ab1f-bf2812da2ca4", + "Definition": {}, + "Gloss": { + "en": "gun", + "pt": "espingarda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9dbb78bc-62c7-4d3d-91af-33973649b48f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bcc80d0b-d814-4902-8d8a-87ffec430eaa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6cc49b2c-5504-4639-8855-97a2af33d405", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphabano" + }, + "CitationForm": { + "seh": "mphambano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87920a43-1881-459f-8c78-1cffc1b0bdf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "6cc49b2c-5504-4639-8855-97a2af33d405", + "Definition": {}, + "Gloss": { + "en": "cross-road", + "pt": "cruzamento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67206a2a-bd36-48d8-a75f-687f4aed4194", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "87920a43-1881-459f-8c78-1cffc1b0bdf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65a96505-c3c6-4af3-ad50-7a70a843c079", + "DeletedAt": null, + "LexemeForm": { + "seh": "phambvu" + }, + "CitationForm": { + "seh": "mphambvu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "040f83f5-5fe3-41ee-a842-4b68fff56408", + "Order": 1, + "DeletedAt": null, + "EntryId": "65a96505-c3c6-4af3-ad50-7a70a843c079", + "Definition": {}, + "Gloss": { + "en": "strength", + "pt": "forc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "316def81-2d31-472a-a7cb-4b25fc0e9e93", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "040f83f5-5fe3-41ee-a842-4b68fff56408", + "DeletedAt": null + } + ] + }, + { + "Id": "852eeee5-cde7-4ed8-8dde-6b44e024bbf0", + "Order": 2, + "DeletedAt": null, + "EntryId": "65a96505-c3c6-4af3-ad50-7a70a843c079", + "Definition": {}, + "Gloss": { + "en": "power", + "pt": "poder" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5bb597f-c78d-4d9d-9fc9-65e4c7730f20", + "DeletedAt": null, + "LexemeForm": { + "seh": "pandu" + }, + "CitationForm": { + "seh": "mphandu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "70a4dfae-de3d-4145-981c-36f0b64f6ff3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5bb597f-c78d-4d9d-9fc9-65e4c7730f20", + "Definition": {}, + "Gloss": { + "en": "criminal", + "pt": "criminoso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ec90a8f7-5c46-4bef-9d70-c0b924b2fa3d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "70a4dfae-de3d-4145-981c-36f0b64f6ff3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd837d20-5037-4ecd-a43f-cd82653a853f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phangwa" + }, + "CitationForm": { + "seh": "mphangwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "92397de3-9477-4955-8c94-c40a0bf6fe2d", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd837d20-5037-4ecd-a43f-cd82653a853f", + "Definition": {}, + "Gloss": { + "en": "news", + "pt": "novas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7abaf182-5bd9-4388-82e6-8638f51c5b9b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "92397de3-9477-4955-8c94-c40a0bf6fe2d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ae99eb30-9de6-4d21-be20-b073ea8ee60d", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphapo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "468a08fd-147d-413b-9293-0c15ad234fdb", + "Order": 1, + "DeletedAt": null, + "EntryId": "ae99eb30-9de6-4d21-be20-b073ea8ee60d", + "Definition": {}, + "Gloss": { + "en": "therefore", + "pt": "pore\u0301m" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "374e094d-f72c-4198-a2d0-5691802c7419", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musafunanji mphapo na ine.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Pore\u0301m o que quer comigo.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "468a08fd-147d-413b-9293-0c15ad234fdb", + "DeletedAt": null + }, + { + "Id": "9d6c0a09-2153-4e95-a9b0-46e90bbcaa40", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ine ndakucemera mphapo iwe watani kukhonda kubwera?", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "468a08fd-147d-413b-9293-0c15ad234fdb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bf070c0f-f83b-4765-ad59-d96208b63bb3", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphawi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d947c334-dc46-4a84-a6ad-7ac54d5b0cca", + "Order": 1, + "DeletedAt": null, + "EntryId": "bf070c0f-f83b-4765-ad59-d96208b63bb3", + "Definition": {}, + "Gloss": { + "en": "orphan", + "pt": "orfa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "57237095-23cf-43ba-aa6c-89cecdd35ff8", + "Name": { + "en": "Orphan" + }, + "Code": "4.1.9.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "463e043f-f1cd-4f2c-9dcb-7acabde34bda", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; George", + "Ws": "en" + } + ] + }, + "SenseId": "d947c334-dc46-4a84-a6ad-7ac54d5b0cca", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45b4b809-3a90-47c9-a8df-8c62cf251280", + "DeletedAt": null, + "LexemeForm": { + "seh": "phepo" + }, + "CitationForm": { + "seh": "mphepo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bb8e6660-085a-49ea-9abe-d83b4a21ec9b", + "Order": 1, + "DeletedAt": null, + "EntryId": "45b4b809-3a90-47c9-a8df-8c62cf251280", + "Definition": {}, + "Gloss": { + "en": "wind", + "pt": "vento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "abe2a570-ddfd-4566-81a6-44d39680e9b1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bb8e6660-085a-49ea-9abe-d83b4a21ec9b", + "DeletedAt": null + } + ] + }, + { + "Id": "1e0b35df-2ff6-4377-93af-b1a9d46e828d", + "Order": 2, + "DeletedAt": null, + "EntryId": "45b4b809-3a90-47c9-a8df-8c62cf251280", + "Definition": {}, + "Gloss": { + "en": "cold", + "pt": "frio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32492499-1d07-4612-b0d2-c39778f3f871", + "DeletedAt": null, + "LexemeForm": { + "seh": "phere" + }, + "CitationForm": { + "seh": "mphere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "feb3247b-c2bc-4efa-a83e-148624d67b3f", + "Order": 1, + "DeletedAt": null, + "EntryId": "32492499-1d07-4612-b0d2-c39778f3f871", + "Definition": {}, + "Gloss": { + "en": "chicken pox", + "pt": "sarna" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c649d2fd-85ce-4902-ba45-6d0bc3a072f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26 (says itch);", + "Ws": "en" + } + ] + }, + "SenseId": "feb3247b-c2bc-4efa-a83e-148624d67b3f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cfb58d8f-2696-4f7f-b315-38f916c2b3d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "phete" + }, + "CitationForm": { + "seh": "mphete" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ba5ea089-ff71-4a77-918b-8d4e53457026", + "Order": 1, + "DeletedAt": null, + "EntryId": "cfb58d8f-2696-4f7f-b315-38f916c2b3d1", + "Definition": {}, + "Gloss": { + "en": "ring", + "pt": "anel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b3f51e0-1a3b-4220-8b63-2a4073d06636", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ba5ea089-ff71-4a77-918b-8d4e53457026", + "DeletedAt": null + } + ] + }, + { + "Id": "aaef54b6-11fd-4168-98ba-34a318302138", + "Order": 2, + "DeletedAt": null, + "EntryId": "cfb58d8f-2696-4f7f-b315-38f916c2b3d1", + "Definition": {}, + "Gloss": { + "en": "ear ring", + "pt": "brinco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9e735a6d-c786-4605-b923-da2404b65d45", + "DeletedAt": null, + "LexemeForm": { + "seh": "phiriphiri" + }, + "CitationForm": { + "seh": "mphiriphiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef3e6d0f-d7b6-4da6-bae0-b550acc9c2a3", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e735a6d-c786-4605-b923-da2404b65d45", + "Definition": {}, + "Gloss": { + "en": "hot sauce", + "pt": "piripiri" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f8082469-08aa-4d26-a855-50de12e2b5eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef3e6d0f-d7b6-4da6-bae0-b550acc9c2a3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f129711c-1884-4bbb-b800-797b67b68c01", + "DeletedAt": null, + "LexemeForm": { + "seh": "phosa" + }, + "CitationForm": { + "seh": "mphosa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "417f91fc-c905-46ae-a30d-a9c7dcbea044", + "Order": 1, + "DeletedAt": null, + "EntryId": "f129711c-1884-4bbb-b800-797b67b68c01", + "Definition": {}, + "Gloss": { + "en": "guilt", + "pt": "culpa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2c98d7e-fb0c-4ac8-9f65-2b77a9b3a768", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "417f91fc-c905-46ae-a30d-a9c7dcbea044", + "DeletedAt": null + } + ] + }, + { + "Id": "a6723888-7ae9-4164-b4ca-eb34c31d1227", + "Order": 2, + "DeletedAt": null, + "EntryId": "f129711c-1884-4bbb-b800-797b67b68c01", + "Definition": {}, + "Gloss": { + "en": "motive", + "pt": "motivo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1914c74e-59b5-458d-9e70-4301d36aece7", + "DeletedAt": null, + "LexemeForm": { + "seh": "phuli" + }, + "CitationForm": { + "seh": "mphuli" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1c7f7bef-ff98-4eae-a377-d1249ab9a97f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1914c74e-59b5-458d-9e70-4301d36aece7", + "Definition": {}, + "Gloss": { + "en": "steer", + "pt": "boi" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "80ba7914-086b-4f4f-8270-3d34f40da475", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16 (mphulu); Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "1c7f7bef-ff98-4eae-a377-d1249ab9a97f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "422fb408-c22d-426f-924d-190c81a4da34", + "DeletedAt": null, + "LexemeForm": { + "seh": "phuno" + }, + "CitationForm": { + "seh": "mphuno" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "efa90080-56eb-4e15-a23b-b4eb8b46e3c6", + "Order": 1, + "DeletedAt": null, + "EntryId": "422fb408-c22d-426f-924d-190c81a4da34", + "Definition": {}, + "Gloss": { + "en": "nose", + "pt": "nariz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c9c24b52-6633-461c-9bc6-1192f63ea9e6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "efa90080-56eb-4e15-a23b-b4eb8b46e3c6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "897f092e-1a81-4048-9dd2-fd5be8a95d2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "pini" + }, + "CitationForm": { + "seh": "mpini" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea684ee3-06d3-4063-afbb-43f292bab934", + "Order": 1, + "DeletedAt": null, + "EntryId": "897f092e-1a81-4048-9dd2-fd5be8a95d2d", + "Definition": {}, + "Gloss": { + "en": "hoe-handle", + "pt": "cabo de enxada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "347f797e-758e-489b-89c0-3e1710d373bf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ea684ee3-06d3-4063-afbb-43f292bab934", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7482b8bd-5e7d-4636-9de0-d4dba36cee58", + "DeletedAt": null, + "LexemeForm": { + "seh": "pira" + }, + "CitationForm": { + "seh": "mpira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5303273f-e59f-4559-a7b9-3ed8c67e51b9", + "Order": 1, + "DeletedAt": null, + "EntryId": "7482b8bd-5e7d-4636-9de0-d4dba36cee58", + "Definition": {}, + "Gloss": { + "en": "rubber", + "pt": "borracha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "58c344ec-39ae-4c51-8f19-91071a5ba1fe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5303273f-e59f-4559-a7b9-3ed8c67e51b9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "34597aa1-d9f2-4c79-8021-fe885867f21c", + "DeletedAt": null, + "LexemeForm": { + "seh": "pitamiti" + }, + "CitationForm": { + "seh": "mpitamiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3b1b4dd2-b71d-475c-b4ed-9029d40d6706", + "Order": 1, + "DeletedAt": null, + "EntryId": "34597aa1-d9f2-4c79-8021-fe885867f21c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Giraffa camelopardalis", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "giraffe", + "pt": "girafe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0c09597d-76ef-496a-9c00-1c26e3f2e27a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "3b1b4dd2-b71d-475c-b4ed-9029d40d6706", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "559c30da-70fb-483b-8657-86911dc2e070", + "DeletedAt": null, + "LexemeForm": { + "seh": "porofeta" + }, + "CitationForm": { + "seh": "mporofeta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8de9acbd-0b74-4049-953c-071c405075b0", + "Order": 1, + "DeletedAt": null, + "EntryId": "559c30da-70fb-483b-8657-86911dc2e070", + "Definition": {}, + "Gloss": { + "en": "prophet", + "pt": "profeta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2b001a62-2118-4ac7-b4c3-4933b0ab26a4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8de9acbd-0b74-4049-953c-071c405075b0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a676fa4b-dabc-42f4-a9da-4e5213d06b8b", + "DeletedAt": null, + "LexemeForm": { + "seh": "psimbo" + }, + "CitationForm": { + "seh": "mpsimbo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "12ce5655-1077-43f3-a428-865c2382c5e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "a676fa4b-dabc-42f4-a9da-4e5213d06b8b", + "Definition": {}, + "Gloss": { + "en": "walking stick", + "pt": "bengala" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b4ea365f-be38-480b-9dbd-b2f08b66a35e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "12ce5655-1077-43f3-a428-865c2382c5e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2704aee-d5d9-4fbc-a1d7-3d02f07e080e", + "DeletedAt": null, + "LexemeForm": { + "seh": "psompson" + }, + "CitationForm": { + "seh": "mpsompsona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bd155a2e-4da5-4494-b51f-f7bc9c45af90", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2704aee-d5d9-4fbc-a1d7-3d02f07e080e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "suck mucus from a baby\u0027s nose", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "suck", + "pt": "chupar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "bbb897b5-f09b-4263-9f81-826ca61084f1", + "Name": { + "en": "Cleaning" + }, + "Code": "5.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "33eca2c1-3c51-428e-9ee3-c9e69b97ed4a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bd155a2e-4da5-4494-b51f-f7bc9c45af90", + "DeletedAt": null + } + ] + }, + { + "Id": "8b7f1749-dcc7-449d-8cf4-0f6e4388567d", + "Order": 2, + "DeletedAt": null, + "EntryId": "e2704aee-d5d9-4fbc-a1d7-3d02f07e080e", + "Definition": {}, + "Gloss": { + "en": "kiss", + "pt": "beijar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "419935a4-5514-4faa-afe8-434bb2af7276", + "DeletedAt": null, + "LexemeForm": { + "seh": "pulumusi" + }, + "CitationForm": { + "seh": "mpulumusi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c5b6e48-e724-4096-8551-38adf6522032", + "Order": 1, + "DeletedAt": null, + "EntryId": "419935a4-5514-4faa-afe8-434bb2af7276", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one who rescures, savior", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rescuer", + "pt": "salvador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "badb5e1d-ccf8-4822-8b59-3035b61fab41", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0c5b6e48-e724-4096-8551-38adf6522032", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f402761-f890-4caf-9000-f68c76072d02", + "DeletedAt": null, + "LexemeForm": { + "seh": "punga" + }, + "CitationForm": { + "seh": "mpunga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "357da00b-4a0a-416b-b7d5-6715c0bcab9f", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f402761-f890-4caf-9000-f68c76072d02", + "Definition": {}, + "Gloss": { + "en": "rice", + "pt": "arroz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f7a29316-4728-4c41-973a-dcc0b27759dc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "357da00b-4a0a-416b-b7d5-6715c0bcab9f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ae78a1a-655b-4f25-b861-5599bc0fd5e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mpupwira" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "988e3974-d24e-4b28-a11d-874f58604081", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ae78a1a-655b-4f25-b861-5599bc0fd5e9", + "Definition": {}, + "Gloss": { + "en": "chicken", + "pt": "galinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ee0554b1-28d1-40d7-a316-3be41f6bd336", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26;", + "Ws": "en" + } + ] + }, + "SenseId": "988e3974-d24e-4b28-a11d-874f58604081", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30caab0e-4a54-44ba-8eeb-35a1b69ac231", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "ee2d9aed-4390-4e1e-a980-35dfa240389b", + "Order": 1, + "DeletedAt": null, + "EntryId": "30caab0e-4a54-44ba-8eeb-35a1b69ac231", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "2daa296d-5b51-4db0-a4b4-8449bcf151d7", + "Order": 2, + "DeletedAt": null, + "EntryId": "30caab0e-4a54-44ba-8eeb-35a1b69ac231", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "474bf116-731a-4e42-ab6a-f96c1624467d", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "9f3296d7-a26e-4eb7-afd1-8dbfea7f1b35", + "Order": 1, + "DeletedAt": null, + "EntryId": "474bf116-731a-4e42-ab6a-f96c1624467d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "em", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "476a998a-4b01-4382-9268-9eac26f2cc6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "dce82f6a-5be2-48e5-ab33-6a7a8ade9dc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "476a998a-4b01-4382-9268-9eac26f2cc6a", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "364ab0ef-fa39-447f-9c41-d78e853f381f", + "Order": 2, + "DeletedAt": null, + "EntryId": "476a998a-4b01-4382-9268-9eac26f2cc6a", + "Definition": {}, + "Gloss": { + "en": "3S\u002B1", + "pt": "3S\u002B1" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d273928-6319-43ab-8055-3fd58be1d0cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "1411b5e7-b815-4269-8d39-6d3bac6ae96d", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d273928-6319-43ab-8055-3fd58be1d0cf", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6283da64-0a0e-4aad-adca-cb7aff6a4e13", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "b452249d-5017-4d97-9f0d-447aed630bf3", + "Order": 1, + "DeletedAt": null, + "EntryId": "6283da64-0a0e-4aad-adca-cb7aff6a4e13", + "Definition": { + "en": { + "Spans": [ + { + "Text": "second person plural, \u0022you\u0022", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "segunda pessoa plural, \u0022voce\u0302s\u0022", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2P", + "pt": "2P" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5f2e94c8-6d26-4457-930d-92a6b42d2bb1", + "Order": 1, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3772337f-c06f-4b59-952f-dbef86b873c2", + "Order": 2, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "4537b0a3-9b5b-4e72-b418-0552ef04aa72", + "Order": 3, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "0b76d8e9-2402-4147-ab7d-b2aebab1da19", + "Order": 4, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "01a8a3b9-3c28-409b-ae74-34b50a0ccca8", + "Order": 5, + "DeletedAt": null, + "EntryId": "71fb865c-e5c5-4803-aab5-aca42a2a7814", + "Definition": {}, + "Gloss": { + "en": "18", + "pt": "18" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2a90aca-1c65-4a90-955a-4ffe3ec34185", + "DeletedAt": null, + "LexemeForm": { + "seh": "mu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "712de4ef-13ce-4516-a450-4f4e3aa1c027", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2a90aca-1c65-4a90-955a-4ffe3ec34185", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in, into", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "em", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "in", + "pt": "em" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f4864315-6769-4836-bb01-ee069d68dab4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "712de4ef-13ce-4516-a450-4f4e3aa1c027", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1beac40-b5b6-4cc6-99cc-85c399fdc9d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "mubvi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "13c46c1a-2ac2-45df-92be-c20dc7e0d86c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1beac40-b5b6-4cc6-99cc-85c399fdc9d1", + "Definition": {}, + "Gloss": { + "en": "hearer", + "pt": "ouvinte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "75fafeed-f5d1-4783-aa95-df13c58c37c2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "13c46c1a-2ac2-45df-92be-c20dc7e0d86c", + "DeletedAt": null + } + ] + }, + { + "Id": "57294a93-e733-48c9-b02a-56cad22c300b", + "Order": 2, + "DeletedAt": null, + "EntryId": "b1beac40-b5b6-4cc6-99cc-85c399fdc9d1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "person who obeys", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pessoa obediente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "obedient", + "pt": "obediente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzi" + }, + "CitationForm": { + "seh": "mudzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f665aec3-2f08-4a10-b642-2f66e15e2bff", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "familia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "family", + "pt": "familia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2de4c40b-611d-40f0-802b-dab4bf184cc2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f665aec3-2f08-4a10-b642-2f66e15e2bff", + "DeletedAt": null + } + ] + }, + { + "Id": "70bb1144-bbca-4db0-97ad-a74eb8f8b25b", + "Order": 2, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "lar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "home", + "pt": "lar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "9643cb57-d654-47bd-90d3-a518f9a215c8", + "Order": 3, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "em plural significa aldeia ou povoac\u0327a\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "house", + "pt": "casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "06101c3f-a84c-4e12-a07c-dced6a45c73e", + "Order": 4, + "DeletedAt": null, + "EntryId": "8c5d6bc0-6b81-47aa-986c-528a9dc20ba0", + "Definition": {}, + "Gloss": { + "en": "home land", + "pt": "terra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ef7a5211-d4c0-49df-8fbf-e1ba7adab0a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "muikh" + }, + "CitationForm": { + "seh": "muikha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e00f99ea-0c54-4d3d-8f24-3f8dc374945c", + "Order": 1, + "DeletedAt": null, + "EntryId": "ef7a5211-d4c0-49df-8fbf-e1ba7adab0a4", + "Definition": {}, + "Gloss": { + "en": "put", + "pt": "por" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0379b533-ff8c-4f6a-ab16-b93be1a4018d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Bwerani mumuikhe manja anu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Vem por as suas ma\u0303os.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e00f99ea-0c54-4d3d-8f24-3f8dc374945c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dab39c65-22a7-4e91-81fd-82cfa178a506", + "DeletedAt": null, + "LexemeForm": { + "seh": "ukho" + }, + "CitationForm": { + "seh": "mukho" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f168eebc-3acb-494f-a2da-d9609f6649b4", + "Order": 1, + "DeletedAt": null, + "EntryId": "dab39c65-22a7-4e91-81fd-82cfa178a506", + "Definition": { + "en": { + "Spans": [ + { + "Text": "taboo, things forbiden after a birth or death", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "taboo", + "pt": "taboo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "24361be2-49be-4860-bb56-4e46dd1e8b0c", + "Name": { + "en": "Taboo" + }, + "Code": "4.9.5.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3b37edd0-96dd-4018-ac45-395432fa4f3b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f168eebc-3acb-494f-a2da-d9609f6649b4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb743dad-7e3b-4d37-aafe-e7a24939ea58", + "DeletedAt": null, + "LexemeForm": { + "seh": "lambe" + }, + "CitationForm": { + "seh": "mulambe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae8a5db3-1ba4-4825-8ee9-29f59d4c08b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb743dad-7e3b-4d37-aafe-e7a24939ea58", + "Definition": {}, + "Gloss": { + "en": "Boabab tree", + "pt": "embondeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3f3f178-2bb6-42ee-9bdd-5461214d71ee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ae8a5db3-1ba4-4825-8ee9-29f59d4c08b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fe3514ca-e963-4c15-9d26-badc670770f3", + "DeletedAt": null, + "LexemeForm": { + "seh": "lamu" + }, + "CitationForm": { + "seh": "mulamu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f38e8bd0-8595-4387-bbf7-853da1166ab1", + "Order": 1, + "DeletedAt": null, + "EntryId": "fe3514ca-e963-4c15-9d26-badc670770f3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "brother-in-law", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "bro-in-law", + "pt": "cunhado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "89ad4e41-bf08-4d93-a4f3-f72e8cc62bed", + "Name": { + "en": "In-law" + }, + "Code": "4.1.9.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "90cde2ca-0580-42fa-8c32-205edfc7ee7f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook", + "Ws": "en" + } + ] + }, + "SenseId": "f38e8bd0-8595-4387-bbf7-853da1166ab1", + "DeletedAt": null + } + ] + }, + { + "Id": "404d6557-8056-4240-bc97-83bfa1d1f1b5", + "Order": 2, + "DeletedAt": null, + "EntryId": "fe3514ca-e963-4c15-9d26-badc670770f3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sister-in-law", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sis-in-law", + "pt": "cunhada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbd5b29a-96fd-4ae6-9b39-05431ccf9fbf", + "DeletedAt": null, + "LexemeForm": { + "seh": "landu" + }, + "CitationForm": { + "seh": "mulandu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d90b15f9-cd4f-457f-bf85-1482092df52f", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbd5b29a-96fd-4ae6-9b39-05431ccf9fbf", + "Definition": {}, + "Gloss": { + "en": "legal problem", + "pt": "questa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "85214614-ab45-4805-9014-092750d47511", + "Name": { + "en": "Trial" + }, + "Code": "4.7.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ccaf39c2-b1f7-4294-87c2-c7f8bc0a1b53", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "d90b15f9-cd4f-457f-bf85-1482092df52f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1b0490b4-8857-4f7c-a945-44969d464992", + "DeletedAt": null, + "LexemeForm": { + "seh": "lendo" + }, + "CitationForm": { + "seh": "mulendo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ecc01f99-48a1-461d-b8b2-46b4c5a30477", + "Order": 1, + "DeletedAt": null, + "EntryId": "1b0490b4-8857-4f7c-a945-44969d464992", + "Definition": {}, + "Gloss": { + "en": "guest", + "pt": "ho\u0301spede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b56837f-a5b3-4cc5-a40e-d9d5387e9b7f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ecc01f99-48a1-461d-b8b2-46b4c5a30477", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5c4a4b2b-3219-416e-a016-1f37f59583b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "lengi" + }, + "CitationForm": { + "seh": "mulengi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3b494e2-9733-4146-a050-7d78eb3a38ce", + "Order": 1, + "DeletedAt": null, + "EntryId": "5c4a4b2b-3219-416e-a016-1f37f59583b3", + "Definition": {}, + "Gloss": { + "en": "creator", + "pt": "criador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d9a151fc-254a-45e4-b484-8f472bd6df1f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "aponta.doc", + "Ws": "en" + } + ] + }, + "SenseId": "b3b494e2-9733-4146-a050-7d78eb3a38ce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3292a600-f89c-4a74-9f52-b2b405aafab0", + "DeletedAt": null, + "LexemeForm": { + "seh": "limba" + }, + "CitationForm": { + "seh": "mulimba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32e7178d-8d3c-464c-9a73-999018fc8600", + "Order": 1, + "DeletedAt": null, + "EntryId": "3292a600-f89c-4a74-9f52-b2b405aafab0", + "Definition": {}, + "Gloss": { + "en": "fox", + "pt": "raposa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "afe997eb-d751-4732-b3ed-773745479006", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "32e7178d-8d3c-464c-9a73-999018fc8600", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0b20a35d-5c7a-4f77-bf84-4b76714b67ae", + "DeletedAt": null, + "LexemeForm": { + "seh": "limi" + }, + "CitationForm": { + "seh": "mulimi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "641c6360-fd59-4722-bd66-0172e3106381", + "Order": 1, + "DeletedAt": null, + "EntryId": "0b20a35d-5c7a-4f77-bf84-4b76714b67ae", + "Definition": {}, + "Gloss": { + "en": "farmer", + "pt": "lavrador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b6f0521f-56d0-428e-a154-550f5ada8889", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "641c6360-fd59-4722-bd66-0172e3106381", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "53f208d7-acb6-46a0-b8f6-28262838a5b5", + "DeletedAt": null, + "LexemeForm": { + "seh": "linga" + }, + "CitationForm": { + "seh": "mulinga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ec79a63-c04d-4cad-89a8-8202b248e9d6", + "Order": 1, + "DeletedAt": null, + "EntryId": "53f208d7-acb6-46a0-b8f6-28262838a5b5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small clay container for water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "jar", + "pt": "bilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7184a1b4-1595-4ae5-8385-504d94dc450d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "0ec79a63-c04d-4cad-89a8-8202b248e9d6", + "DeletedAt": null + } + ] + }, + { + "Id": "2335ea36-7ae3-4407-96c0-6c56ab0ab85f", + "Order": 2, + "DeletedAt": null, + "EntryId": "53f208d7-acb6-46a0-b8f6-28262838a5b5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "banana stem", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cacho de banana", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "stem", + "pt": "cacho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "11473a37-f10a-4201-b569-afd4b994373c", + "DeletedAt": null, + "LexemeForm": { + "seh": "lomo" + }, + "CitationForm": { + "seh": "mulomo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b00452e-9f58-40ee-b5bc-144ca16cfa99", + "Order": 1, + "DeletedAt": null, + "EntryId": "11473a37-f10a-4201-b569-afd4b994373c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "exterior of the mouth; lips", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "parte fora de boca; labios", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "mouth", + "pt": "boca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3035854-1d0a-4748-8f23-d48822e1529d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Orth; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4b00452e-9f58-40ee-b5bc-144ca16cfa99", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ee03e16-8f98-4ce4-803d-2ffe7c1be853", + "DeletedAt": null, + "LexemeForm": { + "seh": "lopa" + }, + "CitationForm": { + "seh": "mulopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7b534357-4f34-4296-83f7-d34117562e34", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ee03e16-8f98-4ce4-803d-2ffe7c1be853", + "Definition": { + "en": { + "Spans": [ + { + "Text": "blood of a slain animal that is eaten", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "sangue de animal que e\u0301 comdida", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "animal", + "pt": "sangue" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dd6f506a-ac4b-47a6-950d-736ef40d7883", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7b534357-4f34-4296-83f7-d34117562e34", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "056df796-f9bb-4b07-a2de-6db782006f6d", + "DeletedAt": null, + "LexemeForm": { + "seh": "lungu" + }, + "CitationForm": { + "seh": "Mulungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4548c5d-eb50-42fc-aa93-d77c26546fad", + "Order": 1, + "DeletedAt": null, + "EntryId": "056df796-f9bb-4b07-a2de-6db782006f6d", + "Definition": {}, + "Gloss": { + "en": "God", + "pt": "Deus" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b60bf544-7774-4623-8c67-19b32b53dea2", + "Name": { + "en": "God" + }, + "Code": "4.9.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4585f851-94bf-4e6e-95f0-5996704ff55e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "c4548c5d-eb50-42fc-aa93-d77c26546fad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8aa9129e-e49c-459c-a5dc-f9f032f8f239", + "DeletedAt": null, + "LexemeForm": { + "seh": "mulungu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "908ddf2c-332a-4e9f-8de1-27614a904271", + "Order": 1, + "DeletedAt": null, + "EntryId": "8aa9129e-e49c-459c-a5dc-f9f032f8f239", + "Definition": {}, + "Gloss": { + "en": "rain", + "pt": "chuva" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7db96fd4-8dbb-489f-b26b-8cb566035f4f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu abvumba pikulu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Chuva choveu muito.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "908ddf2c-332a-4e9f-8de1-27614a904271", + "DeletedAt": null + } + ] + }, + { + "Id": "0331c633-2be2-47d7-8ff0-1274ed7032b3", + "Order": 2, + "DeletedAt": null, + "EntryId": "8aa9129e-e49c-459c-a5dc-f9f032f8f239", + "Definition": {}, + "Gloss": { + "en": "God" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0e015bc-7813-4b88-b177-7ade17468421", + "DeletedAt": null, + "LexemeForm": { + "seh": "mumphu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f03e03a1-ebda-4820-b607-fdf73a942456", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0e015bc-7813-4b88-b177-7ade17468421", + "Definition": {}, + "Gloss": { + "en": "entire", + "pt": "inteiro" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ec3b1a01-5359-4c61-9768-e8ce336e7ccf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ntsiku ya mumphu, anthu a mumphu, nyama za mumphu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "f03e03a1-ebda-4820-b607-fdf73a942456", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "89434fa7-3da1-4080-806d-b9b1a73b8b45", + "DeletedAt": null, + "LexemeForm": { + "seh": "muna" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "924d0672-d2ff-4b6d-81fc-d4799ab39877", + "Order": 1, + "DeletedAt": null, + "EntryId": "89434fa7-3da1-4080-806d-b9b1a73b8b45", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the midst of", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "no meio de", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "in", + "pt": "em" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "2c21fc5d-994d-43b6-b2c3-bf6328e19ca3", + "Order": 2, + "DeletedAt": null, + "EntryId": "89434fa7-3da1-4080-806d-b9b1a73b8b45", + "Definition": {}, + "Gloss": { + "en": "concerning", + "pt": "acerca de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4462b84-a7ca-4837-80f2-990dbe91f335", + "DeletedAt": null, + "LexemeForm": { + "seh": "nda" + }, + "CitationForm": { + "seh": "munda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bd970f05-4571-49f5-8d72-9edcb5a29ad9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4462b84-a7ca-4837-80f2-990dbe91f335", + "Definition": {}, + "Gloss": { + "en": "field", + "pt": "machamba" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7f128896-bfaa-4fff-8806-39973434d2ca", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:28", + "Ws": "en" + } + ] + }, + "SenseId": "bd970f05-4571-49f5-8d72-9edcb5a29ad9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05a63125-e37b-42f2-bd63-9243563e2973", + "DeletedAt": null, + "LexemeForm": { + "seh": "munga" + }, + "CitationForm": { + "seh": "munga" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8b42f1fc-1bc7-45b9-9184-2322751e795b", + "Order": 1, + "DeletedAt": null, + "EntryId": "05a63125-e37b-42f2-bd63-9243563e2973", + "Definition": {}, + "Gloss": { + "en": "when", + "pt": "quando" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fa641d9b-4930-495c-9c5b-ab31d9401661", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8b42f1fc-1bc7-45b9-9184-2322751e795b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "080950b1-9b36-472b-bd4e-9b58025e538e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nga" + }, + "CitationForm": { + "seh": "munga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "33678318-e191-47d2-a4a9-dc78b956e157", + "Order": 1, + "DeletedAt": null, + "EntryId": "080950b1-9b36-472b-bd4e-9b58025e538e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "thorn of plant or fish", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "thorn", + "pt": "espinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe647905-7435-44c8-9dff-ec34d11c9185", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:15; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "33678318-e191-47d2-a4a9-dc78b956e157", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b4eecca2-5efc-49e1-84e4-927595843b76", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthu" + }, + "CitationForm": { + "seh": "munthu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f9ea974-8b29-46fd-b490-063e7f63a89e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b4eecca2-5efc-49e1-84e4-927595843b76", + "Definition": {}, + "Gloss": { + "en": "person", + "pt": "pessoa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68f165e5-5d77-4639-bc89-624e95487fdf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,14; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0f9ea974-8b29-46fd-b490-063e7f63a89e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "606684b4-a469-4147-9413-b9f420559677", + "DeletedAt": null, + "LexemeForm": { + "seh": "munyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32460030-3965-4ee7-a77b-17f8090d2d13", + "Order": 1, + "DeletedAt": null, + "EntryId": "606684b4-a469-4147-9413-b9f420559677", + "Definition": {}, + "Gloss": { + "en": "salt", + "pt": "sal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "7beca90c-3671-4b3c-bf9a-fb8f08ff914b", + "Name": { + "en": "Salt" + }, + "Code": "5.2.3.3.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "74d1cb63-55c5-4798-9913-38353826dc49", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13; wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "32460030-3965-4ee7-a77b-17f8090d2d13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78c71cd8-08e7-4a62-a287-fa7f7d7ea9b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "oneri" + }, + "CitationForm": { + "seh": "muoneri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "341b8689-f950-49c5-9640-16886ac1afbd", + "Order": 1, + "DeletedAt": null, + "EntryId": "78c71cd8-08e7-4a62-a287-fa7f7d7ea9b7", + "Definition": {}, + "Gloss": { + "en": "guard", + "pt": "guarda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f65716b3-e7c4-4240-b01b-3d771894cc70", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "341b8689-f950-49c5-9640-16886ac1afbd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5557b63-6ba0-4d3b-81df-bdb2aa5c2193", + "DeletedAt": null, + "LexemeForm": { + "seh": "oni" + }, + "CitationForm": { + "seh": "muoni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42c30da5-0ade-4f3e-a11d-8d7c275ab9ed", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5557b63-6ba0-4d3b-81df-bdb2aa5c2193", + "Definition": {}, + "Gloss": { + "en": "reward", + "pt": "galada\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "31834ac9-b990-4b44-abbe-4ec84259a48e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "42c30da5-0ade-4f3e-a11d-8d7c275ab9ed", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "94200ce4-e4ce-43f0-9fda-0d6101ee7c49", + "DeletedAt": null, + "LexemeForm": { + "seh": "rope" + }, + "CitationForm": { + "seh": "murope" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a5dace3-e179-4e9c-9cd8-49f8b26a382d", + "Order": 1, + "DeletedAt": null, + "EntryId": "94200ce4-e4ce-43f0-9fda-0d6101ee7c49", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "segundo sementeira do ano, april-maio, depois de premeira cheia do rios", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "autumn", + "pt": "octono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c546f566-1262-421c-ae93-4538bff64e75", + "DeletedAt": null, + "LexemeForm": { + "seh": "mus" + }, + "CitationForm": { + "seh": "musa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31fd829f-9a38-48f3-be66-5673df90f25d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c546f566-1262-421c-ae93-4538bff64e75", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ask for a girl\u0027s hand in marriage, give condolences,", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "propose", + "pt": "propor casamento" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ceecc71d-2295-4591-bb0b-55ffcf4bd61d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "31fd829f-9a38-48f3-be66-5673df90f25d", + "DeletedAt": null + } + ] + }, + { + "Id": "62b1a7ca-26cd-4c6a-94ce-3db720f3a146", + "Order": 2, + "DeletedAt": null, + "EntryId": "c546f566-1262-421c-ae93-4538bff64e75", + "Definition": { + "en": { + "Spans": [ + { + "Text": "requirement to have relations with brother of one\u0027s dead husband with option to remain married", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "marry in-law", + "pt": "casar cunhado" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06e398d6-a16f-42c5-855d-790622cb6ec1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": { + "seh": "muti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "388e6630-6231-4ea8-86a6-1a98d2d01126", + "Order": 1, + "DeletedAt": null, + "EntryId": "06e398d6-a16f-42c5-855d-790622cb6ec1", + "Definition": {}, + "Gloss": { + "en": "tree", + "pt": "arvora" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "0ee5b933-f1ab-485f-894a-51fe239cb726", + "Name": { + "en": "Tree" + }, + "Code": "1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "531af868-b5fb-41c2-ba50-764458f9102f", + "Name": { + "en": "Bush, shrub" + }, + "Code": "1.5.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3079e659-8dc4-4280-b44c-024b91868ca2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:15; Wordlist; Orth; Nya; Sapa\u0303o", + "Ws": "en" + } + ] + }, + "SenseId": "388e6630-6231-4ea8-86a6-1a98d2d01126", + "DeletedAt": null + } + ] + }, + { + "Id": "c4d3b653-3207-4b86-942e-080107bd75c3", + "Order": 2, + "DeletedAt": null, + "EntryId": "06e398d6-a16f-42c5-855d-790622cb6ec1", + "Definition": {}, + "Gloss": { + "en": "plant", + "pt": "planta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "661721b0-a4cd-4a11-b949-02e59bc569bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "muts" + }, + "CitationForm": { + "seh": "mutsa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d404c710-b362-43d5-b616-7b1e72686914", + "Order": 1, + "DeletedAt": null, + "EntryId": "661721b0-a4cd-4a11-b949-02e59bc569bc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to ask a visitor to report how things are going", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pedir relato\u0301rio", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "request news", + "pt": "pedir relato\u0301rio" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0cec00c3-d005-4645-84df-79184ae4d768", + "DeletedAt": null, + "LexemeForm": { + "seh": "yy" + }, + "CitationForm": { + "seh": "muya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "99e2fd45-de4f-443f-83d9-cd97bdf26699", + "Order": 1, + "DeletedAt": null, + "EntryId": "0cec00c3-d005-4645-84df-79184ae4d768", + "Definition": {}, + "Gloss": { + "en": "wind", + "pt": "vento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4", + "Name": { + "en": "Wind" + }, + "Code": "1.1.3.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "05e05a33-3018-47aa-8e7a-d263b93bd01c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Muya wa Mulengi wampita nkati mwa ntima mwace.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "O espi\u0301rito de Deus entrou dentro do corac\u0327a\u0303o dele.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "99e2fd45-de4f-443f-83d9-cd97bdf26699", + "DeletedAt": null + } + ] + }, + { + "Id": "a8047ab7-12d6-478e-9278-7743d479ec39", + "Order": 2, + "DeletedAt": null, + "EntryId": "0cec00c3-d005-4645-84df-79184ae4d768", + "Definition": {}, + "Gloss": { + "en": "air", + "pt": "ar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "935c0a9c-8294-4ed7-8dac-6c9b6addd09e", + "DeletedAt": null, + "LexemeForm": { + "seh": "mw" + }, + "CitationForm": { + "seh": "mwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "076b345f-c4d7-4b07-885a-532a69eb125d", + "Order": 1, + "DeletedAt": null, + "EntryId": "935c0a9c-8294-4ed7-8dac-6c9b6addd09e", + "Definition": {}, + "Gloss": { + "en": "drink", + "pt": "beber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "6de42a33-35b2-49c6-b2c4-fa9c0c5094f0", + "Name": { + "en": "Drink" + }, + "Code": "5.2.2.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "58a95cff-ad56-422b-9e4c-af7f09e59415", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "076b345f-c4d7-4b07-885a-532a69eb125d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49860b06-c3d1-447b-aec1-ceebd38bde45", + "DeletedAt": null, + "LexemeForm": { + "seh": "adia" + }, + "CitationForm": { + "seh": "mwadia" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ba8a7d2-70af-4f14-a5ad-278d876ca7d6", + "Order": 1, + "DeletedAt": null, + "EntryId": "49860b06-c3d1-447b-aec1-ceebd38bde45", + "Definition": {}, + "Gloss": { + "en": "dugout canoe", + "pt": "canoa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e9aa27c2-75f4-4973-a2be-78b92dcc7b87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5ba8a7d2-70af-4f14-a5ad-278d876ca7d6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06180070-be38-46d4-9efe-f00644614b6f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ala" + }, + "CitationForm": { + "seh": "mwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cfc7cb6e-8204-4830-89ef-aa7830363a26", + "Order": 1, + "DeletedAt": null, + "EntryId": "06180070-be38-46d4-9efe-f00644614b6f", + "Definition": {}, + "Gloss": { + "en": "stone", + "pt": "pedra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "0f07adb7-4387-4723-9800-8362e825ad45", + "Name": { + "en": "Rock" + }, + "Code": "1.2.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fe807ca3-5cb9-43ba-93ec-c2def7b023d6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "cfc7cb6e-8204-4830-89ef-aa7830363a26", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c3cc6b53-9a30-458e-a0df-4a2c14c33dc3", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwal" + }, + "CitationForm": { + "seh": "mwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9fce6360-d80f-49b6-a498-d3d726f75294", + "Order": 1, + "DeletedAt": null, + "EntryId": "c3cc6b53-9a30-458e-a0df-4a2c14c33dc3", + "Definition": {}, + "Gloss": { + "en": "divorce", + "pt": "divorciar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5fca6ff9-85cd-4fe5-9a1a-509f372fc580", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9fce6360-d80f-49b6-a498-d3d726f75294", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c5359cee-a11e-49a3-9cbf-719b6079c4f7", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwalan" + }, + "CitationForm": { + "seh": "mwalana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3ff43d51-b217-43f3-ab1c-0cb615a286e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c5359cee-a11e-49a3-9cbf-719b6079c4f7", + "Definition": {}, + "Gloss": { + "en": "divorce", + "pt": "divorciar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efdd4f64-e2f2-4358-bc72-8ad120fde978", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3ff43d51-b217-43f3-ab1c-0cb615a286e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77a4dd31-8594-4797-aa7d-82cb30ae6e9b", + "DeletedAt": null, + "LexemeForm": { + "seh": "amyali" + }, + "CitationForm": { + "seh": "mwali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa7a8c63-d69a-4759-87d8-34238f762bfd", + "Order": 1, + "DeletedAt": null, + "EntryId": "77a4dd31-8594-4797-aa7d-82cb30ae6e9b", + "Definition": {}, + "Gloss": { + "en": "girl", + "pt": "rapariga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "262c6b1b-90f6-442e-a3c3-1e16c396a4aa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:26", + "Ws": "en" + } + ] + }, + "SenseId": "aa7a8c63-d69a-4759-87d8-34238f762bfd", + "DeletedAt": null + } + ] + }, + { + "Id": "e9979cef-9619-4a0f-a40e-0f5fee9c7abc", + "Order": 2, + "DeletedAt": null, + "EntryId": "77a4dd31-8594-4797-aa7d-82cb30ae6e9b", + "Definition": {}, + "Gloss": { + "en": "virgin", + "pt": "donzela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "be5f54c0-b77f-4b8c-995a-a2d4bb57fce3", + "DeletedAt": null, + "LexemeForm": { + "seh": "ambo" + }, + "CitationForm": { + "seh": "mwambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cee4d065-378c-4326-aced-688a7ff09338", + "Order": 1, + "DeletedAt": null, + "EntryId": "be5f54c0-b77f-4b8c-995a-a2d4bb57fce3", + "Definition": {}, + "Gloss": { + "en": "law", + "pt": "lei" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "DeletedAt": null, + "LexemeForm": { + "seh": "ana" + }, + "CitationForm": { + "seh": "mwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "53786682-eef8-4218-90af-5487843ce2b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "Definition": {}, + "Gloss": { + "en": "child", + "pt": "crianc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3996b5d-e6b2-4498-b717-0ac11fa0d787", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Yana ana ana.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Yana has children.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Yana tem crianc\u0327as.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "53786682-eef8-4218-90af-5487843ce2b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "64e522c8-a9f6-4cf8-8db1-2f69cef67b3b", + "MaybeId": "64e522c8-a9f6-4cf8-8db1-2f69cef67b3b", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "ComponentSenseId": null, + "ComponentHeadword": "mwana" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91bdbf5e-249c-40e1-a7b5-f1b342601a14", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwana wa mamuna" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "4f26b963-72b1-4641-982e-ed005da28c13", + "Order": 1, + "DeletedAt": null, + "EntryId": "91bdbf5e-249c-40e1-a7b5-f1b342601a14", + "Definition": {}, + "Gloss": { + "en": "son", + "pt": "filho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "48e561e2-fe23-499a-8000-da2f081b6532", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4f26b963-72b1-4641-982e-ed005da28c13", + "DeletedAt": null + } + ] + }, + { + "Id": "86d323e5-7bc2-49b4-8fdd-6f71388040e6", + "Order": 2, + "DeletedAt": null, + "EntryId": "91bdbf5e-249c-40e1-a7b5-f1b342601a14", + "Definition": {}, + "Gloss": { + "en": "husband\u0027s son", + "pt": "filho de marido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ana-cinthu" + }, + "CitationForm": { + "seh": "mwana-cinthu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "89941ef6-3dc0-4209-8c58-663a48ff909f", + "Order": 1, + "DeletedAt": null, + "EntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "Definition": {}, + "Gloss": { + "en": "owner", + "pt": "dono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "489e9793-4a92-4562-9bcb-a1f297eec6b7", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mwana-cinthu nyumba", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "dono de casa", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "89941ef6-3dc0-4209-8c58-663a48ff909f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "64e522c8-a9f6-4cf8-8db1-2f69cef67b3b", + "MaybeId": "64e522c8-a9f6-4cf8-8db1-2f69cef67b3b", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "894541b5-b3b7-4f2f-ba4a-cfb62143ce24", + "ComponentSenseId": null, + "ComponentHeadword": "mwana" + }, + { + "Id": "f481e391-7ddc-4248-bb9c-a7b6d29c1edf", + "MaybeId": "f481e391-7ddc-4248-bb9c-a7b6d29c1edf", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "9edcf8f9-b1fa-4eac-94d3-9d9140a3722b", + "ComplexFormHeadword": "mwana-cinthu", + "ComponentEntryId": "42f420d8-0d3a-4e67-ad79-a4694b6b5d78", + "ComponentSenseId": null, + "ComponentHeadword": "cinthu" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "25fc79e8-41f2-450f-8970-d8f79d028816", + "DeletedAt": null, + "LexemeForm": { + "seh": "ana-mobvi" + }, + "CitationForm": { + "seh": "mwana-mobvi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ab0f6a4-dddc-453f-b697-9b81d146dd74", + "Order": 1, + "DeletedAt": null, + "EntryId": "25fc79e8-41f2-450f-8970-d8f79d028816", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a person who always accompanies another, side kick", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "adjunct", + "pt": "adjunto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "96320fc1-0114-456d-a552-533c53f64b68", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0ab0f6a4-dddc-453f-b697-9b81d146dd74", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9ec35eb-e24f-437e-833e-0f35fc3d8684", + "DeletedAt": null, + "LexemeForm": { + "seh": "anambwa" + }, + "CitationForm": { + "seh": "mwanambwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6824a970-23bb-4beb-b27f-9eac8bffec68", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9ec35eb-e24f-437e-833e-0f35fc3d8684", + "Definition": {}, + "Gloss": { + "en": "dog", + "pt": "ca\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26fa18cb-f9e6-409f-8498-8158e014530e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "6824a970-23bb-4beb-b27f-9eac8bffec68", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a36c167-d91b-41a3-9052-001d4e25de67", + "DeletedAt": null, + "LexemeForm": { + "seh": "anakati" + }, + "CitationForm": { + "seh": "mwanankati" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "415d29e4-86f1-4212-95db-6a46fe5f3113", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a36c167-d91b-41a3-9052-001d4e25de67", + "Definition": {}, + "Gloss": { + "en": "messenger", + "pt": "mensageiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f1da3cfc-e43c-4a11-8d4f-7ccc1d5ffb51", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "415d29e4-86f1-4212-95db-6a46fe5f3113", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3e3514a5-0934-4aeb-b116-9f835fa1f485", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwanyik" + }, + "CitationForm": { + "seh": "mwanyika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "995cf936-0b6c-4adf-944b-e4df71b077c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "3e3514a5-0934-4aeb-b116-9f835fa1f485", + "Definition": {}, + "Gloss": { + "en": "greet", + "pt": "cumprimentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ccd1516b-d20e-4ad4-be22-444f0bae05ac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "995cf936-0b6c-4adf-944b-e4df71b077c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5325b505-35a9-42dd-9f05-c0768594d6b4", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwaz" + }, + "CitationForm": { + "seh": "mwaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "66eb9ca3-95dd-4fe1-9094-63afa7c3e680", + "Order": 1, + "DeletedAt": null, + "EntryId": "5325b505-35a9-42dd-9f05-c0768594d6b4", + "Definition": {}, + "Gloss": { + "en": "spread", + "pt": "esprelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "714f2180-3214-49bf-a801-fcb69f75d129", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "66eb9ca3-95dd-4fe1-9094-63afa7c3e680", + "DeletedAt": null + } + ] + }, + { + "Id": "18d57b4e-3f2e-4610-97f7-aba495ff2487", + "Order": 2, + "DeletedAt": null, + "EntryId": "5325b505-35a9-42dd-9f05-c0768594d6b4", + "Definition": {}, + "Gloss": { + "en": "broadcast news", + "pt": "divulgar noticias" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75f22a1d-3ed3-4173-9db1-53d413f9c301", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwazik" + }, + "CitationForm": { + "seh": "mwazika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "852e2a11-565d-4805-968f-190fd8762284", + "Order": 1, + "DeletedAt": null, + "EntryId": "75f22a1d-3ed3-4173-9db1-53d413f9c301", + "Definition": {}, + "Gloss": { + "en": "spread", + "pt": "esprelhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bb8923d6-98ee-4e86-8360-2f2927df0d3e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "852e2a11-565d-4805-968f-190fd8762284", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "144ea68c-0d63-43fe-9b16-aadb666c6ba7", + "DeletedAt": null, + "LexemeForm": { + "seh": "endamberi" + }, + "CitationForm": { + "seh": "mwendamberi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "34c3242c-a674-4917-8e84-9e6a2accb8c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "144ea68c-0d63-43fe-9b16-aadb666c6ba7", + "Definition": {}, + "Gloss": { + "en": "whirlpool", + "pt": "redemoinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "be5af033-4860-46e3-8c8c-598746ccbe21", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "34c3242c-a674-4917-8e84-9e6a2accb8c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c0731683-a8fc-4433-b8c0-cba14ad4ea29", + "DeletedAt": null, + "LexemeForm": { + "seh": "endo" + }, + "CitationForm": { + "seh": "mwendo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88565280-c9db-42a1-8127-41bff919d2c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c0731683-a8fc-4433-b8c0-cba14ad4ea29", + "Definition": {}, + "Gloss": { + "en": "leg", + "pt": "perna" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16914b17-4b50-4163-97af-45ef1eb095c3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "88565280-c9db-42a1-8127-41bff919d2c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a8e2566-6b79-4f4a-be7e-4fbc94a76464", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwenemo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cb3d7dff-ae38-4b65-a5ac-008a70a561ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a8e2566-6b79-4f4a-be7e-4fbc94a76464", + "Definition": {}, + "Gloss": { + "en": "this very one", + "pt": "aquele mesmo" + }, + "PartOfSpeech": { + "Id": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "Name": { + "en": "Demonstrative6", + "pt": "Demonstrativo6" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "01f5804e-4fdc-473b-99c7-310a0be8b454", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwenikir" + }, + "CitationForm": { + "seh": "mwenikira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "60410caf-4e30-421d-8379-d51dd28fba3e", + "Order": 1, + "DeletedAt": null, + "EntryId": "01f5804e-4fdc-473b-99c7-310a0be8b454", + "Definition": {}, + "Gloss": { + "en": "iluminate", + "pt": "illuminar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3101b654-cb18-42ff-90df-122863370043", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "60410caf-4e30-421d-8379-d51dd28fba3e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56627373-12c9-47ff-a42f-60efeaf94525", + "DeletedAt": null, + "LexemeForm": { + "seh": "mwenye" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc62d271-7625-47f5-8066-fc4fde24cf79", + "Order": 1, + "DeletedAt": null, + "EntryId": "56627373-12c9-47ff-a42f-60efeaf94525", + "Definition": {}, + "Gloss": { + "en": "muslim", + "pt": "muc\u0327ulmano" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ab8f5391-ad8b-42dc-a43c-22590a09ce77", + "Name": { + "en": "Islam" + }, + "Code": "4.9.7.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "b3bc1f11-3a21-480e-ab43-11408ac28f1b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bc62d271-7625-47f5-8066-fc4fde24cf79", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad4706fa-233c-4931-9f84-a350317c6c22", + "DeletedAt": null, + "LexemeForm": { + "seh": "ezi" + }, + "CitationForm": { + "seh": "mwezi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b91c9f15-752a-43da-91b7-c3cc29b2633c", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad4706fa-233c-4931-9f84-a350317c6c22", + "Definition": {}, + "Gloss": { + "en": "moon", + "pt": "lua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "af70f8c3-357c-425c-82d2-698004ca687a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b91c9f15-752a-43da-91b7-c3cc29b2633c", + "DeletedAt": null + } + ] + }, + { + "Id": "0092d1f9-866f-4644-a648-bdc723461976", + "Order": 2, + "DeletedAt": null, + "EntryId": "ad4706fa-233c-4931-9f84-a350317c6c22", + "Definition": {}, + "Gloss": { + "en": "month", + "pt": "me\u0302s" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e62ac7c-176f-480d-be1f-e6cc11fef4ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "imbi" + }, + "CitationForm": { + "seh": "mwimbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6ebf8305-6707-4317-ac40-0f30a3f592fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e62ac7c-176f-480d-be1f-e6cc11fef4ab", + "Definition": {}, + "Gloss": { + "en": "singer", + "pt": "cantor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e427aabb-ab53-4e46-b422-9e642dc76b7a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb; Moreira:14", + "Ws": "en" + } + ] + }, + "SenseId": "6ebf8305-6707-4317-ac40-0f30a3f592fc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0106b97-e8e0-493e-b9a1-21291e44fb56", + "DeletedAt": null, + "LexemeForm": { + "seh": "inji" + }, + "CitationForm": { + "seh": "mwinji" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b424532-f191-4a43-ab9b-9750458c38f8", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0106b97-e8e0-493e-b9a1-21291e44fb56", + "Definition": {}, + "Gloss": { + "en": "crowd", + "pt": "multida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9f0c511f-b3b5-4831-b9e2-d7316e0c9d91", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b424532-f191-4a43-ab9b-9750458c38f8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd10091a-0474-449b-80de-25ff205a9444", + "DeletedAt": null, + "LexemeForm": { + "seh": "dikhwa" + }, + "CitationForm": { + "seh": "n\u0027dikhwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a780e1c6-949e-467a-bd6a-17181cdec72c", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd10091a-0474-449b-80de-25ff205a9444", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild coconut tree", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "coqueiro bravo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "coconut tree", + "pt": "coqueiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90a0f3af-b788-4b24-b91f-7e3a1df82c5c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:15; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a780e1c6-949e-467a-bd6a-17181cdec72c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f876006-1922-49b7-83f7-4f954b77f1bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "kanwa" + }, + "CitationForm": { + "seh": "n\u0027kanwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e82993d5-549f-41b6-8844-105962d58f45", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f876006-1922-49b7-83f7-4f954b77f1bd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "mouth, refers to the interior part of the mouth", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "mouth inside", + "pt": "boca detro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "47fe87de-1a03-4613-9491-53b5209f2ee7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "e82993d5-549f-41b6-8844-105962d58f45", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35dcf61a-a85e-4a21-8852-43dd8cf37b74", + "DeletedAt": null, + "LexemeForm": { + "seh": "khole" + }, + "CitationForm": { + "seh": "n\u0027khole" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fde0980-a087-4c10-9cc6-d3672722d1cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "35dcf61a-a85e-4a21-8852-43dd8cf37b74", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small.cloth used for clothing before pants became popular", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pano.pequeno que vestiu homens", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "loin cloth", + "pt": "tanga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7c7f5444-3578-4be1-bc4a-62afab1af391", + "DeletedAt": null, + "LexemeForm": { + "seh": "khondo" + }, + "CitationForm": { + "seh": "n\u0027khondo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2493ddcf-62d9-425a-8879-e3817c075560", + "Order": 1, + "DeletedAt": null, + "EntryId": "7c7f5444-3578-4be1-bc4a-62afab1af391", + "Definition": { + "en": { + "Spans": [ + { + "Text": "animal trail", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "caminho de animal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trail", + "pt": "caminho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fd1e60a3-01a0-44bf-966d-cc4728353ebc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2493ddcf-62d9-425a-8879-e3817c075560", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f406f180-d12b-49ba-ab78-b296638b19eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "khundu" + }, + "CitationForm": { + "seh": "n\u0027khundu-n\u0027khundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "75f63458-61f3-435a-9a56-b4dcc4e4c57e", + "Order": 1, + "DeletedAt": null, + "EntryId": "f406f180-d12b-49ba-ab78-b296638b19eb", + "Definition": {}, + "Gloss": { + "en": "side by side", + "pt": "lado a lado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "146ced19-5712-4550-b442-89ce02a200b7", + "Order": 2, + "DeletedAt": null, + "EntryId": "f406f180-d12b-49ba-ab78-b296638b19eb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the immediate shore of the river", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "river bank", + "pt": "margem de rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "928741b5-bff6-4dd1-be37-ec6e7a4eb6ca", + "Name": { + "en": "Island, shore" + }, + "Code": "1.3.1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75975d1d-61e4-4342-8ab6-17817c07b523", + "DeletedAt": null, + "LexemeForm": { + "seh": "thambo" + }, + "CitationForm": { + "seh": "n\u0027thambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "306efdb8-0e89-4f71-9456-4980caf881ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "75975d1d-61e4-4342-8ab6-17817c07b523", + "Definition": {}, + "Gloss": { + "en": "necklace", + "pt": "corda\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "410a3d81-290f-416b-8012-3aa16eaa9e55", + "Name": { + "en": "Women\u0027s clothing" + }, + "Code": "5.3.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c7cfa06d-6564-4228-9648-0165b3540c54", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya \u0026 Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "306efdb8-0e89-4f71-9456-4980caf881ea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13ee2e0e-64bc-48cd-beb1-24ad04d67fcb", + "DeletedAt": null, + "LexemeForm": { + "seh": "thiko" + }, + "CitationForm": { + "seh": "n\u0027thiko" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc8c21cf-b752-4ba0-abed-a80e4bd1759c", + "Order": 1, + "DeletedAt": null, + "EntryId": "13ee2e0e-64bc-48cd-beb1-24ad04d67fcb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large wooden spoon used to prepare corn porridge", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "meixedoura usado na preparac\u0327a\u0303o de massa de milho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "spoon", + "pt": "meixedoura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e159802b-c7af-477b-b572-569f92018cb0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "dc8c21cf-b752-4ba0-abed-a80e4bd1759c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "479c5226-cf86-4769-b41f-fd4e633eac27", + "DeletedAt": null, + "LexemeForm": { + "seh": "thunzi" + }, + "CitationForm": { + "seh": "n\u0027thunzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "30970938-00cf-4d44-b45f-b92256f4d132", + "Order": 1, + "DeletedAt": null, + "EntryId": "479c5226-cf86-4769-b41f-fd4e633eac27", + "Definition": {}, + "Gloss": { + "en": "shadow", + "pt": "sombra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "31a1f81e-793e-46a9-aeea-f3b45bf5feb6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "30970938-00cf-4d44-b45f-b92256f4d132", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d7de38a8-10a7-458f-802b-6eec1ef2378f", + "DeletedAt": null, + "LexemeForm": { + "seh": "n\u0027tsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a7dfa8c-5794-43fa-90a2-1efdbaee7873", + "Order": 1, + "DeletedAt": null, + "EntryId": "d7de38a8-10a7-458f-802b-6eec1ef2378f", + "Definition": {}, + "Gloss": { + "en": "in the bush", + "pt": "no mato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "681dcfd8-824e-49f3-a0ed-ca68f31ee706", + "DeletedAt": null, + "LexemeForm": { + "seh": "na" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "81181c3d-cf69-40a1-89d4-d3ab0077528a", + "Order": 1, + "DeletedAt": null, + "EntryId": "681dcfd8-824e-49f3-a0ed-ca68f31ee706", + "Definition": { + "en": { + "Spans": [ + { + "Text": "nonpast", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "na\u0303o passado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "NONPST", + "pt": "NONPST" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9f64c8e1-7682-44eb-967a-5dc788f9d680", + "DeletedAt": null, + "LexemeForm": { + "seh": "n" + }, + "CitationForm": { + "seh": "na" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6fc6c873-5cc0-47ee-a8c4-f82e24e7e666", + "Order": 1, + "DeletedAt": null, + "EntryId": "9f64c8e1-7682-44eb-967a-5dc788f9d680", + "Definition": {}, + "Gloss": { + "en": "have", + "pt": "ter" + }, + "PartOfSpeech": { + "Id": "dbf8cf00-ef63-466a-bfb1-472e1fdae57d", + "Name": { + "en": "Irregular Verb - na" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "dbf8cf00-ef63-466a-bfb1-472e1fdae57d", + "SemanticDomains": [ + { + "Id": "24398eec-edd1-449a-ad36-d609be24a79e", + "Name": { + "en": "Have, be with" + }, + "Code": "7.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "DeletedAt": null, + "LexemeForm": { + "seh": "na" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84e5150e-3043-4652-9f64-849cf192fee4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "and", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "e", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "with", + "pt": "com" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [ + { + "Id": "24398eec-edd1-449a-ad36-d609be24a79e", + "Name": { + "en": "Have, be with" + }, + "Code": "7.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "393c2fff-0f76-4684-86cc-c7f196472086", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cifupi na phiri", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "close to the mountain", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "perto de montanha", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "sulo2 007", + "Ws": "en" + } + ] + }, + "SenseId": "84e5150e-3043-4652-9f64-849cf192fee4", + "DeletedAt": null + }, + { + "Id": "6a62c4af-4322-4852-ba3d-b8db35fd2dea", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nyakatendewa na kubva cipwazo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "The cameleon, at hearing the insult...", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Camalea\u0303o ao ouvir desprezo...", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "84e5150e-3043-4652-9f64-849cf192fee4", + "DeletedAt": null + } + ] + }, + { + "Id": "68e58260-9383-41f8-bb1a-7aa551e89fac", + "Order": 2, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "\u0022and\u0022 as a connector between verb pharses or clauses and cancels out sequentiality between events", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "e", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "and", + "pt": "e" + }, + "PartOfSpeech": { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "91120e17-4e49-43c0-b416-00176448fdd2", + "Order": 3, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": {}, + "Gloss": { + "en": "of", + "pt": "de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "fee1a6ff-3d64-44fa-9515-b51e7068b1d6", + "Order": 4, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "em", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "in", + "pt": "em" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d1e7a1fe-5475-4eae-99eb-d56f7248f6c4", + "Order": 5, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "\u0022by\u0022 only with passive verbs", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "por", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "by", + "pt": "por" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "cbad219c-e1bc-479c-877c-c0017a425ac1", + "Order": 6, + "DeletedAt": null, + "EntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "to", + "pt": "a" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "de3091a6-abfe-4ab7-b1d6-1c2cdfec39c1", + "MaybeId": "de3091a6-abfe-4ab7-b1d6-1c2cdfec39c1", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "f2f26ea2-a5d1-46d7-b720-f24a95267f1e", + "ComplexFormHeadword": "kati-na-kati", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + }, + { + "Id": "c6b6d826-32ca-4bad-8faa-f2c6354de085", + "MaybeId": "c6b6d826-32ca-4bad-8faa-f2c6354de085", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "7725611a-fd3d-4009-89b9-caf81ab31e85", + "ComplexFormHeadword": "kuenda-na-kuenda", + "ComponentEntryId": "a9e28647-c541-4278-a2b1-6f924c2c5aa7", + "ComponentSenseId": null, + "ComponentHeadword": "na" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "02f5101e-b6e2-47e5-b033-dd7197b5734b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nai" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7ff262e6-44c0-407c-bf42-49805e8b6848", + "Order": 1, + "DeletedAt": null, + "EntryId": "02f5101e-b6e2-47e5-b033-dd7197b5734b", + "Definition": {}, + "Gloss": { + "en": "four", + "pt": "quarto" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eedc3037-42a6-4bf3-bb84-856adfacd6c1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:33", + "Ws": "en" + } + ] + }, + "SenseId": "7ff262e6-44c0-407c-bf42-49805e8b6848", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "82b1d4df-c01f-48e0-a911-9f3bbbec4f2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nakati-nakati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", + "Order": 1, + "DeletedAt": null, + "EntryId": "82b1d4df-c01f-48e0-a911-9f3bbbec4f2b", + "Definition": {}, + "Gloss": { + "en": "very middle", + "pt": "meio mesmo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4a6de20-efe5-4c36-b043-b5d773a605bf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", + "DeletedAt": null + }, + { + "Id": "fe797f6b-731e-410d-9c8d-1b3ab550b08f", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndiri nakati-nakati wa nseu.", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "f0ae6cc9-d197-4897-9cba-bd1b2a27af64", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a2d97060-90c9-4311-939c-c0322dbb9c14", + "DeletedAt": null, + "LexemeForm": { + "seh": "nana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbcb955f-a907-4e80-89ea-ef01f43eabfa", + "Order": 1, + "DeletedAt": null, + "EntryId": "a2d97060-90c9-4311-939c-c0322dbb9c14", + "Definition": { + "en": { + "Spans": [ + { + "Text": "older brother", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "irma\u0303o mais velho", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "brother", + "pt": "irma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f45620d8-8728-4ec8-8b14-f1d315ce3656", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cbcb955f-a907-4e80-89ea-ef01f43eabfa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4ae7b57-44e0-4e9f-a3c2-bde040c1bf24", + "DeletedAt": null, + "LexemeForm": { + "seh": "nango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e306b70f-d7bb-402a-b7bb-ffcd6628c784", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4ae7b57-44e0-4e9f-a3c2-bde040c1bf24", + "Definition": {}, + "Gloss": { + "en": "other", + "pt": "outra" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ef2a930-59ee-493a-8db0-1bf59f345be8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e306b70f-d7bb-402a-b7bb-ffcd6628c784", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "84601dac-41aa-443a-8a1e-6f5abecba31d", + "DeletedAt": null, + "LexemeForm": { + "seh": "cera" + }, + "CitationForm": { + "seh": "ncera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "caca5235-796e-488e-b651-93816bb5e38e", + "Order": 1, + "DeletedAt": null, + "EntryId": "84601dac-41aa-443a-8a1e-6f5abecba31d", + "Definition": {}, + "Gloss": { + "en": "a well", + "pt": "poc\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "bf6e1719-11ee-4ace-9c84-72019c01aabc", + "Name": { + "en": "Spring, well" + }, + "Code": "1.3.1.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "70c97527-7025-4c00-a1d6-4bacc964113c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:3", + "Ws": "en" + } + ] + }, + "SenseId": "caca5235-796e-488e-b651-93816bb5e38e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a2fae07-7b80-4236-8976-3890beca3866", + "DeletedAt": null, + "LexemeForm": { + "seh": "chanje" + }, + "CitationForm": { + "seh": "nchanje" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01c0dd6b-8bb7-4a5d-98e7-3f2fc550bd0e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a2fae07-7b80-4236-8976-3890beca3866", + "Definition": {}, + "Gloss": { + "en": "jealousy", + "pt": "ciu\u0301me" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6388f5a2-b775-4d5c-9367-f05cd09869cb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze (ntsanje); Alicete", + "Ws": "en" + } + ] + }, + "SenseId": "01c0dd6b-8bb7-4a5d-98e7-3f2fc550bd0e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2046477c-75f9-4e2f-8785-d05d542e3db4", + "DeletedAt": null, + "LexemeForm": { + "seh": "chichi" + }, + "CitationForm": { + "seh": "nchichi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e9831e86-8361-44fa-a4df-08394a608984", + "Order": 1, + "DeletedAt": null, + "EntryId": "2046477c-75f9-4e2f-8785-d05d542e3db4", + "Definition": {}, + "Gloss": { + "en": "root", + "pt": "raiz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fff9596b-0f84-4715-8ffb-bfc3e26741eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e9831e86-8361-44fa-a4df-08394a608984", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "39dc0d40-bee5-4d29-9767-69adab9470ca", + "DeletedAt": null, + "LexemeForm": { + "seh": "cindu" + }, + "CitationForm": { + "seh": "ncindu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aabd42d8-a97a-4377-a2fa-6240fcb9c6b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "39dc0d40-bee5-4d29-9767-69adab9470ca", + "Definition": {}, + "Gloss": { + "en": "palm tree", + "pt": "palmeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5b90873-e85e-4e41-a80d-ef8140244d8d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "aabd42d8-a97a-4377-a2fa-6240fcb9c6b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2c88689c-920e-4ef7-85a2-783413fdb514", + "DeletedAt": null, + "LexemeForm": { + "seh": "cira" + }, + "CitationForm": { + "seh": "ncira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4a4e6088-2f32-4bb8-a4cc-c5a0b66d9778", + "Order": 1, + "DeletedAt": null, + "EntryId": "2c88689c-920e-4ef7-85a2-783413fdb514", + "Definition": {}, + "Gloss": { + "en": "tail", + "pt": "cauda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ff67fb1f-c994-477c-b7f4-d452fbde2890", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4a4e6088-2f32-4bb8-a4cc-c5a0b66d9778", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0b972822-7375-4b44-8e59-4575b82317c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "citi" + }, + "CitationForm": { + "seh": "nciti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b52cc4bc-7dd7-4336-893f-071ed4fabd7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0b972822-7375-4b44-8e59-4575b82317c7", + "Definition": {}, + "Gloss": { + "en": "creator", + "pt": "criador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "136f608a-4d70-4e3f-bc46-87d55ffbd966", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "b52cc4bc-7dd7-4336-893f-071ed4fabd7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7e5fb6f3-74ff-4ac6-b806-a39fe2392ec3", + "DeletedAt": null, + "LexemeForm": { + "seh": "citwi" + }, + "CitationForm": { + "seh": "ncitwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "867f42cd-6511-458c-8659-c84de78e21f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "7e5fb6f3-74ff-4ac6-b806-a39fe2392ec3", + "Definition": {}, + "Gloss": { + "en": "creature", + "pt": "criatura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3017365-bb6d-4ed0-b5e7-14463031ca1a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32 (says rational creature)", + "Ws": "en" + } + ] + }, + "SenseId": "867f42cd-6511-458c-8659-c84de78e21f9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7c0502b-0783-4b13-a8b7-511dd3442fef", + "DeletedAt": null, + "LexemeForm": { + "seh": "combo" + }, + "CitationForm": { + "seh": "ncombo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9998867c-65bf-4126-aecb-73c98e6864a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7c0502b-0783-4b13-a8b7-511dd3442fef", + "Definition": {}, + "Gloss": { + "en": "navel", + "pt": "umbigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1594e83e-7938-4f24-a48b-e609f228d179", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "9998867c-65bf-4126-aecb-73c98e6864a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "df122a69-ceb1-4dd8-89a7-7f5a00ee5799", + "DeletedAt": null, + "LexemeForm": { + "seh": "cunu" + }, + "CitationForm": { + "seh": "ncunu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "33fa5883-44e0-4bf6-9181-5ae1dbbbdd17", + "Order": 1, + "DeletedAt": null, + "EntryId": "df122a69-ceb1-4dd8-89a7-7f5a00ee5799", + "Definition": {}, + "Gloss": { + "en": "waist", + "pt": "cintura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bd3971f0-a441-43af-a3ed-49b0a26b3053", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "33fa5883-44e0-4bf6-9181-5ae1dbbbdd17", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c28306ee-a238-472f-8f7d-22c413ca438f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndalama" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cb806a3e-0460-41d5-87e0-519fb87d80cd", + "Order": 1, + "DeletedAt": null, + "EntryId": "c28306ee-a238-472f-8f7d-22c413ca438f", + "Definition": {}, + "Gloss": { + "en": "money", + "pt": "dineiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bb41b153-8231-4111-a216-542e1ea8351e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cb806a3e-0460-41d5-87e0-519fb87d80cd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9c6ce14d-a0da-4d03-84b9-0c6ebcb8d405", + "DeletedAt": null, + "LexemeForm": { + "seh": "dani" + }, + "CitationForm": { + "seh": "ndani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5c6f03eb-38ca-403c-abce-77d6572100b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "9c6ce14d-a0da-4d03-84b9-0c6ebcb8d405", + "Definition": {}, + "Gloss": { + "en": "enemy", + "pt": "inimigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e864226-1a8e-421c-9a5e-aa6fe58ac6bf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5c6f03eb-38ca-403c-abce-77d6572100b1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6fb58a21-1e45-45b6-a325-8d35afbd4d8a", + "DeletedAt": null, + "LexemeForm": { + "seh": "dawa" + }, + "CitationForm": { + "seh": "ndawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea84d2b7-4063-4074-a75c-c8d9e267d3e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "6fb58a21-1e45-45b6-a325-8d35afbd4d8a", + "Definition": {}, + "Gloss": { + "en": "court case", + "pt": "milando" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "07a296dc-118d-47c0-a85f-a6176026a1a2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ea84d2b7-4063-4074-a75c-c8d9e267d3e6", + "DeletedAt": null + } + ] + }, + { + "Id": "7178a762-8c87-45db-b944-e7edd9e93ddb", + "Order": 2, + "DeletedAt": null, + "EntryId": "6fb58a21-1e45-45b6-a325-8d35afbd4d8a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sin, cause of guilt", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "sin", + "pt": "pecado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b38b335c-3ac4-4c41-931e-cf7e9dfa8b4d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndekha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cd9690f9-7c5e-48a5-b8fb-1c5b1a47e90c", + "Order": 1, + "DeletedAt": null, + "EntryId": "b38b335c-3ac4-4c41-931e-cf7e9dfa8b4d", + "Definition": {}, + "Gloss": { + "en": "alone", + "pt": "sozinho" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cc83747c-ec97-41e3-ba92-2dc7e717664c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cd9690f9-7c5e-48a5-b8fb-1c5b1a47e90c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f2655a45-88f7-4403-915e-f18bbf7b99e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndendemez" + }, + "CitationForm": { + "seh": "ndendemeza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24539709-eea2-44ec-9baa-f90a11eb703b", + "Order": 1, + "DeletedAt": null, + "EntryId": "f2655a45-88f7-4403-915e-f18bbf7b99e4", + "Definition": {}, + "Gloss": { + "en": "straighten", + "pt": "endireitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "647cce06-5531-4fa3-94b8-bcd53ede85b6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "24539709-eea2-44ec-9baa-f90a11eb703b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cbd57fd-e988-4cc6-a710-64f485453351", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndi" + }, + "CitationForm": { + "seh": "ndi" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a7282af1-7f78-4f10-ba25-238fedd5fb74", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cbd57fd-e988-4cc6-a710-64f485453351", + "Definition": {}, + "Gloss": { + "en": "it is", + "pt": "e\u0301" + }, + "PartOfSpeech": { + "Id": "748af620-8cd0-4364-a951-c234306f5b9f", + "Name": { + "en": "Copula Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d5d21dd-3c8c-4bf1-bc44-514edb792ff0", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "2e3443cd-d974-4c03-b809-9aef9f1919ed", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d5d21dd-3c8c-4bf1-bc44-514edb792ff0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "I", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "eu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1S", + "pt": "1S" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0e74b4cc-9f2b-4d56-bf46-76a022bb6782", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndiko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc447c6a-13f0-48ef-a0c3-9ad940af245c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0e74b4cc-9f2b-4d56-bf46-76a022bb6782", + "Definition": {}, + "Gloss": { + "en": "calice", + "pt": "ca\u0301lice" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bc29cedb-ee67-4713-b33d-9cbc40e13f9f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "dc447c6a-13f0-48ef-a0c3-9ad940af245c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aaed74ac-a322-484e-ab89-19f36cf44bdb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndimo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0cba0865-daa8-453e-9d82-08da268cea8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "aaed74ac-a322-484e-ab89-19f36cf44bdb", + "Definition": {}, + "Gloss": { + "en": "it is true", + "pt": "e\u0301 verdade" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ce4ee16-957b-45c9-9747-68f8aa316bb5", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndimo mwene", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "0cba0865-daa8-453e-9d82-08da268cea8e", + "DeletedAt": null + }, + { + "Id": "e1ed7d45-066a-4037-9f91-a44cdd59c72d", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "e\u0301 verdade", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "0cba0865-daa8-453e-9d82-08da268cea8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a52acf59-1273-4e0d-a0ff-ed2837200c36", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndimu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6008c4e3-3fc0-496c-be1b-22cc04fcc6ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "a52acf59-1273-4e0d-a0ff-ed2837200c36", + "Definition": {}, + "Gloss": { + "en": "lemon tree", + "pt": "limoneira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl mindimu", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d73ebfcc-b2b5-44e6-9e11-4fe4c37d0ed4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndimu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ba2a787f-ed2a-40f6-a418-225c50d3fc52", + "Order": 1, + "DeletedAt": null, + "EntryId": "d73ebfcc-b2b5-44e6-9e11-4fe4c37d0ed4", + "Definition": {}, + "Gloss": { + "en": "lemon", + "pt": "lima\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "85531f36-c472-4f09-8d69-93a0d2b133af", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ba2a787f-ed2a-40f6-a418-225c50d3fc52", + "DeletedAt": null + } + ] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "pl mandimu", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0c54cd8d-cae0-4fc7-a945-19fecb4df8c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndoko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "30851df2-373e-469a-886a-83495b238da9", + "Order": 1, + "DeletedAt": null, + "EntryId": "0c54cd8d-cae0-4fc7-a945-19fecb4df8c3", + "Definition": {}, + "Gloss": { + "en": "go!", + "pt": "va!" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2a9a9a7-899b-4875-a5e6-337c8ac249a9", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndoto" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ac662c72-e719-47cf-b6a3-a20bfce8186a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2a9a9a7-899b-4875-a5e6-337c8ac249a9", + "Definition": {}, + "Gloss": { + "en": "dream", + "pt": "sonho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "276baad4-8611-44e6-823f-9d1f8e65c787", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ac662c72-e719-47cf-b6a3-a20bfce8186a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebd49c9d-1458-4039-9db5-b2ab7cdbe92b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ndui" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86b544d8-af64-4fdd-8677-5c137f6bdd25", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebd49c9d-1458-4039-9db5-b2ab7cdbe92b", + "Definition": {}, + "Gloss": { + "en": "ground nut", + "pt": "amendoim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c8f94049-e3e6-4a8a-b2b6-004035f5d9ba", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:18", + "Ws": "en" + } + ] + }, + "SenseId": "86b544d8-af64-4fdd-8677-5c137f6bdd25", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "06e9dfad-56a3-4bc1-b8f1-b6a75cf84202", + "DeletedAt": null, + "LexemeForm": { + "seh": "nduli" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", + "Order": 1, + "DeletedAt": null, + "EntryId": "06e9dfad-56a3-4bc1-b8f1-b6a75cf84202", + "Definition": {}, + "Gloss": { + "en": "after", + "pt": "depois" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16461b12-2b9b-4b52-953f-ed8ecfb5f342", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ali kupi mwana? Ali nduli mwako", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Onde esta\u0301 a crianc\u0327a? Est atra\u0301s de ti.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", + "DeletedAt": null + }, + { + "Id": "92cec1e9-0287-42e6-b5ef-88a55f54fa56", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sogulani ndinabwera nduli mwanu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Adiate, hei de vir depois de si.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "fc59c881-2b22-43ba-a03f-e37dd09a3bf4", + "DeletedAt": null + } + ] + }, + { + "Id": "0e99aea0-3a09-40af-ba14-2fe5d0f42961", + "Order": 2, + "DeletedAt": null, + "EntryId": "06e9dfad-56a3-4bc1-b8f1-b6a75cf84202", + "Definition": {}, + "Gloss": { + "en": "behind", + "pt": "atra\u0301s" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "20b519ac-b133-4ff6-8449-bb635ffd1291", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzakazi" + }, + "CitationForm": { + "seh": "ndzakazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dbc383e0-acd4-458e-86b1-db9668dac4eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "20b519ac-b133-4ff6-8449-bb635ffd1291", + "Definition": {}, + "Gloss": { + "en": "slave", + "pt": "escravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "97353a06-97a7-448c-98de-cc514b51d87b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dbc383e0-acd4-458e-86b1-db9668dac4eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f22d51a4-26ae-4fe5-986a-0f5e2c909cba", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzeru" + }, + "CitationForm": { + "seh": "ndzeru" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2e84850b-05d1-4de0-8db5-4bfeef18f8f3", + "Order": 1, + "DeletedAt": null, + "EntryId": "f22d51a4-26ae-4fe5-986a-0f5e2c909cba", + "Definition": { + "en": { + "Spans": [ + { + "Text": "judgement, intelligence", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "juizo, intelige\u0302ncia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "judgement", + "pt": "juizo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "36d62308-9d1a-451c-948a-0bf12f82dabc", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ana ndzeru zikulu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ele tem grande inteligencia.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2 011", + "Ws": "en" + } + ] + }, + "SenseId": "2e84850b-05d1-4de0-8db5-4bfeef18f8f3", + "DeletedAt": null + } + ] + }, + { + "Id": "a639ec9c-35db-45f5-b3f5-85293483b4cd", + "Order": 2, + "DeletedAt": null, + "EntryId": "f22d51a4-26ae-4fe5-986a-0f5e2c909cba", + "Definition": {}, + "Gloss": { + "en": "idea", + "pt": "ideia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8372a911-eb4a-4f96-b2dc-96cde5602f50", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzice" + }, + "CitationForm": { + "seh": "ndzice" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50757f29-2ed9-4987-ad65-7822e66355ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "8372a911-eb4a-4f96-b2dc-96cde5602f50", + "Definition": { + "en": { + "Spans": [ + { + "Text": "unmarried person, spinster, batchelor, widow, widower", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pessoa na\u0303o casada, solteirona, solteiro, viuva, viuvo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "unmarried", + "pt": "na\u0303o casada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00497afe-61bf-455a-8fe8-16aed326dec6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14 also says bride; bridegroom", + "Ws": "en" + } + ] + }, + "SenseId": "50757f29-2ed9-4987-ad65-7822e66355ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5f59c83f-81a6-4b6b-8094-b9cc20fd10ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzidzi" + }, + "CitationForm": { + "seh": "ndzidzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce84b386-6ca6-461e-99b0-8df1e879e369", + "Order": 1, + "DeletedAt": null, + "EntryId": "5f59c83f-81a6-4b6b-8094-b9cc20fd10ef", + "Definition": {}, + "Gloss": { + "en": "time", + "pt": "altura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "afc34986-449b-41ac-9b58-2719f3cebc9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo006; Sulo2:22; Moreira:24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ce84b386-6ca6-461e-99b0-8df1e879e369", + "DeletedAt": null + } + ] + }, + { + "Id": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", + "Order": 2, + "DeletedAt": null, + "EntryId": "5f59c83f-81a6-4b6b-8094-b9cc20fd10ef", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "tempo, hora", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "time", + "pt": "tempo" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ec8dbf93-3d6f-40bf-b500-f230f82f1e2c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndzidzi wanji uno?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Que hora sa\u0303o?", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e5dd5cf9-6f34-4147-97a8-ed2803272c9f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c825f160-d38b-4842-8954-c0b969cde116", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzinda" + }, + "CitationForm": { + "seh": "ndzinda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ee429f51-e92f-4d59-9a87-05531b6c7aab", + "Order": 1, + "DeletedAt": null, + "EntryId": "c825f160-d38b-4842-8954-c0b969cde116", + "Definition": {}, + "Gloss": { + "en": "city", + "pt": "cidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "b536622c-80a3-4b31-9d22-4ed2fb76324d", + "Name": { + "en": "City" + }, + "Code": "4.6.7.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "8472a200-756b-417f-85a8-43d0dbba1399", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ndzinda ukulu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "ee429f51-e92f-4d59-9a87-05531b6c7aab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "71a34111-6b38-423f-9bc5-0f2422dfdbea", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzukulu" + }, + "CitationForm": { + "seh": "ndzukulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3394d689-385c-40b1-ad04-0256836a3a66", + "Order": 1, + "DeletedAt": null, + "EntryId": "71a34111-6b38-423f-9bc5-0f2422dfdbea", + "Definition": {}, + "Gloss": { + "en": "grandson", + "pt": "neto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a57ba619-6329-46d4-92a3-667095a6a75a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "3394d689-385c-40b1-ad04-0256836a3a66", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e31dcd2-dc2e-4b2f-9d57-b0e9cf994a02", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu" + }, + "CitationForm": { + "seh": "ndzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cae34553-1777-4d11-860a-c4a6b3ca12a4", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e31dcd2-dc2e-4b2f-9d57-b0e9cf994a02", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the air, at the top of (eg tree)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "in the sky", + "pt": "no ce\u0301u" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1c3f8996-362e-4ee0-af02-0dd02887f6aa", + "Name": { + "en": "Heaven, hell" + }, + "Code": "4.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aec3cdc3-221b-4cfc-b287-93d91436b926", + "DeletedAt": null, + "LexemeForm": { + "seh": "ne" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4704fd8b-646b-407d-b02e-0ad5a6c5a503", + "Order": 1, + "DeletedAt": null, + "EntryId": "aec3cdc3-221b-4cfc-b287-93d91436b926", + "Definition": {}, + "Gloss": { + "en": "not", + "pt": "na\u0308o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4e4b416-5a15-41e3-9039-c3cca7093153", + "DeletedAt": null, + "LexemeForm": { + "seh": "nee" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "8947916b-0e22-4365-8336-680e98ba84fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4e4b416-5a15-41e3-9039-c3cca7093153", + "Definition": {}, + "Gloss": { + "en": "not", + "pt": "na\u0303o" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eacda214-08a3-4fed-984f-c32e99c62be6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nens" + }, + "CitationForm": { + "seh": "nensa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f0b5bd45-51b9-4280-a34a-aa993749ccad", + "Order": 1, + "DeletedAt": null, + "EntryId": "eacda214-08a3-4fed-984f-c32e99c62be6", + "Definition": {}, + "Gloss": { + "en": "be dificult", + "pt": "ser dificil" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "def76143-6036-4539-bd6f-3b5575d9a8b2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Basa ya nkumbizi isanensa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Trabalho de pastorar e\u0301 dificil.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f0b5bd45-51b9-4280-a34a-aa993749ccad", + "DeletedAt": null + } + ] + }, + { + "Id": "b718b6fb-d131-474c-9799-1a805b94c89f", + "Order": 2, + "DeletedAt": null, + "EntryId": "eacda214-08a3-4fed-984f-c32e99c62be6", + "Definition": {}, + "Gloss": { + "en": "costs dearly", + "pt": "custar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "46f77ef5-4543-4b8a-a32f-5b6448bae960", + "DeletedAt": null, + "LexemeForm": { + "seh": "net" + }, + "CitationForm": { + "seh": "neta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "169eade3-a10b-4554-9230-5516077a8f53", + "Order": 1, + "DeletedAt": null, + "EntryId": "46f77ef5-4543-4b8a-a32f-5b6448bae960", + "Definition": {}, + "Gloss": { + "en": "tire", + "pt": "cansar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2dc39f33-d145-4a66-a846-c4e68e3837e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nfangu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b4a02fc9-2ae5-4c96-ae87-ceec6845871e", + "Order": 1, + "DeletedAt": null, + "EntryId": "2dc39f33-d145-4a66-a846-c4e68e3837e2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "genet, kill small livestock and use the same bathroom, Genus Genetta", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "genet", + "pt": "gineta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7d38e076-c57a-4e3f-8fa6-e23e57829724", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "b4a02fc9-2ae5-4c96-ae87-ceec6845871e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2aacba99-22b4-4f02-ba97-b7347de36933", + "DeletedAt": null, + "LexemeForm": { + "seh": "nfofomimba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "dfad5d62-b5e7-46e0-b26e-e062147e72c5", + "Order": 1, + "DeletedAt": null, + "EntryId": "2aacba99-22b4-4f02-ba97-b7347de36933", + "Definition": { + "en": { + "Spans": [ + { + "Text": "prostrated on stomach", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "prostando-se de barriga", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "prostrated", + "pt": "prostando-se" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e22a3bc2-75e7-4e5e-8dc3-2294317201c1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "dfad5d62-b5e7-46e0-b26e-e062147e72c5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "77b67f10-29cc-4624-8ed0-077784e9c95c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nfutete" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1e0627cb-c81f-4fa9-9b31-f7b364bf443c", + "Order": 1, + "DeletedAt": null, + "EntryId": "77b67f10-29cc-4624-8ed0-077784e9c95c", + "Definition": {}, + "Gloss": { + "en": "paralysis", + "pt": "paralezia" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c05dc39e-da18-49d0-a277-a7739f815c63", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1e0627cb-c81f-4fa9-9b31-f7b364bf443c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2afe57a-1cdc-4086-b9ab-e6d1488fb487", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027anga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22f12a7c-237a-4aec-be5a-9785f8839977", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2afe57a-1cdc-4086-b9ab-e6d1488fb487", + "Definition": { + "en": { + "Spans": [ + { + "Text": "traditional doctor", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "medicine-man", + "pt": "curandeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "131131c7-a132-4154-95fe-aebee8256a09", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "22f12a7c-237a-4aec-be5a-9785f8839977", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1c3896d4-90c0-4382-a316-beefea925c25", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027oma" + }, + "CitationForm": { + "seh": "ng\u0027oma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8abb551d-571b-4612-a4cd-85d065bca104", + "Order": 1, + "DeletedAt": null, + "EntryId": "1c3896d4-90c0-4382-a316-beefea925c25", + "Definition": {}, + "Gloss": { + "en": "drum", + "pt": "batuque" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3580e32b-4969-4ec8-93f9-0207d126aa06", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8abb551d-571b-4612-a4cd-85d065bca104", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c74603b3-c270-4fa4-ba9b-44cf5abedea4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ombe" + }, + "CitationForm": { + "seh": "ng\u0027ombe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df313b4b-f760-4864-a5f8-9854dff3af73", + "Order": 1, + "DeletedAt": null, + "EntryId": "c74603b3-c270-4fa4-ba9b-44cf5abedea4", + "Definition": {}, + "Gloss": { + "en": "ox", + "pt": "boi" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f26ced61-2d0d-486c-8b92-1e74b87ec5fd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "df313b4b-f760-4864-a5f8-9854dff3af73", + "DeletedAt": null + } + ] + }, + { + "Id": "33493618-0bdb-4baa-aa80-235f7009c5a0", + "Order": 2, + "DeletedAt": null, + "EntryId": "c74603b3-c270-4fa4-ba9b-44cf5abedea4", + "Definition": {}, + "Gloss": { + "en": "cow", + "pt": "vaca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c626a4f7-ae56-4318-bdef-8978b34c468f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ombo" + }, + "CitationForm": { + "seh": "ng\u0027ombo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "634a8b59-c02c-402f-8387-a6ad5cfc7917", + "Order": 1, + "DeletedAt": null, + "EntryId": "c626a4f7-ae56-4318-bdef-8978b34c468f", + "Definition": {}, + "Gloss": { + "en": "oar", + "pt": "remo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3fc2723f-f1f3-47fe-b1a2-44ffbbb96d7f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "George, Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "634a8b59-c02c-402f-8387-a6ad5cfc7917", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a17204d-f9cc-4b45-ac40-ac0937f58c07", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ona" + }, + "CitationForm": { + "seh": "ng\u0027ona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3f9fe653-77fb-4e5a-9e41-9f1da6877f9b", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a17204d-f9cc-4b45-ac40-ac0937f58c07", + "Definition": {}, + "Gloss": { + "en": "crocodile", + "pt": "crocodilo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5bee9527-2f90-40c5-84db-3c77b9ff56b7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3f9fe653-77fb-4e5a-9e41-9f1da6877f9b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "50ad4666-e760-405e-ad49-5ba870c38714", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bfb0f5db-2dcf-4720-bfe9-4f53685c2fa0", + "Order": 1, + "DeletedAt": null, + "EntryId": "50ad4666-e760-405e-ad49-5ba870c38714", + "Definition": {}, + "Gloss": { + "en": "little", + "pt": "pouco" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b9445f85-1d85-4222-bc54-822f328c8612", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "munthu ng\u0027ono; cinthu cing\u0027ono", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "bfb0f5db-2dcf-4720-bfe9-4f53685c2fa0", + "DeletedAt": null + } + ] + }, + { + "Id": "edad5197-9710-431f-b970-60c3c6ccab59", + "Order": 2, + "DeletedAt": null, + "EntryId": "50ad4666-e760-405e-ad49-5ba870c38714", + "Definition": {}, + "Gloss": { + "en": "short", + "pt": "pequeno" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c99b7977-dd4e-4e57-8809-62c65952d51e", + "Order": 3, + "DeletedAt": null, + "EntryId": "50ad4666-e760-405e-ad49-5ba870c38714", + "Definition": {}, + "Gloss": { + "en": "unimportant", + "pt": "na\u0303o important" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f3ceb132-afb4-4ac2-bc16-558aed912c7c", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f93d7fa2-5a29-4a66-96c1-8817f4800897", + "Order": 1, + "DeletedAt": null, + "EntryId": "f3ceb132-afb4-4ac2-bc16-558aed912c7c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "younger brother", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "irma\u0303o mais novo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "brother", + "pt": "irma\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0e22b61b-a4a0-4a86-843b-591843c8376d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barbara\u0027s notebook; Nyzazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f93d7fa2-5a29-4a66-96c1-8817f4800897", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f240305-92b7-463e-8afe-46b08e839722", + "DeletedAt": null, + "LexemeForm": { + "seh": "ng\u0027ono-ng\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d73a4295-bd7e-486d-97d7-4d252553ad42", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f240305-92b7-463e-8afe-46b08e839722", + "Definition": {}, + "Gloss": { + "en": "very small", + "pt": "muito pequenino" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ae7f2ae2-1790-4a6b-860a-e58db88b74fd", + "DeletedAt": null, + "LexemeForm": { + "seh": "nga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7c34e18c-1e1b-4a36-a660-35e3faca1879", + "Order": 1, + "DeletedAt": null, + "EntryId": "ae7f2ae2-1790-4a6b-860a-e58db88b74fd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "my", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "meu", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1S", + "pt": "1S" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e80a14e7-e9f9-4958-af5f-29d8a04c1e92", + "DeletedAt": null, + "LexemeForm": { + "seh": "nga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "2a371b75-1ed9-433b-a7a5-48bc4cebea03", + "Order": 1, + "DeletedAt": null, + "EntryId": "e80a14e7-e9f9-4958-af5f-29d8a04c1e92", + "Definition": { + "en": { + "Spans": [ + { + "Text": "if, conditional", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "se, condicional", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "COND", + "pt": "COND" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "80cb2399-8f83-43ac-a017-58b8f296719e", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0073f2a7-9b27-4e09-a640-992836a26b27", + "Order": 1, + "DeletedAt": null, + "EntryId": "80cb2399-8f83-43ac-a017-58b8f296719e", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "um pessoa na\u0303o specifica, algue\u0301m, fulano", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "someone", + "pt": "algue\u0301m" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6a83696c-e81d-4dc5-9c8f-bbd36fb8a3d8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "0073f2a7-9b27-4e09-a640-992836a26b27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b2bb6c09-3b4d-427a-b729-e6dfea2537a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "n\u0027gano" + }, + "CitationForm": { + "seh": "ngano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", + "Order": 1, + "DeletedAt": null, + "EntryId": "b2bb6c09-3b4d-427a-b729-e6dfea2537a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "physical end", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "limit do espac\u0327o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "end", + "pt": "fim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a3ad202-d2d5-4a47-ae99-b162884a6d8d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "n\u0027gano wa mapika", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "termino de corrida", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", + "DeletedAt": null + }, + { + "Id": "7d01d8f9-4a7d-47ad-ae9c-5447ce2bdc2f", + "Order": 2, + "Sentence": {}, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "fronteira de machamba", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "9f860642-0cf7-4de7-a3d0-d2801d0c8710", + "DeletedAt": null + } + ] + }, + { + "Id": "941c7da8-d6b8-43c5-801b-f2eff707378e", + "Order": 2, + "DeletedAt": null, + "EntryId": "b2bb6c09-3b4d-427a-b729-e6dfea2537a2", + "Definition": {}, + "Gloss": { + "en": "border", + "pt": "fronteira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c62abd93-3e39-406e-846d-bf31d3739105", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "n\u0027gano wa munda", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "941c7da8-d6b8-43c5-801b-f2eff707378e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16e3cb98-126e-4527-b03a-9f8a9d6ff59b", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngasi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e5999ac9-691d-4b18-a0f9-3bfcece80bf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "16e3cb98-126e-4527-b03a-9f8a9d6ff59b", + "Definition": {}, + "Gloss": { + "en": "how many?", + "pt": "quantos?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7dcb8b47-52f5-442b-aee9-2bd0b6e9bdec", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Muna pifuwo pingasi?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Tem animais quantas?", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e5999ac9-691d-4b18-a0f9-3bfcece80bf1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5a91c16-ee1d-4e8f-981e-8c2960bd5068", + "DeletedAt": null, + "LexemeForm": { + "seh": "gole" + }, + "CitationForm": { + "seh": "ngole" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b3aed28-7c60-4c92-a7db-dccc8c1a3c0c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5a91c16-ee1d-4e8f-981e-8c2960bd5068", + "Definition": {}, + "Gloss": { + "en": "fingernail", + "pt": "unha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7b9e93ba-129b-43a4-9c75-7e1a406d93f3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16", + "Ws": "en" + } + ] + }, + "SenseId": "4b3aed28-7c60-4c92-a7db-dccc8c1a3c0c", + "DeletedAt": null + } + ] + }, + { + "Id": "11febd8d-c6dc-481b-a7b7-cc2049d33e5b", + "Order": 2, + "DeletedAt": null, + "EntryId": "d5a91c16-ee1d-4e8f-981e-8c2960bd5068", + "Definition": {}, + "Gloss": { + "en": "toenail", + "pt": "unha de pe\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6f3d50dc-07ed-438e-ac40-cf6b6d2df8ce", + "DeletedAt": null, + "LexemeForm": { + "seh": "golo" + }, + "CitationForm": { + "seh": "ngolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d2a9a738-926f-401e-973f-a6b8fe2c8469", + "Order": 1, + "DeletedAt": null, + "EntryId": "6f3d50dc-07ed-438e-ac40-cf6b6d2df8ce", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tank, drum, a container for holding water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "drum", + "pt": "tambor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7e4ffce8-5223-42d0-9290-baa75a11a16c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "d2a9a738-926f-401e-973f-a6b8fe2c8469", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f01d90c-0f7c-41ee-8b25-06de03415adb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ngumi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd429be7-30dd-4676-93f5-e6d5bd3c74d7", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f01d90c-0f7c-41ee-8b25-06de03415adb", + "Definition": {}, + "Gloss": { + "en": "well person", + "pt": "pessoa sa\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9ff79aeb-07e5-474f-9dbc-37448a9ec799", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dd429be7-30dd-4676-93f5-e6d5bd3c74d7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba19d655-d247-4359-94b9-8c04fd3a5132", + "DeletedAt": null, + "LexemeForm": { + "seh": "gundu" + }, + "CitationForm": { + "seh": "ngundu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c3791ccf-4988-4217-ad9c-b417c5a0ae43", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba19d655-d247-4359-94b9-8c04fd3a5132", + "Definition": { + "en": { + "Spans": [ + { + "Text": "squirrel", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "squirrel", + "pt": "esquilo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5db873e2-6dd8-479d-b020-b1a593367cb9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "c3791ccf-4988-4217-ad9c-b417c5a0ae43", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "515c94cc-0483-49fd-8040-258b83347961", + "DeletedAt": null, + "LexemeForm": { + "seh": "guo" + }, + "CitationForm": { + "seh": "nguo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f8441f5e-a2cc-4d41-bded-5bf5723d04e8", + "Order": 1, + "DeletedAt": null, + "EntryId": "515c94cc-0483-49fd-8040-258b83347961", + "Definition": {}, + "Gloss": { + "en": "cloth", + "pt": "tecido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b735111-82f4-4714-88a9-dcd80f1eb2d3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f8441f5e-a2cc-4d41-bded-5bf5723d04e8", + "DeletedAt": null + } + ] + }, + { + "Id": "cb86900f-db45-4b50-95fb-641a1cacb51f", + "Order": 2, + "DeletedAt": null, + "EntryId": "515c94cc-0483-49fd-8040-258b83347961", + "Definition": {}, + "Gloss": { + "en": "clothes", + "pt": "ropa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc3ac80c-c9b8-4234-8676-6258d999246c", + "DeletedAt": null, + "LexemeForm": { + "seh": "ni" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "07e57d85-0a08-40a8-b523-6abc7b1ce65b", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc3ac80c-c9b8-4234-8676-6258d999246c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "plural", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "plural", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "PL", + "pt": "PL" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8155184b-a312-446e-8295-4e07b8890f34", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "07e57d85-0a08-40a8-b523-6abc7b1ce65b", + "DeletedAt": null + } + ] + }, + { + "Id": "ba2430a3-7f68-4648-ab7f-fb36dd932532", + "Order": 2, + "DeletedAt": null, + "EntryId": "fc3ac80c-c9b8-4234-8676-6258d999246c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "polite", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "bem-educado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "POLITE", + "pt": "POLITE" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cf63c773-d329-4f18-b660-877b58475994", + "DeletedAt": null, + "LexemeForm": { + "seh": "ninga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d6000cc0-db88-465a-9396-556304110322", + "Order": 1, + "DeletedAt": null, + "EntryId": "cf63c773-d329-4f18-b660-877b58475994", + "Definition": {}, + "Gloss": { + "en": "like", + "pt": "como" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00564a82-43da-472d-8ff6-740d40293d85", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d6000cc0-db88-465a-9396-556304110322", + "DeletedAt": null + } + ] + }, + { + "Id": "59e4c607-6f2a-4db2-8c4a-65c90227b5d4", + "Order": 2, + "DeletedAt": null, + "EntryId": "cf63c773-d329-4f18-b660-877b58475994", + "Definition": {}, + "Gloss": { + "en": "as as" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "59ef9703-6190-40f2-a436-3c2a1f9d3efb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ninji" + }, + "CitationForm": { + "seh": "ninji" + }, + "LiteralMeaning": {}, + "MorphType": "Phrase", + "Senses": [ + { + "Id": "925dad47-cb4b-449c-98e4-cceea3111df3", + "Order": 1, + "DeletedAt": null, + "EntryId": "59ef9703-6190-40f2-a436-3c2a1f9d3efb", + "Definition": {}, + "Gloss": { + "en": "is what?", + "pt": "e\u0301 o que?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf6f3cdd-80cf-427c-8a20-ecaa41a01644", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "925dad47-cb4b-449c-98e4-cceea3111df3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "04025f77-982c-4822-a0d7-f7d55efc54c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "jala" + }, + "CitationForm": { + "seh": "njala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "18cc7ade-d219-4a9e-acf0-01aa4d9f051d", + "Order": 1, + "DeletedAt": null, + "EntryId": "04025f77-982c-4822-a0d7-f7d55efc54c2", + "Definition": {}, + "Gloss": { + "en": "hunger", + "pt": "fome" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b1a33dd-ad50-49e6-8df0-88fe3bc98601", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "18cc7ade-d219-4a9e-acf0-01aa4d9f051d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7722f8f7-d0d7-4698-80c9-a457b316d728", + "DeletedAt": null, + "LexemeForm": { + "seh": "jazi" + }, + "CitationForm": { + "seh": "njazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f19ba77-d81e-4695-97e2-64c8b4493c57", + "Order": 1, + "DeletedAt": null, + "EntryId": "7722f8f7-d0d7-4698-80c9-a457b316d728", + "Definition": {}, + "Gloss": { + "en": "lightning", + "pt": "rela\u0302mpago" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26d05eec-4851-4760-ade6-e709a93f77fa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6f19ba77-d81e-4695-97e2-64c8b4493c57", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d8e0e0a-38bf-4482-bee0-6429f843321f", + "DeletedAt": null, + "LexemeForm": { + "seh": "njipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "03557652-bd0d-4571-9ae6-08f6e2f9da4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d8e0e0a-38bf-4482-bee0-6429f843321f", + "Definition": {}, + "Gloss": { + "en": "what?", + "pt": "o que?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "be3ad213-1b22-4ba1-b77d-dcd6bb97f47c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "03557652-bd0d-4571-9ae6-08f6e2f9da4e", + "DeletedAt": null + } + ] + }, + { + "Id": "381d322a-1473-4da9-96b4-9029da3dae48", + "Order": 2, + "DeletedAt": null, + "EntryId": "4d8e0e0a-38bf-4482-bee0-6429f843321f", + "Definition": {}, + "Gloss": { + "en": "which?", + "pt": "qual?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7ef74b8-60fb-457a-a64d-d403b4e3cce0", + "DeletedAt": null, + "LexemeForm": { + "seh": "njira" + }, + "CitationForm": { + "seh": "njira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b8a598b9-d0d4-4f2f-8104-bbd334fc5693", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7ef74b8-60fb-457a-a64d-d403b4e3cce0", + "Definition": {}, + "Gloss": { + "en": "path", + "pt": "caminho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f30f0ed6-fe61-4a8a-b8f2-9209102a610a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b8a598b9-d0d4-4f2f-8104-bbd334fc5693", + "DeletedAt": null + } + ] + }, + { + "Id": "bbff3938-1a96-4945-ba82-54a48ba05b30", + "Order": 2, + "DeletedAt": null, + "EntryId": "f7ef74b8-60fb-457a-a64d-d403b4e3cce0", + "Definition": {}, + "Gloss": { + "en": "road", + "pt": "rua" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b185db8d-3c4a-4f3c-860f-8bdd1e762760", + "DeletedAt": null, + "LexemeForm": { + "seh": "jiri" + }, + "CitationForm": { + "seh": "njiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "61068445-c27a-4c9c-8143-7808c5edb94e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b185db8d-3c4a-4f3c-860f-8bdd1e762760", + "Definition": { + "en": { + "Spans": [ + { + "Text": "warthog - Phacochoerus aethiopicus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "warthog", + "pt": "javalim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3c7c6d6b-80ad-4fcd-8702-c8ffcd6060c1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "61068445-c27a-4c9c-8143-7808c5edb94e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "51d78a36-3960-4369-9c35-54330153a58f", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae9a251a-d0bb-44df-b71a-249fbfc73ab5", + "Order": 1, + "DeletedAt": null, + "EntryId": "51d78a36-3960-4369-9c35-54330153a58f", + "Definition": {}, + "Gloss": { + "en": "cucumber vine", + "pt": "pepineiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3d5bcff3-31b0-4efb-8467-3283724d94d9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ae9a251a-d0bb-44df-b71a-249fbfc73ab5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea9bb7f3-7f20-4d36-9b07-6f43efb2af65", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaka" + }, + "CitationForm": { + "seh": "nkaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "77484c2b-276c-43d1-9a25-da14726f62d0", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea9bb7f3-7f20-4d36-9b07-6f43efb2af65", + "Definition": {}, + "Gloss": { + "en": "milk", + "pt": "leite" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "73de014d-79c9-43e8-bf6a-cfb8fc9beb64", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "77484c2b-276c-43d1-9a25-da14726f62d0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e2ecbe0-1426-4825-9a83-e76e77538f80", + "DeletedAt": null, + "LexemeForm": { + "seh": "kaliboxo" + }, + "CitationForm": { + "seh": "nkaliboxo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df9aa41b-00fd-45c3-97d6-b523dd11dc8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e2ecbe0-1426-4825-9a83-e76e77538f80", + "Definition": {}, + "Gloss": { + "en": "prison", + "pt": "prisa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "32e11b09-f9f9-4c2b-8463-6bc85db6eded", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "df9aa41b-00fd-45c3-97d6-b523dd11dc8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c6320fb8-1d5b-46d3-99d4-654862db621a", + "DeletedAt": null, + "LexemeForm": { + "seh": "kamwene" + }, + "CitationForm": { + "seh": "nkamwene" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5de0fd4-03ac-453b-8fa3-8de5d9c42862", + "Order": 1, + "DeletedAt": null, + "EntryId": "c6320fb8-1d5b-46d3-99d4-654862db621a", + "Definition": {}, + "Gloss": { + "en": "son-in-law", + "pt": "genro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e29cb5f-a996-42b5-9ce7-2b22694478a8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a5de0fd4-03ac-453b-8fa3-8de5d9c42862", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "456b34db-7718-48c4-86b2-42d4c7c1c2d7", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkasi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c5f10432-68e2-4f53-b8e0-99775f6a5b4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "456b34db-7718-48c4-86b2-42d4c7c1c2d7", + "Definition": {}, + "Gloss": { + "en": "water turtle", + "pt": "tortaruga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "44bbd93a-4bcd-4a74-876b-0dd303e25bc8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "George", + "Ws": "en" + } + ] + }, + "SenseId": "c5f10432-68e2-4f53-b8e0-99775f6a5b4c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b923248f-2755-438e-842c-df2333443bfc", + "DeletedAt": null, + "LexemeForm": { + "seh": "kate" + }, + "CitationForm": { + "seh": "nkate" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "83098d50-1738-4b23-9e81-af91ed942dc6", + "Order": 1, + "DeletedAt": null, + "EntryId": "b923248f-2755-438e-842c-df2333443bfc", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bread without yeast, by extention, any bread", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pa\u0303o sem fermento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bread", + "pt": "pa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6209811d-3697-4c4a-9451-b1c578120fcd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "83098d50-1738-4b23-9e81-af91ed942dc6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "162182b2-127d-4a8c-8c3f-cbf8f60e17e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ed1379bc-8a34-4d0a-ba8c-46436283e6e4", + "Order": 1, + "DeletedAt": null, + "EntryId": "162182b2-127d-4a8c-8c3f-cbf8f60e17e0", + "Definition": {}, + "Gloss": { + "en": "within", + "pt": "dentro de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "80ab86ad-4f1f-40ef-a7ca-2ba7057bf3f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ed1379bc-8a34-4d0a-ba8c-46436283e6e4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e87ceb25-50c6-46b7-8a35-d830b0f4330e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazali" + }, + "CitationForm": { + "seh": "nkazali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "49224fa1-f421-498a-b1ae-fb1ce0465824", + "Order": 1, + "DeletedAt": null, + "EntryId": "e87ceb25-50c6-46b7-8a35-d830b0f4330e", + "Definition": {}, + "Gloss": { + "en": "married couple", + "pt": "casal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3163668-885f-4d35-b13b-4e82d07d2491", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Canting001", + "Ws": "en" + } + ] + }, + "SenseId": "49224fa1-f421-498a-b1ae-fb1ce0465824", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eb2aed24-d79b-4050-809b-ef47bfca4d2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kazi" + }, + "CitationForm": { + "seh": "nkazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e535a688-81bd-4303-9087-b7001e6f7617", + "Order": 1, + "DeletedAt": null, + "EntryId": "eb2aed24-d79b-4050-809b-ef47bfca4d2e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "feminine, woman, wife", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "woman", + "pt": "mulher" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "041f3bdd-9579-4d51-b13d-fd80c85b7e20", + "Order": 1, + "Sentence": {}, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "gato feminina", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14, 26; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e535a688-81bd-4303-9087-b7001e6f7617", + "DeletedAt": null + } + ] + }, + { + "Id": "2b4cf9c3-f860-430d-bf08-fa0b5b4db0fd", + "Order": 2, + "DeletedAt": null, + "EntryId": "eb2aed24-d79b-4050-809b-ef47bfca4d2e", + "Definition": {}, + "Gloss": { + "en": "wife", + "pt": "esposa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b450f9e0-0223-40b8-bdff-43900dfa5e15", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkhabe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "Order": 1, + "DeletedAt": null, + "EntryId": "b450f9e0-0223-40b8-bdff-43900dfa5e15", + "Definition": {}, + "Gloss": { + "en": "not 1", + "pt": "na\u0303o 1" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71a1ea0c-a1d9-4e27-9cda-09131efcde21", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Wayenda xicola leru? Nkhabe, [sidaenda tayu.]", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Foste escola hoje\u0301 na\u0303o neg-fui na\u0303o", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + }, + { + "Id": "3aa1ba2f-f8ae-4388-8646-01f1142ceffe", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkhabe kucicita", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o fazer (eu na\u0303o fiz)", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + }, + { + "Id": "0087f72a-d285-41f8-bed9-f1cdb5c34e84", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkabe kucifuna [tayu] - present", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + }, + { + "Id": "60dde44c-0a0f-4ba4-ac13-7c297526dce1", + "Order": 4, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sindacifuna [tayu] - past", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "4b65ccf1-9b45-418a-a040-2fe5e81aadb5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6e615721-be3e-4a1c-aae5-43a64464d948", + "DeletedAt": null, + "LexemeForm": { + "seh": "khadzi" + }, + "CitationForm": { + "seh": "nkhadzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "44452f74-92ff-4438-9feb-203af775465e", + "Order": 1, + "DeletedAt": null, + "EntryId": "6e615721-be3e-4a1c-aae5-43a64464d948", + "Definition": {}, + "Gloss": { + "en": "slug", + "pt": "concha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ca1323a-5b19-4936-8f79-cc9307f1b92a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "44452f74-92ff-4438-9feb-203af775465e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fffaca2d-d708-41e4-aa29-40ec1605f909", + "DeletedAt": null, + "LexemeForm": { + "seh": "khaka" + }, + "CitationForm": { + "seh": "nkhaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bb70b8cd-bead-40e9-a912-6f480ba3875e", + "Order": 1, + "DeletedAt": null, + "EntryId": "fffaca2d-d708-41e4-aa29-40ec1605f909", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Pangolin, a scale covered mammal", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Pangolin", + "pt": "pangolin" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68af4bf7-36c4-4fbc-b41b-55c666b6529c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "bb70b8cd-bead-40e9-a912-6f480ba3875e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "92de151b-5b71-42fd-b205-692884a37c16", + "DeletedAt": null, + "LexemeForm": { + "seh": "khalamu" + }, + "CitationForm": { + "seh": "nkhalamu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "256f16b7-b704-452b-b830-945038083837", + "Order": 1, + "DeletedAt": null, + "EntryId": "92de151b-5b71-42fd-b205-692884a37c16", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lion, scientific name: Panthera leo", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "lion", + "pt": "lea\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b7fbf40-6a37-41f3-8ef2-4cb334df75c0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "256f16b7-b704-452b-b830-945038083837", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72a316cb-a410-4e35-af3c-f8fe40525a74", + "DeletedAt": null, + "LexemeForm": { + "seh": "khambala" + }, + "CitationForm": { + "seh": "nkhambala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8ff6235e-b9c6-40f9-bf32-b229db57e9d2", + "Order": 1, + "DeletedAt": null, + "EntryId": "72a316cb-a410-4e35-af3c-f8fe40525a74", + "Definition": {}, + "Gloss": { + "en": "rope", + "pt": "corda" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90f20fe0-18b2-401d-a524-8d4f68ecba5d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; George; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8ff6235e-b9c6-40f9-bf32-b229db57e9d2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6c6d6e53-29ff-4ade-91b0-074d4584070a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khanga" + }, + "CitationForm": { + "seh": "nkhanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31e99354-68f6-4fa4-9f58-9c0debddd09c", + "Order": 1, + "DeletedAt": null, + "EntryId": "6c6d6e53-29ff-4ade-91b0-074d4584070a", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "galinha de mato", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "guinea fowl", + "pt": "galinha de mato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "948b90d8-5c03-4f24-b23c-675c1b3a7078", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "31e99354-68f6-4fa4-9f58-9c0debddd09c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9da476fa-6237-4ad4-9b28-96c7f2c9f3ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "n\u0027khangaiwa" + }, + "CitationForm": { + "seh": "nkhangaiwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e5840cc6-20ef-4564-ae10-6428aafe6d41", + "Order": 1, + "DeletedAt": null, + "EntryId": "9da476fa-6237-4ad4-9b28-96c7f2c9f3ef", + "Definition": {}, + "Gloss": { + "en": "pidgen", + "pt": "pomba" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2638f5c3-41f8-4b39-a40a-755c70bc4db4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e5840cc6-20ef-4564-ae10-6428aafe6d41", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1179a131-c9f1-44d4-93fb-2ddaf8484f4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkhodolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "22bb3b03-c9de-4d51-bd30-7ce30b7041a2", + "Order": 1, + "DeletedAt": null, + "EntryId": "1179a131-c9f1-44d4-93fb-2ddaf8484f4f", + "Definition": {}, + "Gloss": { + "en": "back of head", + "pt": "nuca" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e34c661b-05e5-4356-9a30-c5f7b8fd49b2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "22bb3b03-c9de-4d51-bd30-7ce30b7041a2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc05df92-6ce9-4da6-9cf9-845ec179d5e4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkhomole" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42168c00-4637-4588-99d2-3551d7ce021f", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc05df92-6ce9-4da6-9cf9-845ec179d5e4", + "Definition": {}, + "Gloss": { + "en": "cliff", + "pt": "precipi\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "70eaa064-c760-4b91-8be2-c1fd95b99e9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "42168c00-4637-4588-99d2-3551d7ce021f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aa9c1d12-7461-42d1-9e8a-e73488d9b32a", + "DeletedAt": null, + "LexemeForm": { + "seh": "khondo" + }, + "CitationForm": { + "seh": "nkhondo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e124eab7-6dfc-425a-ada3-332b4fbd5b85", + "Order": 1, + "DeletedAt": null, + "EntryId": "aa9c1d12-7461-42d1-9e8a-e73488d9b32a", + "Definition": {}, + "Gloss": { + "en": "war", + "pt": "guerra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "db4b9141-23c8-4d39-8cf3-4bf657ee68cd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e124eab7-6dfc-425a-ada3-332b4fbd5b85", + "DeletedAt": null + } + ] + }, + { + "Id": "37a98331-4024-40ae-9a5f-f2e8f7113d28", + "Order": 2, + "DeletedAt": null, + "EntryId": "aa9c1d12-7461-42d1-9e8a-e73488d9b32a", + "Definition": {}, + "Gloss": { + "en": "battle", + "pt": "batalha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ddac28e-41b1-43b3-ba6a-5afabfbf9b2f", + "DeletedAt": null, + "LexemeForm": { + "seh": "khope" + }, + "CitationForm": { + "seh": "nkhope" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b4100f7-c8a1-40b1-9b48-a152f5ea057f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ddac28e-41b1-43b3-ba6a-5afabfbf9b2f", + "Definition": {}, + "Gloss": { + "en": "face", + "pt": "cara" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e3ec003-43da-4646-9ebd-70692731b3c9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b4100f7-c8a1-40b1-9b48-a152f5ea057f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1ed60dc-dc40-43e4-a287-622f8e0c3ff3", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuku" + }, + "CitationForm": { + "seh": "nkhuku" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c43a5b2-f283-4e9f-bc26-8a4cbcb666ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1ed60dc-dc40-43e4-a287-622f8e0c3ff3", + "Definition": {}, + "Gloss": { + "en": "chicken", + "pt": "galinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ad58f185-202c-42a8-8471-42755aceb4b8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5(fowl); Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2c43a5b2-f283-4e9f-bc26-8a4cbcb666ab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29698b20-50c5-414d-b3c6-ad7f579c8212", + "DeletedAt": null, + "LexemeForm": { + "seh": "khumba" + }, + "CitationForm": { + "seh": "nkhumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "36d939f0-1c27-43d4-ae1c-93dd6dbf721d", + "Order": 1, + "DeletedAt": null, + "EntryId": "29698b20-50c5-414d-b3c6-ad7f579c8212", + "Definition": {}, + "Gloss": { + "en": "pig", + "pt": "porco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b66626a-609c-461e-92bd-ab42b04af3a3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque says nkhamba", + "Ws": "en" + } + ] + }, + "SenseId": "36d939f0-1c27-43d4-ae1c-93dd6dbf721d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "220e0d3a-a457-49d2-9812-fafe539c5bd5", + "DeletedAt": null, + "LexemeForm": { + "seh": "khunguni" + }, + "CitationForm": { + "seh": "nkhunguni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8b0b5a08-d690-415f-bc4e-f66f5f76884c", + "Order": 1, + "DeletedAt": null, + "EntryId": "220e0d3a-a457-49d2-9812-fafe539c5bd5", + "Definition": {}, + "Gloss": { + "en": "bed bug", + "pt": "percevejo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f658de4f-ddc3-4040-a92b-3c17a9b0cced", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8b0b5a08-d690-415f-bc4e-f66f5f76884c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab3ff4f4-eb2c-4eb2-aeef-11a654aa9d6b", + "DeletedAt": null, + "LexemeForm": { + "seh": "khuni" + }, + "CitationForm": { + "seh": "nkhuni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d7c1ad3e-fa9d-4da0-b819-ce5c82060463", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab3ff4f4-eb2c-4eb2-aeef-11a654aa9d6b", + "Definition": {}, + "Gloss": { + "en": "firewood", + "pt": "lenha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f9dc34c8-4b05-4665-be4a-fe8f3903fab9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "d7c1ad3e-fa9d-4da0-b819-ce5c82060463", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4f03e85a-34f6-4645-9f7a-3d7ec4d41232", + "DeletedAt": null, + "LexemeForm": { + "seh": "khunza" + }, + "CitationForm": { + "seh": "nkhunza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "79166c0b-9275-4425-8cf4-94fd058f41d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "4f03e85a-34f6-4645-9f7a-3d7ec4d41232", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a small basket used to measure flour", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "basket small", + "pt": "cesta pequena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "708bee99-a3d3-4d30-b9bc-59d901ab4f0a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "79166c0b-9275-4425-8cf4-94fd058f41d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "82862c8d-9424-4e91-95b4-d24fa650eb06", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwale" + }, + "CitationForm": { + "seh": "nkhwale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ebcd115-fbd1-468d-883d-51b754651a08", + "Order": 1, + "DeletedAt": null, + "EntryId": "82862c8d-9424-4e91-95b4-d24fa650eb06", + "Definition": {}, + "Gloss": { + "en": "partridge", + "pt": "perdiz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1cf49f2b-0fec-477b-9232-206e5e78ed2c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,16", + "Ws": "en" + } + ] + }, + "SenseId": "7ebcd115-fbd1-468d-883d-51b754651a08", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "179c24e4-fb64-44a5-9145-4e404546df06", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwazi" + }, + "CitationForm": { + "seh": "nkhwazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ecfc1d9c-8d25-475a-8881-a12e26ca80b3", + "Order": 1, + "DeletedAt": null, + "EntryId": "179c24e4-fb64-44a5-9145-4e404546df06", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "guia que come peixe", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "fishhawk", + "pt": "guia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b5e69030-b92d-4b9f-a900-3e52819f251b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "ecfc1d9c-8d25-475a-8881-a12e26ca80b3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18829274-4ddc-478e-8913-65e2e9058d81", + "DeletedAt": null, + "LexemeForm": { + "seh": "khwizi" + }, + "CitationForm": { + "seh": "nkhwizi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "35baece7-ece9-448f-aa11-2c2d6752992f", + "Order": 1, + "DeletedAt": null, + "EntryId": "18829274-4ddc-478e-8913-65e2e9058d81", + "Definition": { + "en": { + "Spans": [ + { + "Text": "shrew", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "shrew", + "pt": "animal tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86844cc9-bd7e-4ccb-a081-d18d13f825e6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "35baece7-ece9-448f-aa11-2c2d6752992f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b3e2a6ef-0d7a-412a-82a7-93650300b137", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4d43343e-235c-47a8-963e-8ed7a1923e55", + "Order": 1, + "DeletedAt": null, + "EntryId": "b3e2a6ef-0d7a-412a-82a7-93650300b137", + "Definition": {}, + "Gloss": { + "en": "hemorroids", + "pt": "hemorro\u0301ides" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "70f96d60-34b7-44d7-b882-0edad0533113", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Mauricio; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4d43343e-235c-47a8-963e-8ed7a1923e55", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3ca7c7ad-c8c9-4cc8-aa6d-fe08222181ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "kono" + }, + "CitationForm": { + "seh": "nkono" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8125329e-2b09-4073-b9d2-566190f5f940", + "Order": 1, + "DeletedAt": null, + "EntryId": "3ca7c7ad-c8c9-4cc8-aa6d-fe08222181ff", + "Definition": { + "en": { + "Spans": [ + { + "Text": "arm (includes hand)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "arm", + "pt": "brac\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d714e0e7-46fc-4571-a88d-a206de719592", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira26", + "Ws": "en" + } + ] + }, + "SenseId": "8125329e-2b09-4073-b9d2-566190f5f940", + "DeletedAt": null + } + ] + }, + { + "Id": "af077c3d-81fb-440f-9bc9-28fa60edf42b", + "Order": 2, + "DeletedAt": null, + "EntryId": "3ca7c7ad-c8c9-4cc8-aa6d-fe08222181ff", + "Definition": {}, + "Gloss": { + "en": "bull", + "pt": "touro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f8e72771-f29c-4062-a9e1-cd23fd7e8ffb", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkono-nkono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ef06b58-d563-41f4-b376-9ad16943b667", + "Order": 1, + "DeletedAt": null, + "EntryId": "f8e72771-f29c-4062-a9e1-cd23fd7e8ffb", + "Definition": {}, + "Gloss": { + "en": "right side", + "pt": "a\u0300 direito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0a38a158-803a-4810-bbed-25fa1423fb5e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0ef06b58-d563-41f4-b376-9ad16943b667", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ba72117-7f91-426a-a4d1-242d2783f151", + "DeletedAt": null, + "LexemeForm": { + "seh": "kondzi" + }, + "CitationForm": { + "seh": "nkonzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72479316-4b29-4461-8617-689a52c54e8d", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ba72117-7f91-426a-a4d1-242d2783f151", + "Definition": {}, + "Gloss": { + "en": "healer", + "pt": "o que cura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a44536eb-10d6-4562-b2b2-d566d5a7a8f9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "72479316-4b29-4461-8617-689a52c54e8d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "01852e43-3920-49fa-9552-0609a3026243", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkucano" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f4b02198-cc6f-42b9-b379-87670671b181", + "Order": 1, + "DeletedAt": null, + "EntryId": "01852e43-3920-49fa-9552-0609a3026243", + "Definition": {}, + "Gloss": { + "en": "day after tomorrow", + "pt": "depois de amanha" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "43fdca13-26b9-4a2b-8599-3529ea19300c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Moreira p25 (nkuca)", + "Ws": "en" + } + ] + }, + "SenseId": "f4b02198-cc6f-42b9-b379-87670671b181", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ddf24ca1-40c5-456f-b97b-35d813516e33", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkudz" + }, + "CitationForm": { + "seh": "nkudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1b4adbf5-c01a-4e04-92f6-5c8b793281e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "ddf24ca1-40c5-456f-b97b-35d813516e33", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "engrandecer em fama", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "become great", + "pt": "engrandecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "99b1527f-3ce1-4ec2-aa42-040059535e3d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1b4adbf5-c01a-4e04-92f6-5c8b793281e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "269593e9-597a-4753-9769-e9d470ed75d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "kulo" + }, + "CitationForm": { + "seh": "nkulo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "36456952-2f14-41c9-9495-eb9f1487b8fe", + "Order": 1, + "DeletedAt": null, + "EntryId": "269593e9-597a-4753-9769-e9d470ed75d3", + "Definition": {}, + "Gloss": { + "en": "river", + "pt": "rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "4153416a-784d-4f7c-a664-2640f7979a14", + "Name": { + "en": "River" + }, + "Code": "1.3.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "5a27fb12-9726-4ed0-9d4f-fae6bacbe2e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "36456952-2f14-41c9-9495-eb9f1487b8fe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21195759-1f0a-4185-b82e-1ad7a191fa22", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumba" + }, + "CitationForm": { + "seh": "nkumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14a9995f-76c2-4c3c-847a-c62b2248db58", + "Order": 1, + "DeletedAt": null, + "EntryId": "21195759-1f0a-4185-b82e-1ad7a191fa22", + "Definition": {}, + "Gloss": { + "en": "pig", + "pt": "porco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7888ac74-045d-455d-a3fa-2ce54e2b60a3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "14a9995f-76c2-4c3c-847a-c62b2248db58", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3157cb06-8ea5-488e-91ac-cef9b11f637e", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbi" + }, + "CitationForm": { + "seh": "nkumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ade16bb8-0425-4ff0-9a24-8076659a7882", + "Order": 1, + "DeletedAt": null, + "EntryId": "3157cb06-8ea5-488e-91ac-cef9b11f637e", + "Definition": {}, + "Gloss": { + "en": "herd", + "pt": "mandada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e12ab888-3fd8-49a0-a4ee-e595834b3f31", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ade16bb8-0425-4ff0-9a24-8076659a7882", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfb4bca2-1bf5-45e1-a339-33d76af2e8be", + "DeletedAt": null, + "LexemeForm": { + "seh": "kumbidzi" + }, + "CitationForm": { + "seh": "nkumbidzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb77ce64-c8af-435a-ac39-07b05d2972d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfb4bca2-1bf5-45e1-a339-33d76af2e8be", + "Definition": {}, + "Gloss": { + "en": "shepherd", + "pt": "pastor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7af0059-072a-4d55-be89-b51a7c7d73f9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "fb77ce64-c8af-435a-ac39-07b05d2972d1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nkuz" + }, + "CitationForm": { + "seh": "nkuza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0448ef5d-878b-498a-9d1d-93fe68eadca9", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "make grow", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "make grow", + "pt": "fazer crecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "117e3433-c049-4b92-b0e7-770a8502d48a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0448ef5d-878b-498a-9d1d-93fe68eadca9", + "DeletedAt": null + } + ] + }, + { + "Id": "836479c2-ab88-4892-81d9-91e29ecf5dc2", + "Order": 2, + "DeletedAt": null, + "EntryId": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "raise a child", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "criar crianc\u0327a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "raise", + "pt": "criar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "64fb2069-f0dc-4c51-affe-8e6ed5f660ab", + "Order": 3, + "DeletedAt": null, + "EntryId": "3a3bb55a-174c-4b4c-ab9b-98d74c5f21f5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "magnify", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "magnificar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "magnify", + "pt": "magnificar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "90adecc0-fa11-4a93-be1b-6362ec6cbdb3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nomwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f93ba876-786d-4e5d-92b1-efc5bd29d173", + "Order": 1, + "DeletedAt": null, + "EntryId": "90adecc0-fa11-4a93-be1b-6362ec6cbdb3", + "Definition": {}, + "Gloss": { + "en": "seven", + "pt": "sete" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c5d80e09-7b92-4abc-8785-5cd78cedf14f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "f93ba876-786d-4e5d-92b1-efc5bd29d173", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8869feb4-b6ac-46a3-accd-f201b20d1cfa", + "DeletedAt": null, + "LexemeForm": { + "seh": "noz" + }, + "CitationForm": { + "seh": "noza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f4ee7520-0ff3-432a-a66f-8bbf6e0d14a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "8869feb4-b6ac-46a3-accd-f201b20d1cfa", + "Definition": {}, + "Gloss": { + "en": "sharpen", + "pt": "afiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "26d127ab-09b3-42a6-a69e-4c172074cf90", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndoko kanoze mpeni.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Vai afiar faca.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "f4ee7520-0ff3-432a-a66f-8bbf6e0d14a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0934279f-70f1-463a-8046-dae18be1e38a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sala" + }, + "CitationForm": { + "seh": "nsala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f121b1d7-df23-4725-809b-477f508a3d18", + "Order": 1, + "DeletedAt": null, + "EntryId": "0934279f-70f1-463a-8046-dae18be1e38a", + "Definition": {}, + "Gloss": { + "en": "insanity", + "pt": "loucura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a583e52e-8bd3-4de7-9694-e380c69d8cbd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f121b1d7-df23-4725-809b-477f508a3d18", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adf7a985-644b-4787-a9bf-3136567c5a42", + "DeletedAt": null, + "LexemeForm": { + "seh": "sambo" + }, + "CitationForm": { + "seh": "nsambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef0ec71a-ffef-46be-8306-f1bfdac5e28d", + "Order": 1, + "DeletedAt": null, + "EntryId": "adf7a985-644b-4787-a9bf-3136567c5a42", + "Definition": {}, + "Gloss": { + "en": "custom", + "pt": "costumes" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8bf2870f-fc69-4fc1-be90-c0c6ae0b8dbb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ef0ec71a-ffef-46be-8306-f1bfdac5e28d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "59c0f0f4-f763-41de-8ac7-84ba48b22e35", + "DeletedAt": null, + "LexemeForm": { + "seh": "sambvu" + }, + "CitationForm": { + "seh": "nsambvu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97120ba0-66d8-4012-8c14-169f1d59b0e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "59c0f0f4-f763-41de-8ac7-84ba48b22e35", + "Definition": {}, + "Gloss": { + "en": "fig tree", + "pt": "figueira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d1711394-0bad-43c4-ad3f-399f14e89959", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "97120ba0-66d8-4012-8c14-169f1d59b0e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16d8a838-b229-4042-91d3-ba65ec772520", + "DeletedAt": null, + "LexemeForm": { + "seh": "sana" + }, + "CitationForm": { + "seh": "nsana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cd22832b-fb54-4642-9d51-084ef52d6a3c", + "Order": 1, + "DeletedAt": null, + "EntryId": "16d8a838-b229-4042-91d3-ba65ec772520", + "Definition": {}, + "Gloss": { + "en": "back bone", + "pt": "coluna vertebral" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a80f12aa-c30d-4892-978a-b076985742d5", + "Name": { + "en": "Torso" + }, + "Code": "2.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f12a5029-e04d-482e-904a-bc2bf802fbc7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "cd22832b-fb54-4642-9d51-084ef52d6a3c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da5db379-e070-4b03-9b2c-acdfefcb4387", + "DeletedAt": null, + "LexemeForm": { + "seh": "sana" + }, + "CitationForm": { + "seh": "nsana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "28534efc-ce0d-4350-9559-b0547178deea", + "Order": 1, + "DeletedAt": null, + "EntryId": "da5db379-e070-4b03-9b2c-acdfefcb4387", + "Definition": { + "en": { + "Spans": [ + { + "Text": "tree dassie, about the size of a rat, has no tail, not to be confused w/ nsenzi (cane rat) which has a tail and is bigger, tree dassie Dendrohyrax arboreus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "tree dassie", + "pt": "rato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2d993fad-702c-4eef-85bc-71567edfa7a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a4eb22b0-f699-4eef-8156-c514c3071eec", + "Order": 1, + "DeletedAt": null, + "EntryId": "2d993fad-702c-4eef-85bc-71567edfa7a7", + "Definition": {}, + "Gloss": { + "en": "fast", + "pt": "depressa" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1b682872-76d2-4803-8ac5-4a7f72194484", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "hasafamba tayu mwansanga ninga sulo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "NEG-he-PRESENT-walk-VF not fast-VFIN as...as rabbit", + "Ws": "en" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2 006;Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a4eb22b0-f699-4eef-8156-c514c3071eec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "807276f4-b3bf-4dd5-a17c-869dc52a4649", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsanga-nsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "879cc03d-9848-46a6-ba1e-ec3d9de38e7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "807276f4-b3bf-4dd5-a17c-869dc52a4649", + "Definition": {}, + "Gloss": { + "en": "very fast", + "pt": "muito depressa" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5104bb86-8c29-4e28-9a30-48a5d7d06945", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "879cc03d-9848-46a6-ba1e-ec3d9de38e7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d642f8d-480a-49bc-8214-7d0a52803475", + "DeletedAt": null, + "LexemeForm": { + "seh": "sangani" + }, + "CitationForm": { + "seh": "nsangani" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cd62410-e96b-493f-8296-5b403542952b", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d642f8d-480a-49bc-8214-7d0a52803475", + "Definition": {}, + "Gloss": { + "en": "proverb", + "pt": "prove\u0301rbio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0feafe15-e65b-487f-98ca-a6741e8fcc3e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8cd62410-e96b-493f-8296-5b403542952b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dc1c3df4-b24e-4112-ba97-02316d798ac8", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanganiko" + }, + "CitationForm": { + "seh": "nsanganiko" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc33f8eb-6b18-4198-b799-51af781eb949", + "Order": 1, + "DeletedAt": null, + "EntryId": "dc1c3df4-b24e-4112-ba97-02316d798ac8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "divining meeting, a meetings where leaders try to find out why someone got sick", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "reunia\u0303o de divinhar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "meeting", + "pt": "reunia\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "8e88ed6a-000d-400a-8cd8-7b3cc7f1818c", + "Name": { + "en": "Traditional medicine" + }, + "Code": "2.5.7.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "46623476-8474-47ba-b16a-aa89151fc815", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cc33f8eb-6b18-4198-b799-51af781eb949", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eb57b246-6f53-4e92-83c3-dd2840b2cf87", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanje" + }, + "CitationForm": { + "seh": "nsanje" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e47855c9-9760-478c-9e97-851e893540a6", + "Order": 1, + "DeletedAt": null, + "EntryId": "eb57b246-6f53-4e92-83c3-dd2840b2cf87", + "Definition": {}, + "Gloss": { + "en": "parable", + "pt": "para\u0301bola" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1e306cef-bcfb-4449-8b24-493e95b092ad", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e47855c9-9760-478c-9e97-851e893540a6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "10e03b4f-f0d7-44aa-b94e-c683234fbbe0", + "DeletedAt": null, + "LexemeForm": { + "seh": "sapato" + }, + "CitationForm": { + "seh": "nsapato" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d580baf8-e5f3-4c90-bbbc-5ee1b78e7b2e", + "Order": 1, + "DeletedAt": null, + "EntryId": "10e03b4f-f0d7-44aa-b94e-c683234fbbe0", + "Definition": {}, + "Gloss": { + "en": "shoe", + "pt": "sapato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6731281-ea99-4232-b9dd-285419fad6ab", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d580baf8-e5f3-4c90-bbbc-5ee1b78e7b2e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61f9964d-e748-4e7a-8026-479ab20ae14d", + "DeletedAt": null, + "LexemeForm": { + "seh": "sapo" + }, + "CitationForm": { + "seh": "nsapo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6adddc4c-c9b5-40a1-bd9e-f3a784a9f8bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "61f9964d-e748-4e7a-8026-479ab20ae14d", + "Definition": {}, + "Gloss": { + "en": "fruit", + "pt": "fruto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57fd4b99-0e3e-4a33-88e3-dffc8927d8f5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6adddc4c-c9b5-40a1-bd9e-f3a784a9f8bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75cdb613-eb3f-4c71-a874-a32e02aabdbe", + "DeletedAt": null, + "LexemeForm": { + "seh": "sawawa" + }, + "CitationForm": { + "seh": "nsawawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a9f862a5-44a1-4dbb-a58c-43bbfe24b43b", + "Order": 1, + "DeletedAt": null, + "EntryId": "75cdb613-eb3f-4c71-a874-a32e02aabdbe", + "Definition": {}, + "Gloss": { + "en": "louse", + "pt": "piolho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2db4f6b7-95b5-41b7-b590-530595706d2c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "a9f862a5-44a1-4dbb-a58c-43bbfe24b43b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5947b8b-17c4-4205-a47f-d47b365adc8c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sekese" + }, + "CitationForm": { + "seh": "nsekese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6c78a046-71b7-498f-b3ea-e48b920eab7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5947b8b-17c4-4205-a47f-d47b365adc8c", + "Definition": {}, + "Gloss": { + "en": "tree type", + "pt": "arvora tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7765dc54-c4da-4bc1-a531-9719890f375e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6c78a046-71b7-498f-b3ea-e48b920eab7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "00f99de8-333b-4c51-a306-a6d54b58723a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sengere" + }, + "CitationForm": { + "seh": "nsengere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "368b3592-de73-4b0b-a65d-654e61cec4ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "00f99de8-333b-4c51-a306-a6d54b58723a", + "Definition": {}, + "Gloss": { + "en": "bamboo", + "pt": "bambu\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1aeea11d-bad4-40bf-b3af-5b26f88b925a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "368b3592-de73-4b0b-a65d-654e61cec4ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c135beb8-f267-4b72-9648-64c6dd203930", + "DeletedAt": null, + "LexemeForm": { + "seh": "senzi" + }, + "CitationForm": { + "seh": "nsenzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94bb8014-0932-47e3-a9e3-bc6cac35811c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c135beb8-f267-4b72-9648-64c6dd203930", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Cane rat, eats suger cane", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ratazana", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rat", + "pt": "ratazana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1fc57911-b7da-445e-b543-7b8e5e949f03", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "94bb8014-0932-47e3-a9e3-bc6cac35811c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3cb8518f-8fd7-4c9a-b3f8-5d2eda416436", + "DeletedAt": null, + "LexemeForm": { + "seh": "seru" + }, + "CitationForm": { + "seh": "nseru" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2d75b87d-a82c-452f-9b8d-2b62f54547f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "3cb8518f-8fd7-4c9a-b3f8-5d2eda416436", + "Definition": { + "en": { + "Spans": [ + { + "Text": "court case", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "caso de tribunal", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "case", + "pt": "caso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "85214614-ab45-4805-9014-092750d47511", + "Name": { + "en": "Trial" + }, + "Code": "4.7.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fa8567b2-a282-4e5f-9006-05b65e0be5ef", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2d75b87d-a82c-452f-9b8d-2b62f54547f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5b15daa-a40c-4ab6-bc70-a200c35e1d7d", + "DeletedAt": null, + "LexemeForm": { + "seh": "seu" + }, + "CitationForm": { + "seh": "nseu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9ff4d93-0056-4ed5-b596-c2a754e15795", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5b15daa-a40c-4ab6-bc70-a200c35e1d7d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "street, paved or not", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "street", + "pt": "estrada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f9b4ce01-a1d3-46af-84e1-e596f6a9c1d1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f9ff4d93-0056-4ed5-b596-c2a754e15795", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35e35524-ee4f-4924-8e84-d6b754c7cf2e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sika" + }, + "CitationForm": { + "seh": "nsika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "14e0886b-48f4-4a78-94bc-3ee0ab625a34", + "Order": 1, + "DeletedAt": null, + "EntryId": "35e35524-ee4f-4924-8e84-d6b754c7cf2e", + "Definition": {}, + "Gloss": { + "en": "market place", + "pt": "mercado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "55d3be12-12a8-4246-b441-8cae8a3b3ef0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "14e0886b-48f4-4a78-94bc-3ee0ab625a34", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "333e7a30-6f26-471b-9658-fce82d3d4b17", + "DeletedAt": null, + "LexemeForm": { + "seh": "singano" + }, + "CitationForm": { + "seh": "nsingano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1bfd809b-9c02-4c32-b618-cd50e06769af", + "Order": 1, + "DeletedAt": null, + "EntryId": "333e7a30-6f26-471b-9658-fce82d3d4b17", + "Definition": { + "en": { + "Spans": [ + { + "Text": "neddle for sewing, medical injections, repair fishing nets", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "neddle", + "pt": "agulha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "124c3bbd-7848-4f2d-8aff-28a8416195fd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1bfd809b-9c02-4c32-b618-cd50e06769af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f0f392c3-0823-4896-8d91-3d683de702b5", + "DeletedAt": null, + "LexemeForm": { + "seh": "sinzo" + }, + "CitationForm": { + "seh": "nsinzo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7987d576-84a1-49c9-86f4-8b1933683d4f", + "Order": 1, + "DeletedAt": null, + "EntryId": "f0f392c3-0823-4896-8d91-3d683de702b5", + "Definition": {}, + "Gloss": { + "en": "distance", + "pt": "dista\u0302ncia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ae8b6811-07b9-4f90-b260-9449dfdbd1aa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "7987d576-84a1-49c9-86f4-8b1933683d4f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1c574f5-cf21-404e-9b94-fcda93d00fc2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sisi" + }, + "CitationForm": { + "seh": "nsisi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d415fe28-d9e0-4c91-ba73-a4179d2edbe2", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1c574f5-cf21-404e-9b94-fcda93d00fc2", + "Definition": {}, + "Gloss": { + "en": "pity", + "pt": "pena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "269b17bb-43ff-4045-a4ba-38774b792ea2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nsisi zikulu maningi zidacita imwe", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "a grande misericordia que fez", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d415fe28-d9e0-4c91-ba73-a4179d2edbe2", + "DeletedAt": null + } + ] + }, + { + "Id": "4db5aa57-a073-428b-b732-689c302aede4", + "Order": 2, + "DeletedAt": null, + "EntryId": "b1c574f5-cf21-404e-9b94-fcda93d00fc2", + "Definition": {}, + "Gloss": { + "en": "compassion", + "pt": "compaxa\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "681cf4ab-2e0f-4ec6-933b-382e8c6e5359", + "DeletedAt": null, + "LexemeForm": { + "seh": "situ" + }, + "CitationForm": { + "seh": "nsitu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b8858cb-989e-41b3-a6fc-79f04fd8dcc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "681cf4ab-2e0f-4ec6-933b-382e8c6e5359", + "Definition": {}, + "Gloss": { + "en": "forest", + "pt": "floresta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "025da6f4-b1b6-423a-8c0f-b324f531a6f1", + "Name": { + "en": "Plant" + }, + "Code": "1.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "a12bd5de-301c-4a7c-92cf-2f4fd9dad174", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "0b8858cb-989e-41b3-a6fc-79f04fd8dcc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a160f54c-b664-4792-bae7-a0cf30b1921f", + "DeletedAt": null, + "LexemeForm": { + "seh": "sodzi" + }, + "CitationForm": { + "seh": "nsodzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab4edb17-b51d-4258-b349-4bdfd1dff7d6", + "Order": 1, + "DeletedAt": null, + "EntryId": "a160f54c-b664-4792-bae7-a0cf30b1921f", + "Definition": {}, + "Gloss": { + "en": "hunter", + "pt": "cac\u0327ador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "121e8396-40c1-460d-8bf0-7f5c58b46d1e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ab4edb17-b51d-4258-b349-4bdfd1dff7d6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c2633d33-0cb9-4315-82be-058803862559", + "DeletedAt": null, + "LexemeForm": { + "seh": "sodzi" + }, + "CitationForm": { + "seh": "nsodzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5daf8137-2e36-4e03-bd23-7b41707adcde", + "Order": 1, + "DeletedAt": null, + "EntryId": "c2633d33-0cb9-4315-82be-058803862559", + "Definition": {}, + "Gloss": { + "en": "tear", + "pt": "la\u0301grima" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2043d0fb-e82a-4c6e-b6c8-8c042dc1a45d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26 Ort", + "Ws": "en" + } + ] + }, + "SenseId": "5daf8137-2e36-4e03-bd23-7b41707adcde", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "caa170d3-6942-4e87-b6d2-4577bc5d73ea", + "DeletedAt": null, + "LexemeForm": { + "seh": "soka" + }, + "CitationForm": { + "seh": "nsoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3cd74405-3950-4399-872f-dc1ca7d328df", + "Order": 1, + "DeletedAt": null, + "EntryId": "caa170d3-6942-4e87-b6d2-4577bc5d73ea", + "Definition": {}, + "Gloss": { + "en": "group", + "pt": "grupo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7c8e26b-a3ab-4764-97b5-45d513209452", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3cd74405-3950-4399-872f-dc1ca7d328df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ef66d14-cb42-412e-a51d-0c6f60471e7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "solo" + }, + "CitationForm": { + "seh": "nsolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ab5b910f-08b2-4b66-93fd-596b2858cc56", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ef66d14-cb42-412e-a51d-0c6f60471e7f", + "Definition": {}, + "Gloss": { + "en": "head", + "pt": "cabec\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d2bf7e56-dbc3-4089-896c-797fef5948af", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,15; wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ab5b910f-08b2-4b66-93fd-596b2858cc56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a4434311-f71d-4d69-9a62-e35d65214560", + "DeletedAt": null, + "LexemeForm": { + "seh": "sonkhano" + }, + "CitationForm": { + "seh": "nsonkhano" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b80953f-959c-4364-bbec-484c1626a7c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "a4434311-f71d-4d69-9a62-e35d65214560", + "Definition": {}, + "Gloss": { + "en": "reunion", + "pt": "reunia\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c68f4982-0d61-46e9-8aa7-80a2eea8277f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0b80953f-959c-4364-bbec-484c1626a7c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8ae3cdb5-b324-404f-a8be-299c1cde277c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sonkho" + }, + "CitationForm": { + "seh": "nsonkho" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "19791fae-9fdc-4d6f-a48f-07875c335123", + "Order": 1, + "DeletedAt": null, + "EntryId": "8ae3cdb5-b324-404f-a8be-299c1cde277c", + "Definition": {}, + "Gloss": { + "en": "tax", + "pt": "imposto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8a7e617-0844-42a6-a5d1-a65080d99a02", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "19791fae-9fdc-4d6f-a48f-07875c335123", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4600ec8-5db9-48b2-a2b3-f9691ca822e1", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsua" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "2806737d-be15-4e31-b771-1dd0ce799341", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4600ec8-5db9-48b2-a2b3-f9691ca822e1", + "Definition": {}, + "Gloss": { + "en": "island", + "pt": "ilha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e720efa8-7f67-4cae-84ce-985050987da7", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsunga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "851805bb-5ca7-4f6e-9f1d-1ee3e47880a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "e720efa8-7f67-4cae-84ce-985050987da7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a liquid form of yeast made from cimera used in making beer", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "fermento para cerveja", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "yeast liquid", + "pt": "fermento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "86e982e6-c8b6-466a-bd2b-46e54f58ed62", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Silva", + "Ws": "en" + } + ] + }, + "SenseId": "851805bb-5ca7-4f6e-9f1d-1ee3e47880a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a5ccdd3-da6c-477b-ba26-89b22ec94419", + "DeletedAt": null, + "LexemeForm": { + "seh": "supai" + }, + "CitationForm": { + "seh": "nsupai" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a865c6d4-b15e-4fd4-9493-24405b7f5e5d", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a5ccdd3-da6c-477b-ba26-89b22ec94419", + "Definition": {}, + "Gloss": { + "en": "police", + "pt": "poli\u0301cia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "41187dba-ae36-469b-8956-b3528a38f3ea", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a865c6d4-b15e-4fd4-9493-24405b7f5e5d", + "DeletedAt": null + } + ] + }, + { + "Id": "6d230db6-8a2f-4132-9e49-1187bf3ff03e", + "Order": 2, + "DeletedAt": null, + "EntryId": "3a5ccdd3-da6c-477b-ba26-89b22ec94419", + "Definition": {}, + "Gloss": { + "en": "militia", + "pt": "mili\u0301cia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7bc078e5-c6d0-49ab-92ea-9bbb09ce3849", + "DeletedAt": null, + "LexemeForm": { + "seh": "suwa" + }, + "CitationForm": { + "seh": "nsuwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6860e918-e83d-43eb-8424-6b9e630b92fd", + "Order": 1, + "DeletedAt": null, + "EntryId": "7bc078e5-c6d0-49ab-92ea-9bbb09ce3849", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ball of corn porrige which is then dipped into the sauce in traditional table manners", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "bolo de massa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "porridge", + "pt": "massa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88875471-9160-4daa-9b1c-4a31f74d826a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6860e918-e83d-43eb-8424-6b9e630b92fd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1527e86f-556a-43b3-b0ce-accb94a0bb5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "suwo" + }, + "CitationForm": { + "seh": "nsuwo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5f151b0e-769b-43ea-8a62-ef105f427854", + "Order": 1, + "DeletedAt": null, + "EntryId": "1527e86f-556a-43b3-b0ce-accb94a0bb5d", + "Definition": {}, + "Gloss": { + "en": "door", + "pt": "porta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cdaa5bdd-c511-43eb-887c-b97fda77e455", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5f151b0e-769b-43ea-8a62-ef105f427854", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5ecd9b33-540a-4fc8-af96-2fbddd4353f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nsuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7bd437c5-f64a-42c2-8e0e-3bc9abcb0cc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "5ecd9b33-540a-4fc8-af96-2fbddd4353f5", + "Definition": {}, + "Gloss": { + "en": "gravy", + "pt": "molho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f700bb92-59a3-4fbc-b962-8ac81899daf2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7bd437c5-f64a-42c2-8e0e-3bc9abcb0cc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "154e2689-3db4-40f0-bdf5-499db13ea4ce", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d3819b6-d016-41a6-941c-99244adac796", + "Order": 1, + "DeletedAt": null, + "EntryId": "154e2689-3db4-40f0-bdf5-499db13ea4ce", + "Definition": { + "en": { + "Spans": [ + { + "Text": "far in the interior", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "muito dentro", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "far in", + "pt": "muito dentro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c36698cb-9f3a-42ea-a851-eb95895b0ec9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p25", + "Ws": "en" + } + ] + }, + "SenseId": "1d3819b6-d016-41a6-941c-99244adac796", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56eade68-7255-47e1-af7f-782188254223", + "DeletedAt": null, + "LexemeForm": { + "seh": "tambo" + }, + "CitationForm": { + "seh": "ntambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bab5b338-8f1e-4850-8077-ab3a1edd6b4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "56eade68-7255-47e1-af7f-782188254223", + "Definition": {}, + "Gloss": { + "en": "clouds", + "pt": "nuvens" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5423eb63-d96c-4945-be25-4b6005db9f10", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze \u0026 Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "bab5b338-8f1e-4850-8077-ab3a1edd6b4e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ce70c34c-410c-4278-87c8-fdff2d4e351e", + "DeletedAt": null, + "LexemeForm": { + "seh": "tanda" + }, + "CitationForm": { + "seh": "ntanda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "feddbc06-ceaa-4395-9e93-23220f990226", + "Order": 1, + "DeletedAt": null, + "EntryId": "ce70c34c-410c-4278-87c8-fdff2d4e351e", + "Definition": {}, + "Gloss": { + "en": "cross", + "pt": "crux" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e085855-76de-4f1e-92e5-9e6a842f3e32", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "feddbc06-ceaa-4395-9e93-23220f990226", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "230bce5f-1835-4a68-829d-a69e515e4f9f", + "DeletedAt": null, + "LexemeForm": { + "seh": "tanga" + }, + "CitationForm": { + "seh": "ntanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f8b04c28-6bd1-4988-8de5-5f02c4a769c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "230bce5f-1835-4a68-829d-a69e515e4f9f", + "Definition": {}, + "Gloss": { + "en": "pumpkin vine", + "pt": "aboboreira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2b52ece2-5ac7-4360-8e06-8585fa3f4a61", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f8b04c28-6bd1-4988-8de5-5f02c4a769c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3c575d8f-8aa2-4a9a-84b2-627d939dc499", + "DeletedAt": null, + "LexemeForm": { + "seh": "temo" + }, + "CitationForm": { + "seh": "ntemo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ffe085a6-ebcc-4a15-8564-f006328b0d33", + "Order": 1, + "DeletedAt": null, + "EntryId": "3c575d8f-8aa2-4a9a-84b2-627d939dc499", + "Definition": {}, + "Gloss": { + "en": "traditional law", + "pt": "lei tradicinal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3706fd08-5b98-4729-8d77-9b5bbe42f229", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ffe085a6-ebcc-4a15-8564-f006328b0d33", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16cffb0a-7f0e-401f-a035-c467a974074b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tenda" + }, + "CitationForm": { + "seh": "ntenda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "100834ce-ed34-4f91-b36d-ef47034ec7b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "16cffb0a-7f0e-401f-a035-c467a974074b", + "Definition": {}, + "Gloss": { + "en": "sick person", + "pt": "doente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8aa0bacd-d06d-48df-bc9b-7633ff841efa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "100834ce-ed34-4f91-b36d-ef47034ec7b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72675443-a294-4dab-b502-1419834323a1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tendere" + }, + "CitationForm": { + "seh": "ntendere" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d974749d-666b-4d63-9b8d-156ad768e9b6", + "Order": 1, + "DeletedAt": null, + "EntryId": "72675443-a294-4dab-b502-1419834323a1", + "Definition": {}, + "Gloss": { + "en": "peace", + "pt": "paz" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "678ebf00-2516-48ea-9519-7d65e2026498", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndisafunadi ntendere m\u0027Mosambiki.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Mesmo quero paz em Moc\u0327ambique.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d974749d-666b-4d63-9b8d-156ad768e9b6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75803e82-5565-4905-ab83-ec777636c870", + "DeletedAt": null, + "LexemeForm": { + "seh": "tengo" + }, + "CitationForm": { + "seh": "ntengo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "659a1576-f97c-4613-baec-9e6c64986014", + "Order": 1, + "DeletedAt": null, + "EntryId": "75803e82-5565-4905-ab83-ec777636c870", + "Definition": {}, + "Gloss": { + "en": "number", + "pt": "nu\u0301mero" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4b27c44b-1a6e-4238-8940-8938ee56ae2a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "659a1576-f97c-4613-baec-9e6c64986014", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e96b1074-d2fc-400d-b283-f9f2e8af8dca", + "DeletedAt": null, + "LexemeForm": { + "seh": "tete" + }, + "CitationForm": { + "seh": "ntete" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c95f1739-469b-4753-b871-afe192303f69", + "Order": 1, + "DeletedAt": null, + "EntryId": "e96b1074-d2fc-400d-b283-f9f2e8af8dca", + "Definition": {}, + "Gloss": { + "en": "cane", + "pt": "canisa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "401670ea-4c2d-4507-829c-30b72f6acb90", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c95f1739-469b-4753-b871-afe192303f69", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8ca39043-9d1a-4bae-93e1-a5823d8ae6cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthalaunda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "90c935cb-79d1-4644-ad82-74d34cca515c", + "Order": 1, + "DeletedAt": null, + "EntryId": "8ca39043-9d1a-4bae-93e1-a5823d8ae6cc", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "area, zona", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "area", + "pt": "area" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b61c1ac3-cf65-43d5-8b00-88d356fe65f8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "90c935cb-79d1-4644-ad82-74d34cca515c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8cf523f3-caa0-416b-9b58-318edd2ca3d1", + "DeletedAt": null, + "LexemeForm": { + "seh": "authambi" + }, + "CitationForm": { + "seh": "nthambi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8cfcb6cb-208e-40dc-ba97-89d7832abeab", + "Order": 1, + "DeletedAt": null, + "EntryId": "8cf523f3-caa0-416b-9b58-318edd2ca3d1", + "Definition": {}, + "Gloss": { + "en": "liar", + "pt": "mentirosos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f3afd86-b9e0-4e5a-b80c-ac809d050200", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8cfcb6cb-208e-40dc-ba97-89d7832abeab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30323a8a-405a-4ad3-82b3-9086dfdbc10b", + "DeletedAt": null, + "LexemeForm": { + "seh": "thawi" + }, + "CitationForm": { + "seh": "nthawi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "495e4687-518a-4bd8-8c2b-66a69dd4b275", + "Order": 1, + "DeletedAt": null, + "EntryId": "30323a8a-405a-4ad3-82b3-9086dfdbc10b", + "Definition": {}, + "Gloss": { + "en": "branch", + "pt": "ramo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5e88847-1098-4c07-b205-f9278648f4cf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "495e4687-518a-4bd8-8c2b-66a69dd4b275", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "49cc9257-90c7-4fe0-a9e0-2c8d72aa5e2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "thembe" + }, + "CitationForm": { + "seh": "nthembe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2fdb0790-644f-4d6f-a123-4d88a0f842ea", + "Order": 1, + "DeletedAt": null, + "EntryId": "49cc9257-90c7-4fe0-a9e0-2c8d72aa5e2b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "animal skin alone, after it is taken off the body", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "animal skin", + "pt": "pele de animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "3adbb8a1-163e-4e4f-a9c5-4cfe052f8eca", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2fdb0790-644f-4d6f-a123-4d88a0f842ea", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b053eb5d-836a-462b-a2dc-ad19ef0c5bab", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthenda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "07568c02-2000-430b-a0c7-41e626dc39f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "b053eb5d-836a-462b-a2dc-ad19ef0c5bab", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a sickness specific", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "uma doenc\u0327a specifica", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "a sickness", + "pt": "uma doenc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cea724a6-3356-43a9-bc16-5fb5fffdc165", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthenga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "11486f77-4bb3-4882-a1c0-045fb45d216b", + "Order": 1, + "DeletedAt": null, + "EntryId": "cea724a6-3356-43a9-bc16-5fb5fffdc165", + "Definition": {}, + "Gloss": { + "en": "feather", + "pt": "pena de ave" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aa29b0fc-e491-40ae-8493-4b6bf59cb212", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "11486f77-4bb3-4882-a1c0-045fb45d216b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0a60edba-1656-448b-83f8-fe9cc27b5282", + "DeletedAt": null, + "LexemeForm": { + "seh": "thete" + }, + "CitationForm": { + "seh": "nthete" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8ecaca7b-0fd8-4dda-bc35-3d914fd897a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "0a60edba-1656-448b-83f8-fe9cc27b5282", + "Definition": {}, + "Gloss": { + "en": "grasshopper", + "pt": "gafanhoto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7dcc92e-9b13-4ad2-beaf-8d1be861372b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8ecaca7b-0fd8-4dda-bc35-3d914fd897a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "52c7195d-4ddc-41ec-81cc-5fd560039e4e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thonga" + }, + "CitationForm": { + "seh": "nthonga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "688c63ab-91b6-43f2-821f-71d3ec409900", + "Order": 1, + "DeletedAt": null, + "EntryId": "52c7195d-4ddc-41ec-81cc-5fd560039e4e", + "Definition": {}, + "Gloss": { + "en": "noise", + "pt": "barulho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e4d215a1-f5b2-460f-9f66-1ea813550b87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:14", + "Ws": "en" + } + ] + }, + "SenseId": "688c63ab-91b6-43f2-821f-71d3ec409900", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "977d1248-a6b7-4398-be8a-e89de0e3913e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumbi" + }, + "CitationForm": { + "seh": "nthumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3dc4981b-71d2-4d87-9ba3-b3be486eca63", + "Order": 1, + "DeletedAt": null, + "EntryId": "977d1248-a6b7-4398-be8a-e89de0e3913e", + "Definition": {}, + "Gloss": { + "en": "tomb", + "pt": "tu\u0301mulo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1177e519-43dc-4758-b121-e94d46df06d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3dc4981b-71d2-4d87-9ba3-b3be486eca63", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "34ef8407-af64-4d17-8cc2-1cf8a542ff6e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthuyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "23541917-3a2c-44c3-ba49-8970a207eeb6", + "Order": 1, + "DeletedAt": null, + "EntryId": "34ef8407-af64-4d17-8cc2-1cf8a542ff6e", + "Definition": {}, + "Gloss": { + "en": "Suricate", + "pt": "raposa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a5706d75-ba84-43e5-a3b9-a917071b39b3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Rogerio knows as raposa", + "Ws": "en" + } + ] + }, + "SenseId": "23541917-3a2c-44c3-ba49-8970a207eeb6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4586fe24-4cb1-42b9-8c0c-ade3f8a5492b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tima" + }, + "CitationForm": { + "seh": "ntima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "566a7159-a3f7-4d7e-8878-78da37d657d7", + "Order": 1, + "DeletedAt": null, + "EntryId": "4586fe24-4cb1-42b9-8c0c-ade3f8a5492b", + "Definition": {}, + "Gloss": { + "en": "heart", + "pt": "corac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f9fd5f0e-4b16-4503-bbad-105217256ce5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "566a7159-a3f7-4d7e-8878-78da37d657d7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c0a6616-ba67-4060-80d9-c0d5bf5c7086", + "DeletedAt": null, + "LexemeForm": { + "seh": "tolo" + }, + "CitationForm": { + "seh": "ntolo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "358c3a82-6cb9-4f98-9279-411ed528fb86", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c0a6616-ba67-4060-80d9-c0d5bf5c7086", + "Definition": {}, + "Gloss": { + "en": "bagage", + "pt": "bagagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f2bc9d9-f930-43c1-abd7-707827d0e2ee", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "358c3a82-6cb9-4f98-9279-411ed528fb86", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3495b0d4-1bd5-4d38-b617-57e86ad7b5d8", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntondono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3b4c5a61-8b47-4c5d-8616-070fb2a66296", + "Order": 1, + "DeletedAt": null, + "EntryId": "3495b0d4-1bd5-4d38-b617-57e86ad7b5d8", + "Definition": {}, + "Gloss": { + "en": "three days after", + "pt": "tre\u0302s dias depois" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "704d083d-5ef6-4f87-a67e-2037dbdcf0e8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p25 (says:ntondo)", + "Ws": "en" + } + ] + }, + "SenseId": "3b4c5a61-8b47-4c5d-8616-070fb2a66296", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ba01aa6b-ad84-43ba-92d7-d8876cf02e6a", + "DeletedAt": null, + "LexemeForm": { + "seh": "tongi" + }, + "CitationForm": { + "seh": "ntongi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "05060894-c1ca-462e-8fb4-008eb27df73b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ba01aa6b-ad84-43ba-92d7-d8876cf02e6a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "an authority, a judge", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "an authority", + "pt": "um autoridade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd7d0c9c-791e-4c34-b9ed-ebddad8f9724", + "Name": { + "en": "Judge, render a verdict" + }, + "Code": "4.7.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "7ab9fdcd-dc86-4f11-bfff-0d3a9a389b6b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "05060894-c1ca-462e-8fb4-008eb27df73b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2846c365-b52c-4a90-a25c-0bf63af135be", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanza" + }, + "CitationForm": { + "seh": "ntsanza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "999ab06c-80a3-4baf-998e-63a288376c10", + "Order": 1, + "DeletedAt": null, + "EntryId": "2846c365-b52c-4a90-a25c-0bf63af135be", + "Definition": {}, + "Gloss": { + "en": "nest", + "pt": "ninho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7cd3d60e-6222-4dc9-8ec6-a01a9287a9b2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "999ab06c-80a3-4baf-998e-63a288376c10", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a895c7e0-22f9-41a3-a888-f1707bd773a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsekese" + }, + "CitationForm": { + "seh": "ntsekese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cabdee9b-7858-4dde-876a-7efda599239c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a895c7e0-22f9-41a3-a888-f1707bd773a2", + "Definition": {}, + "Gloss": { + "en": "tree type", + "pt": "arvora tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f9043803-da4f-40fc-ba41-4974996d0461", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsekese" + }, + "CitationForm": { + "seh": "ntsekese" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fde8ceed-ce62-404a-b0ff-89f51bfe846a", + "Order": 1, + "DeletedAt": null, + "EntryId": "f9043803-da4f-40fc-ba41-4974996d0461", + "Definition": { + "en": { + "Spans": [ + { + "Text": "chicken that lays eggs", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "pullet", + "pt": "frango" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "1618fc66-e12c-4d04-8dd2-bb583bbd69eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "fde8ceed-ce62-404a-b0ff-89f51bfe846a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8cd98155-a0d4-4170-b766-0460c17ab946", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsembe" + }, + "CitationForm": { + "seh": "ntsembe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aac9e30b-ddff-43c7-a81b-ab10fde04118", + "Order": 1, + "DeletedAt": null, + "EntryId": "8cd98155-a0d4-4170-b766-0460c17ab946", + "Definition": { + "en": { + "Spans": [ + { + "Text": "victim of a sacrifice", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "a sacrifice", + "pt": "um sacrifi\u0301cio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cc6d53dc-3a76-4479-b615-65689f1f2147", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5 (says also host)", + "Ws": "en" + } + ] + }, + "SenseId": "aac9e30b-ddff-43c7-a81b-ab10fde04118", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b9021548-9a9c-410c-9be0-28741c8610c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsengwa" + }, + "CitationForm": { + "seh": "ntsengwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad2de11b-1f83-49d6-b52e-7e4f608bfd6d", + "Order": 1, + "DeletedAt": null, + "EntryId": "b9021548-9a9c-410c-9be0-28741c8610c0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "an open basket made of reed used to carry food", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "basket open", + "pt": "cesta aberta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f9b73b19-876c-40c6-9305-063b89c75936", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ad2de11b-1f83-49d6-b52e-7e4f608bfd6d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0240b39e-7c46-43e3-ba95-b7377da4b36b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsikana" + }, + "CitationForm": { + "seh": "ntsikana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b8db0515-daaa-4a7c-a992-5d59faa5ac10", + "Order": 1, + "DeletedAt": null, + "EntryId": "0240b39e-7c46-43e3-ba95-b7377da4b36b", + "Definition": {}, + "Gloss": { + "en": "girl", + "pt": "rapariga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "344d6007-dc7e-4e9c-a8ed-14909053ffd1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:26", + "Ws": "en" + } + ] + }, + "SenseId": "b8db0515-daaa-4a7c-a992-5d59faa5ac10", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "673db415-bbdb-4866-88fa-be37082d02df", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsiku" + }, + "CitationForm": { + "seh": "ntsiku" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "12147f94-e581-4f63-bac4-cde9ed2a0828", + "Order": 1, + "DeletedAt": null, + "EntryId": "673db415-bbdb-4866-88fa-be37082d02df", + "Definition": {}, + "Gloss": { + "en": "day", + "pt": "dia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1dc0b4bd-e7bd-49bf-969d-8b5fb79b4414", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsima" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3021e436-8d59-431a-923e-6675fef9338c", + "Order": 1, + "DeletedAt": null, + "EntryId": "1dc0b4bd-e7bd-49bf-969d-8b5fb79b4414", + "Definition": {}, + "Gloss": { + "en": "corn meal", + "pt": "massa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5218845-e760-402d-8aff-a092e2a38dbb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3021e436-8d59-431a-923e-6675fef9338c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4ef85e38-27a4-4ba0-b1aa-5b647f5baae3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsogoleri" + }, + "CitationForm": { + "seh": "ntsogoleri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "635276eb-6ed8-4b78-8c27-204adecdf03c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4ef85e38-27a4-4ba0-b1aa-5b647f5baae3", + "Definition": {}, + "Gloss": { + "en": "leader", + "pt": "lider" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "902cfcbe-6e42-4e55-b2a5-9146702fc16b", + "Name": { + "en": "Guide" + }, + "Code": "7.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecf9ebd7-f991-41df-98cd-bcf1254d5d0b", + "Name": { + "en": "Go first" + }, + "Code": "7.2.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "185e434d-9c17-4b50-8957-7a16cf35c433", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "635276eb-6ed8-4b78-8c27-204adecdf03c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2a378802-8cf5-44fa-bd31-3e16fdf9e496", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsorri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8431ffc5-7a7a-4959-b414-4f5b8a4f5af9", + "Order": 1, + "DeletedAt": null, + "EntryId": "2a378802-8cf5-44fa-bd31-3e16fdf9e496", + "Definition": {}, + "Gloss": { + "en": "pullet", + "pt": "frango" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "09643d26-5604-4c2e-a8f3-e8bc40572cfc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "8431ffc5-7a7a-4959-b414-4f5b8a4f5af9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b1bf1e09-8292-4ee1-b2d0-25a8299983c6", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsuwa" + }, + "CitationForm": { + "seh": "ntsuwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b113ea41-e7b3-4a5d-a5bc-221da8935393", + "Order": 1, + "DeletedAt": null, + "EntryId": "b1bf1e09-8292-4ee1-b2d0-25a8299983c6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "game of stones in holes, Mancala, Wari", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "un jogo tradicional com pedras e baracos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "game", + "pt": "jogo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a3d95c6a-4b0b-4af0-aca8-addd042becd2", + "Name": { + "en": "Play, fun" + }, + "Code": "4.2.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "57d3b11f-c7d1-417f-8e88-c02efe57d0e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b113ea41-e7b3-4a5d-a5bc-221da8935393", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cedec827-0443-4c44-92fa-9538230131f1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tumwi" + }, + "CitationForm": { + "seh": "ntumwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e97eb2cc-192e-4975-923f-3c1a6de8df0e", + "Order": 1, + "DeletedAt": null, + "EntryId": "cedec827-0443-4c44-92fa-9538230131f1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "messenger, sent one, angel, gives or does what was sent for", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "messengeiro, enviado, anjo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "messenger", + "pt": "messengeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "8d266c98-9db3-4d3e-b204-956aa848ffa5", + "Name": { + "en": "Communication devices" + }, + "Code": "3.5.9.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "6ce178a3-7def-4590-b4df-4bc84459166c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "e97eb2cc-192e-4975-923f-3c1a6de8df0e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "becf491a-a26b-460e-aca6-9cb5ba7bc4cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "tunda" + }, + "CitationForm": { + "seh": "ntunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4f8b6ad-d902-4e14-947e-696ffdc396ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "becf491a-a26b-460e-aca6-9cb5ba7bc4cc", + "Definition": {}, + "Gloss": { + "en": "dry land", + "pt": "terra seca" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "90b8cbaf-1f02-4455-818e-8d72ff51a593", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ntunda unango wa bara", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "outra lado de mar", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "a4f8b6ad-d902-4e14-947e-696ffdc396ec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c9b49e45-e8a0-4028-a578-fcf5d40e19a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntundu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "19498627-ef76-4992-af1a-a69edcd03198", + "Order": 1, + "DeletedAt": null, + "EntryId": "c9b49e45-e8a0-4028-a578-fcf5d40e19a4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a group of people who are of a different ethnic group", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "groupo differente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "group", + "pt": "groupo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "23372178-5acd-483f-b4dd-502e2ede59e6", + "DeletedAt": null, + "LexemeForm": { + "seh": "tundo" + }, + "CitationForm": { + "seh": "ntuntho" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e3029014-e00b-4144-a33c-cf8c91c5ed5b", + "Order": 1, + "DeletedAt": null, + "EntryId": "23372178-5acd-483f-b4dd-502e2ede59e6", + "Definition": {}, + "Gloss": { + "en": "types", + "pt": "especia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2dd8f4ef-54ed-4413-8594-c4eb12f01c3d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu acita mituntho yonsene ya pinyama.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Deus fez todas as especias de animais.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "e3029014-e00b-4144-a33c-cf8c91c5ed5b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "51b9eb6e-ba89-4b3a-91c3-44579e74eab6", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntunzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff10bede-29cb-4bd1-96bc-c5dd503f8ed6", + "Order": 1, + "DeletedAt": null, + "EntryId": "51b9eb6e-ba89-4b3a-91c3-44579e74eab6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "spirit of the dead", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "espi\u0301rito do morto", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "spirit", + "pt": "espi\u0301rito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1cb79293-d4f7-4990-9f50-3bb595744f61", + "Name": { + "en": "Soul, spirit" + }, + "Code": "3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f6c81fb-02a4-415f-a363-fb11cc6b9254", + "Name": { + "en": "Supernatural being" + }, + "Code": "4.9.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fb089b3c-6dd0-4eb6-83c6-61588e95cc9c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26", + "Ws": "en" + } + ] + }, + "SenseId": "ff10bede-29cb-4bd1-96bc-c5dd503f8ed6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d5470b7-d6c7-4103-b8fa-126060a95ac6", + "DeletedAt": null, + "LexemeForm": { + "seh": "tupo" + }, + "CitationForm": { + "seh": "ntupo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a4f6c11e-9abb-4bc2-9303-66945fb7e2f7", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d5470b7-d6c7-4103-b8fa-126060a95ac6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "clan name, praise name", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "clan name", + "pt": "nome de cla\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a781d57d-174d-47a6-b6a1-ae635a13df84", + "Name": { + "en": "Family, clan" + }, + "Code": "4.1.9.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "6db5c091-8624-4935-b142-a2ad3131e4fa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a4f6c11e-9abb-4bc2-9303-66945fb7e2f7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4faa1169-875a-4f42-8aea-0c30581350cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "nu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b486f62d-fbef-46de-978f-e8882a8964e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "4faa1169-875a-4f42-8aea-0c30581350cf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "your", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "vossa", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2P", + "pt": "2P" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb0168f7-fa1e-4300-b9f5-da9ce65ec872", + "DeletedAt": null, + "LexemeForm": { + "seh": "numph" + }, + "CitationForm": { + "seh": "numpha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e191820-913b-4f14-b6ad-c445e44c0a92", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb0168f7-fa1e-4300-b9f5-da9ce65ec872", + "Definition": {}, + "Gloss": { + "en": "jump", + "pt": "saltar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "872e14a4-1cff-4f0d-915f-c3f867e0a28a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8e191820-913b-4f14-b6ad-c445e44c0a92", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "32440709-e7da-4ac2-8de1-a87fecaedaff", + "DeletedAt": null, + "LexemeForm": { + "seh": "nungu" + }, + "CitationForm": { + "seh": "nungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6f7a5db1-0591-4c48-af24-9f9eb2bffca3", + "Order": 1, + "DeletedAt": null, + "EntryId": "32440709-e7da-4ac2-8de1-a87fecaedaff", + "Definition": { + "en": { + "Spans": [ + { + "Text": "porcupine", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "porcupine", + "pt": "porco-espinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1cebb71f-d0ec-47e1-9cf5-188c5ce81d27", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "6f7a5db1-0591-4c48-af24-9f9eb2bffca3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5b3febe7-3f43-4e6f-b40b-34f42e5fa01d", + "DeletedAt": null, + "LexemeForm": { + "seh": "nunkh" + }, + "CitationForm": { + "seh": "nunkha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "80a94d07-3222-4db9-8c81-dc0b5d0f72a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "5b3febe7-3f43-4e6f-b40b-34f42e5fa01d", + "Definition": {}, + "Gloss": { + "en": "smell", + "pt": "cheirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fe8bd76c-c1ac-42d7-b8e7-424f0c49af6f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "80a94d07-3222-4db9-8c81-dc0b5d0f72a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8299a1ca-500a-48e5-868a-dfd07d1099bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "nya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "6502591c-41f0-45ea-8126-df8a747c1ee5", + "Order": 1, + "DeletedAt": null, + "EntryId": "8299a1ca-500a-48e5-868a-dfd07d1099bb", + "Definition": { + "en": { + "Spans": [ + { + "Text": "-er", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Nominalizer", + "pt": "nominalizador" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "124ea6a8-2a7c-4344-8b59-9a2f44f0871c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nyakufamba nyamatanya", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "6502591c-41f0-45ea-8126-df8a747c1ee5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3510001d-d4a8-40a5-a373-2d0341ded6c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyabasa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e81ec0f7-ef1b-469d-a6a3-6f6dcd5a4b13", + "Order": 1, + "DeletedAt": null, + "EntryId": "3510001d-d4a8-40a5-a373-2d0341ded6c3", + "Definition": {}, + "Gloss": { + "en": "worker", + "pt": "trabalhador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4ab692c3-0831-4c55-9010-002aff120a53", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e81ec0f7-ef1b-469d-a6a3-6f6dcd5a4b13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "529949ad-beb7-413a-a981-29aa2fd2ed3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyacinthu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78303856-fbc9-49b6-9fb8-487990aacddd", + "Order": 1, + "DeletedAt": null, + "EntryId": "529949ad-beb7-413a-a981-29aa2fd2ed3c", + "Definition": {}, + "Gloss": { + "en": "owner", + "pt": "dono" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6895f4b-56c5-4478-8834-c56eaba94b44", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "78303856-fbc9-49b6-9fb8-487990aacddd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fe5c64e5-9fe6-4b8f-9373-4b2787831758", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyadzedze" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c2c9938c-a798-43e6-a720-5fbb815afaab", + "Order": 1, + "DeletedAt": null, + "EntryId": "fe5c64e5-9fe6-4b8f-9373-4b2787831758", + "Definition": {}, + "Gloss": { + "en": "bad luck", + "pt": "azar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ad0338ba-5d36-4599-8357-748dcf2cf500", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c2c9938c-a798-43e6-a720-5fbb815afaab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "66b58f34-8893-4a3b-b44d-690b88a29dc6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyadzis" + }, + "CitationForm": { + "seh": "nyadzisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b0a57d5-c230-42a6-89ca-56f677db2e3d", + "Order": 1, + "DeletedAt": null, + "EntryId": "66b58f34-8893-4a3b-b44d-690b88a29dc6", + "Definition": {}, + "Gloss": { + "en": "shame", + "pt": "envergonhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6d9db7ff-682b-4139-a36f-1e1c9208b653", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0b0a57d5-c230-42a6-89ca-56f677db2e3d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d169edb-a7d9-49d4-9704-383108e2f6c4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyagrinya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "81cd6c56-0d05-45fa-b101-f42183055887", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d169edb-a7d9-49d4-9704-383108e2f6c4", + "Definition": {}, + "Gloss": { + "en": "slave girl", + "pt": "scravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b39d3116-9c70-4e71-8694-6e7eb4ceb85d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:20 says servant girl; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "81cd6c56-0d05-45fa-b101-f42183055887", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2098fe21-5936-4c3a-a66e-0faa7fb4245e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakalemalema" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "55a92fd8-0ced-486d-ad63-a44033517c10", + "Order": 1, + "DeletedAt": null, + "EntryId": "2098fe21-5936-4c3a-a66e-0faa7fb4245e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "bat", + "pt": "morcego" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c4f48d5e-6779-4176-8ea7-463eb12d2e70", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "55a92fd8-0ced-486d-ad63-a44033517c10", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c6ea6e29-547d-499d-a585-169497a3f186", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakapheru\u0301-pheru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "706da4f3-c698-4f9c-a850-aa18ebd8af13", + "Order": 1, + "DeletedAt": null, + "EntryId": "c6ea6e29-547d-499d-a585-169497a3f186", + "Definition": {}, + "Gloss": { + "en": "butterfly", + "pt": "borboleta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d74b2158-c3a8-430a-af84-54ea6dbfd7fc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "706da4f3-c698-4f9c-a850-aa18ebd8af13", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c466764-5b3c-4166-b7d1-bd178fdc5eb5", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakatangale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98a8489b-53d8-4498-8c4d-39db5a3351a0", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c466764-5b3c-4166-b7d1-bd178fdc5eb5", + "Definition": {}, + "Gloss": { + "en": "flute", + "pt": "flouta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "91ddf495-a28b-4a32-90dc-6f997d0cd069", + "Name": { + "en": "Musical instrument" + }, + "Code": "4.2.3.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "564bcbe5-b22a-4ba6-87b3-698f34706bae", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "98a8489b-53d8-4498-8c4d-39db5a3351a0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aa95cb4d-2a46-44b3-af55-587793bf988c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakatendewa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6b2ccc71-e17b-4b23-83ce-c55d93d405e8", + "Order": 1, + "DeletedAt": null, + "EntryId": "aa95cb4d-2a46-44b3-af55-587793bf988c", + "Definition": {}, + "Gloss": { + "en": "chameleon", + "pt": "camalea\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "17950350-c0b5-40b4-921b-f9f7a85ec7f2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "6b2ccc71-e17b-4b23-83ce-c55d93d405e8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6898396e-eb4c-4d33-924c-989e78fe6c81", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakhonbze" + }, + "CitationForm": { + "seh": "nyakhobze" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65226cdb-93f2-4c6e-9d8a-46efc17f30ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "6898396e-eb4c-4d33-924c-989e78fe6c81", + "Definition": { + "en": { + "Spans": [ + { + "Text": "an animal like a gazelle", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "animal type", + "pt": "tipo animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "983e3762-985e-404e-849b-4ebcc7d13ca6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "65226cdb-93f2-4c6e-9d8a-46efc17f30ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cc07acd6-130f-4504-b02c-0219b3008728", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakucerenga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c55a5fd1-efd5-4069-afde-a04f621c695f", + "Order": 1, + "DeletedAt": null, + "EntryId": "cc07acd6-130f-4504-b02c-0219b3008728", + "Definition": {}, + "Gloss": { + "en": "poor person", + "pt": "pobre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a5cefc6-f6f7-491b-8264-1ef7ee347c11", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c55a5fd1-efd5-4069-afde-a04f621c695f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a50c356d-8742-4aa7-99c5-b733f7bc1bee", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakucherenga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b50cb098-aec2-47aa-9a3c-79dc42f5140e", + "Order": 1, + "DeletedAt": null, + "EntryId": "a50c356d-8742-4aa7-99c5-b733f7bc1bee", + "Definition": {}, + "Gloss": { + "en": "poor person", + "pt": "pessoa pobre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aff5fc33-3937-472a-954c-b6b72e28d0e5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b50cb098-aec2-47aa-9a3c-79dc42f5140e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b0b9def-5194-44ec-af26-d270483dfc19", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakucinga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a899604f-eb0f-49aa-bcee-ff35bfb31929", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b0b9def-5194-44ec-af26-d270483dfc19", + "Definition": {}, + "Gloss": { + "en": "barber", + "pt": "barbeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b3b96835-bf84-4b2c-81de-5b927c3a87b8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "a899604f-eb0f-49aa-bcee-ff35bfb31929", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "848c98f2-6d5e-4ad8-a63a-ee0c8c0eafc2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakudalo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "77e42cbd-8448-4559-90e9-43b6afbef901", + "Order": 1, + "DeletedAt": null, + "EntryId": "848c98f2-6d5e-4ad8-a63a-ee0c8c0eafc2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "traditional prophet", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "profeta tradicional", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "prophet", + "pt": "profeta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "41851d93-b323-450b-8341-686d9f1eee41", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "77e42cbd-8448-4559-90e9-43b6afbef901", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4b9988df-225c-48f4-ac5f-59744fb3972e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakufunza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88be5194-7358-4a16-93c0-b40ed7081384", + "Order": 1, + "DeletedAt": null, + "EntryId": "4b9988df-225c-48f4-ac5f-59744fb3972e", + "Definition": {}, + "Gloss": { + "en": "student", + "pt": "estudante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ea5ac30-ea3a-4447-87e0-112b868a5430", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "88be5194-7358-4a16-93c0-b40ed7081384", + "DeletedAt": null + } + ] + }, + { + "Id": "12466f00-d0d2-47b3-8500-e63420d61e83", + "Order": 2, + "DeletedAt": null, + "EntryId": "4b9988df-225c-48f4-ac5f-59744fb3972e", + "Definition": {}, + "Gloss": { + "en": "discipulo", + "pt": "discipulo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c3ce4d0b-fafd-4e6c-b76d-180fd351e719", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakukumba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57c4f23c-09e7-48b6-8652-ce1d91acaeaf", + "Order": 1, + "DeletedAt": null, + "EntryId": "c3ce4d0b-fafd-4e6c-b76d-180fd351e719", + "Definition": {}, + "Gloss": { + "en": "ploughman", + "pt": "cavador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2c66e9c8-0ad0-4109-86a1-62545fd44d69", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "57c4f23c-09e7-48b6-8652-ce1d91acaeaf", + "DeletedAt": null + } + ] + }, + { + "Id": "fc1d89f8-d156-485e-8a87-1e52f5ff4f54", + "Order": 2, + "DeletedAt": null, + "EntryId": "c3ce4d0b-fafd-4e6c-b76d-180fd351e719", + "Definition": {}, + "Gloss": { + "en": "quarry-man", + "pt": "cabouqueiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9d860d31-9e48-4b78-abca-a4957c8570d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakulamala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ac1edb2-e1c0-4132-af39-a8f05581d963", + "Order": 1, + "DeletedAt": null, + "EntryId": "9d860d31-9e48-4b78-abca-a4957c8570d0", + "Definition": {}, + "Gloss": { + "en": "lame", + "pt": "coxo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bf82e80b-ee9f-42b0-9a1f-d9b9f65da9b1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1ac1edb2-e1c0-4132-af39-a8f05581d963", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0f5bd4c-8cc3-4fd7-a2b7-30f8b5a17f02", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakulima" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b91e4033-75fb-44ad-b0ed-76c4684e4933", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0f5bd4c-8cc3-4fd7-a2b7-30f8b5a17f02", + "Definition": {}, + "Gloss": { + "en": "farmer", + "pt": "lavrador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e43d6d85-4ef0-4a69-bc73-b196ef1dc9a9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "b91e4033-75fb-44ad-b0ed-76c4684e4933", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5c8f8918-db6b-47ef-9e95-00c7979889c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakulotera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5a8385e0-a9bf-4d95-9f19-75704214b093", + "Order": 1, + "DeletedAt": null, + "EntryId": "5c8f8918-db6b-47ef-9e95-00c7979889c2", + "Definition": {}, + "Gloss": { + "en": "seer", + "pt": "adivinhador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ee14b08-c8f3-42f7-b6b9-7e7d28e46d1c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5a8385e0-a9bf-4d95-9f19-75704214b093", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "53f5e2c2-e32c-474b-b769-c95ab8b021dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakumana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e9e4898-3e17-40ce-8fb9-bd603c82474a", + "Order": 1, + "DeletedAt": null, + "EntryId": "53f5e2c2-e32c-474b-b769-c95ab8b021dd", + "Definition": {}, + "Gloss": { + "en": "selfish one", + "pt": "guloso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da87b64e-ac4e-4dee-9616-2a629e4fa625", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakunyengerera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "85ae067e-bdc2-41bc-838a-e6859e16ad51", + "Order": 1, + "DeletedAt": null, + "EntryId": "da87b64e-ac4e-4dee-9616-2a629e4fa625", + "Definition": {}, + "Gloss": { + "en": "deceiver", + "pt": "enganador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "256dc80d-5f22-4451-a71f-0cc8e2b31c53", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "85ae067e-bdc2-41bc-838a-e6859e16ad51", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "33d655c6-8898-4f6a-a64a-b9a85d851c60", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakupulumusa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "53c8b485-af48-4e9f-8caa-bcec1e7fe66a", + "Order": 1, + "DeletedAt": null, + "EntryId": "33d655c6-8898-4f6a-a64a-b9a85d851c60", + "Definition": {}, + "Gloss": { + "en": "savior", + "pt": "salvador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21abd2a7-b72b-40da-97ee-6ba7dcf04f79", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "53c8b485-af48-4e9f-8caa-bcec1e7fe66a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6652a08a-8461-4345-acf2-0b1ed3068d84", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakutongi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88185ef7-0946-4133-88a3-00efb760e4e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "6652a08a-8461-4345-acf2-0b1ed3068d84", + "Definition": {}, + "Gloss": { + "en": "leader", + "pt": "dirigente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "f1335146-7975-42ee-b779-b8f7b7b5e883", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "88185ef7-0946-4133-88a3-00efb760e4e1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ace5e592-4cb8-4fe4-b3ea-a9c70d1d9d41", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyakwawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e2394edc-16a7-4558-ab4f-163a80a8b095", + "Order": 1, + "DeletedAt": null, + "EntryId": "ace5e592-4cb8-4fe4-b3ea-a9c70d1d9d41", + "Definition": {}, + "Gloss": { + "en": "ruler", + "pt": "re\u0301gulo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "5f3e44b8-e94c-49b4-9e2d-1acd93dddf75", + "Name": { + "en": "Government official" + }, + "Code": "4.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "5bae26b2-423e-4e8a-b8b6-4194e20377bb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e2394edc-16a7-4558-ab4f-163a80a8b095", + "DeletedAt": null + } + ] + }, + { + "Id": "d73db95c-3883-4848-a2b6-d6b16a9989b0", + "Order": 2, + "DeletedAt": null, + "EntryId": "ace5e592-4cb8-4fe4-b3ea-a9c70d1d9d41", + "Definition": {}, + "Gloss": { + "en": "province" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a82cddfb-3e00-4a2d-bf02-a1e4e4d617e0", + "DeletedAt": null, + "LexemeForm": { + "seh": "yale" + }, + "CitationForm": { + "seh": "nyale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65f74be4-09d7-4350-8d36-d175af72fadb", + "Order": 1, + "DeletedAt": null, + "EntryId": "a82cddfb-3e00-4a2d-bf02-a1e4e4d617e0", + "Definition": {}, + "Gloss": { + "en": "lamp", + "pt": "candieiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c53098f-e9fe-401b-b2af-b06fda122439", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth (luz); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "65f74be4-09d7-4350-8d36-d175af72fadb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "25bf4f24-5c66-4c5c-a919-cc794317af7b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyalo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0b6332ab-c4b6-43e6-a2ec-6e8803e2b524", + "Order": 1, + "DeletedAt": null, + "EntryId": "25bf4f24-5c66-4c5c-a919-cc794317af7b", + "Definition": {}, + "Gloss": { + "en": "sole of foot", + "pt": "planta de pe\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "84a1af8c-860e-443a-90bf-3aa121b8003b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "0b6332ab-c4b6-43e6-a2ec-6e8803e2b524", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fbd2bcd7-449f-4675-836d-745bcfa45435", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyalugwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41b1a905-20e2-468f-bf42-8f4a963112a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "fbd2bcd7-449f-4675-836d-745bcfa45435", + "Definition": { + "en": { + "Spans": [ + { + "Text": "leopard - Panthera pardus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "leopard", + "pt": "leopardo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "052428d3-6d26-42ee-8d4a-12c4967537ef", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque;Moreira:14; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "41b1a905-20e2-468f-bf42-8f4a963112a5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3371fcfb-84d0-47cb-aeef-70d71830953c", + "DeletedAt": null, + "LexemeForm": { + "seh": "yama" + }, + "CitationForm": { + "seh": "nyama" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b60d62f9-0ee8-4b1c-8a4a-d79be94424a4", + "Order": 1, + "DeletedAt": null, + "EntryId": "3371fcfb-84d0-47cb-aeef-70d71830953c", + "Definition": {}, + "Gloss": { + "en": "meat", + "pt": "carne" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "5c348090-12f4-4c83-8331-e10971bbc8d3", + "Name": { + "en": "Meat" + }, + "Code": "5.2.3.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "d54a264a-d1a7-4cb2-ae82-95a06954b179", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b60d62f9-0ee8-4b1c-8a4a-d79be94424a4", + "DeletedAt": null + } + ] + }, + { + "Id": "98e5e096-618a-48f9-a711-52c2f1fefbc0", + "Order": 2, + "DeletedAt": null, + "EntryId": "3371fcfb-84d0-47cb-aeef-70d71830953c", + "Definition": {}, + "Gloss": { + "en": "animal", + "pt": "animal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "944cf5af-469e-4b03-878f-a05d34b0d9f6", + "Name": { + "en": "Animal" + }, + "Code": "1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "033baf4d-cb5c-4d66-b8c6-69b18eceddac", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyama ya m\u0027madzi" + }, + "CitationForm": { + "seh": "nyama ya m\u0027madzi" + }, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "2333b0a2-0459-4779-adf0-915c7fc632d9", + "Order": 1, + "DeletedAt": null, + "EntryId": "033baf4d-cb5c-4d66-b8c6-69b18eceddac", + "Definition": {}, + "Gloss": { + "en": "fish", + "pt": "peixe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4dba2f05-f072-47bd-8635-5ab45c684ae2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2333b0a2-0459-4779-adf0-915c7fc632d9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "414d2d64-8996-454c-858f-d790156963f4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamalonda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca489d31-36ba-4184-b468-507c8d97ec05", + "Order": 1, + "DeletedAt": null, + "EntryId": "414d2d64-8996-454c-858f-d790156963f4", + "Definition": {}, + "Gloss": { + "en": "merchant", + "pt": "comerciante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c2be257b-cdd9-424e-b436-ff0a4a96f34f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ca489d31-36ba-4184-b468-507c8d97ec05", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d9675151-65bb-4ee0-bf21-fb15ad14cccc", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamalwa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f95a8db0-2124-443f-bb9e-f1b842f4ee23", + "Order": 1, + "DeletedAt": null, + "EntryId": "d9675151-65bb-4ee0-bf21-fb15ad14cccc", + "Definition": {}, + "Gloss": { + "en": "enemy", + "pt": "inimigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8f973c27-f10d-41f0-bb96-95e6ff4093ff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:45", + "Ws": "en" + } + ] + }, + "SenseId": "f95a8db0-2124-443f-bb9e-f1b842f4ee23", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ca499033-105c-4ce4-95f8-725e6c0c5aab", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamawo" + }, + "CitationForm": { + "seh": "nyamaso" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "793be52b-5f0e-4dfc-8e66-1ee2087be5e6", + "Order": 1, + "DeletedAt": null, + "EntryId": "ca499033-105c-4ce4-95f8-725e6c0c5aab", + "Definition": {}, + "Gloss": { + "en": "observer", + "pt": "observador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b346b016-2958-4e02-b0c3-27788a7242fd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "793be52b-5f0e-4dfc-8e66-1ee2087be5e6", + "DeletedAt": null + } + ] + }, + { + "Id": "55a0d8b6-b407-41ea-be39-458bdb197473", + "Order": 2, + "DeletedAt": null, + "EntryId": "ca499033-105c-4ce4-95f8-725e6c0c5aab", + "Definition": {}, + "Gloss": { + "en": "inspector", + "pt": "inspector" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4a52ba05-a374-4f16-992a-2f6840d54575", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamisonkho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e81f57e9-8551-4014-81be-661d69576fc9", + "Order": 1, + "DeletedAt": null, + "EntryId": "4a52ba05-a374-4f16-992a-2f6840d54575", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "cobrador do impostos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "tax collector", + "pt": "cobrador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1d1c8a0e-441a-4732-940d-3eadbe8182ea", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e81f57e9-8551-4014-81be-661d69576fc9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "da09dd6b-da20-4f79-bc4f-f76af044ff1d", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyamudzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5927f31d-3bb0-4201-a042-3f46ee311c07", + "Order": 1, + "DeletedAt": null, + "EntryId": "da09dd6b-da20-4f79-bc4f-f76af044ff1d", + "Definition": {}, + "Gloss": { + "en": "house owner", + "pt": "dono de casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "51cb83f4-75fb-4d5b-94dd-b1a71375a94c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32;(says inhabitant); Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "5927f31d-3bb0-4201-a042-3f46ee311c07", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "396ad4a4-9b58-4ecf-937d-ceed777345df", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyancidwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73a9f31b-4988-40cd-ae46-ac58775ed9ff", + "Order": 1, + "DeletedAt": null, + "EntryId": "396ad4a4-9b58-4ecf-937d-ceed777345df", + "Definition": {}, + "Gloss": { + "en": "frog", + "pt": "sapo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f60708f4-2b0e-4678-be57-870d234d7da9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "73a9f31b-4988-40cd-ae46-ac58775ed9ff", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3cebff4b-17b2-447e-aaad-edf2856b9217", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyandalo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ddf80ef-f9b0-440c-aa72-ac59d78baadf", + "Order": 1, + "DeletedAt": null, + "EntryId": "3cebff4b-17b2-447e-aaad-edf2856b9217", + "Definition": { + "en": { + "Spans": [ + { + "Text": "traditional prophet", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "profeta tradicional", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "prophet", + "pt": "profeta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "147c2e58-9ae8-460f-8cab-bf04a668945d", + "Name": { + "en": "Prophecy" + }, + "Code": "4.9.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2830b72-c642-484f-9485-24682aa11ed8", + "Name": { + "en": "Omen, divination" + }, + "Code": "4.9.4.7", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "775fbee4-c4fd-425e-877a-cb01cc4e6d4e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7ddf80ef-f9b0-440c-aa72-ac59d78baadf", + "DeletedAt": null + } + ] + }, + { + "Id": "9ba68ba6-39f7-4b0c-a084-7574eb1425c5", + "Order": 2, + "DeletedAt": null, + "EntryId": "3cebff4b-17b2-447e-aaad-edf2856b9217", + "Definition": {}, + "Gloss": { + "en": "medium", + "pt": "me\u0301dium" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d812ff4e-aac3-4d5f-a4a6-45d87005a131", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyanfutete" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eb384ce8-1bb2-47a5-9ba6-fb1e8aa1ab92", + "Order": 1, + "DeletedAt": null, + "EntryId": "d812ff4e-aac3-4d5f-a4a6-45d87005a131", + "Definition": {}, + "Gloss": { + "en": "paralytic", + "pt": "paraletico" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "c2dbe83a-d638-45ac-a6d5-5f041b9dde71", + "Name": { + "en": "Disabled" + }, + "Code": "2.5.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "026881f6-224a-45d3-9c02-b00d63b1ee04", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "eb384ce8-1bb2-47a5-9ba6-fb1e8aa1ab92", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3e8204af-c0f3-428e-baaf-b534c0c703d6", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyanfuwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94bc3a57-f0e9-4554-bf68-a1e48f9c1128", + "Order": 1, + "DeletedAt": null, + "EntryId": "3e8204af-c0f3-428e-baaf-b534c0c703d6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Common molerat, has large incisors, Cyptomys hottentotus", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "molerat", + "pt": "rato tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "54af375c-bb2d-4824-bb86-5225afee8cc6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "94bc3a57-f0e9-4554-bf68-a1e48f9c1128", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08c1c69c-66c0-4af2-899b-eed5a1b9396d", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyang\u0027ang\u0027a" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9bf15869-a62b-46b3-97f7-6e9755eefcb9", + "Order": 1, + "DeletedAt": null, + "EntryId": "08c1c69c-66c0-4af2-899b-eed5a1b9396d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bushbaby, noted for its night cry, any of Family Lorisidae", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "galagonidae, tipo de primata pequeno e noturno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bushbaby", + "pt": "macaco tipo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb7e2c81-0ee8-491b-bc95-fdc9635c7194", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "9bf15869-a62b-46b3-97f7-6e9755eefcb9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d825efa-82dd-490e-9d6d-173fe7e41ae3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyang\u0027ombe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d69ce9d9-b848-4d2f-ae20-139cc5c39a4f", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d825efa-82dd-490e-9d6d-173fe7e41ae3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "cattle herdsman", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "criador do gado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "herdsman", + "pt": "criador" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dc7858f0-6f4e-49d0-a044-64adbf7c8a90", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "d69ce9d9-b848-4d2f-ae20-139cc5c39a4f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d499f97-5535-4d31-81dc-3d9a62efc508", + "DeletedAt": null, + "LexemeForm": { + "seh": "yanga" + }, + "CitationForm": { + "seh": "nyanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea83300d-198d-4a01-a5c7-02d69e8ecb6d", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d499f97-5535-4d31-81dc-3d9a62efc508", + "Definition": {}, + "Gloss": { + "en": "horn", + "pt": "chifre" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "e92bd326-f254-48d9-b4e4-49c88ee14866", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist;Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "ea83300d-198d-4a01-a5c7-02d69e8ecb6d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dbf5e159-f53c-4700-9a75-53f1bf7d58b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyangalis" + }, + "CitationForm": { + "seh": "nyangalisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86f75dd8-5f35-49b6-bad7-b56faeee989e", + "Order": 1, + "DeletedAt": null, + "EntryId": "dbf5e159-f53c-4700-9a75-53f1bf7d58b2", + "Definition": {}, + "Gloss": { + "en": "tickle", + "pt": "fazer co\u0302cegas" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ce3cc90-0840-423a-8ec8-0e813a4e0c04", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "86f75dd8-5f35-49b6-bad7-b56faeee989e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78f34f65-66e3-4c8a-a2f2-b88b51fecda4", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyansala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fb899f4-3e60-4da5-ae2f-bc193922ee2b", + "Order": 1, + "DeletedAt": null, + "EntryId": "78f34f65-66e3-4c8a-a2f2-b88b51fecda4", + "Definition": {}, + "Gloss": { + "en": "insane person", + "pt": "maluco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a01a1900-fc1f-462e-ba3d-ae822711b034", + "Name": { + "en": "Mental illness" + }, + "Code": "2.5.8", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4bac5a6b-38fb-4c79-81f3-8912413b34eb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "8fb899f4-3e60-4da5-ae2f-bc193922ee2b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0d7681f-9ac1-4356-ad16-9b55dedea127", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyantsembe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0add00b4-215f-48b4-9cd9-4a6ea9cdea9e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0d7681f-9ac1-4356-ad16-9b55dedea127", + "Definition": {}, + "Gloss": { + "en": "priest", + "pt": "sacerdote" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "9f792202-8023-4ef3-b269-5ae4b6908a0b", + "Name": { + "en": "Offering, sacrifice" + }, + "Code": "4.9.5.5", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "134b2ae8-afd8-40a0-be09-3b5edc84ec9a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0add00b4-215f-48b4-9cd9-4a6ea9cdea9e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2b425a5e-3e36-4be3-83b8-607e4cb27057", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyanyas" + }, + "CitationForm": { + "seh": "nyanyasa" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "97adf28c-c672-4948-8fa6-9a5c480c3d28", + "Order": 1, + "DeletedAt": null, + "EntryId": "2b425a5e-3e36-4be3-83b8-607e4cb27057", + "Definition": {}, + "Gloss": { + "en": "be disgusting", + "pt": "e\u0301 nogento" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "ed7930df-e7b4-43c9-a11a-b09521276b57", + "Name": { + "en": "Smell" + }, + "Code": "2.3.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "da0003c0-33dc-4d24-ba81-c89651257327", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Njira ino isandinyanyasa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Rua este e\u0301 nogento.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "97adf28c-c672-4948-8fa6-9a5c480c3d28", + "DeletedAt": null + }, + { + "Id": "aff852f5-ed49-408d-9197-298cd0e4c9db", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Pidalonga iwe pindinyanyasa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Coisa que tu disseste na\u0303o gostei.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist says \u0022sujo\u0022; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "97adf28c-c672-4948-8fa6-9a5c480c3d28", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "117cfde6-29f1-40d3-a456-87adfa7e4098", + "DeletedAt": null, + "LexemeForm": { + "seh": "yanza" + }, + "CitationForm": { + "seh": "nyanza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d8b9835-607a-4a5f-a7e0-d36258e48b85", + "Order": 1, + "DeletedAt": null, + "EntryId": "117cfde6-29f1-40d3-a456-87adfa7e4098", + "Definition": { + "en": { + "Spans": [ + { + "Text": "large river or lake", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "river", + "pt": "rio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4153416a-784d-4f7c-a664-2640f7979a14", + "Name": { + "en": "River" + }, + "Code": "1.3.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "4dc0ceec-6331-4c7c-a6a3-4789f3da7f52", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "1d8b9835-607a-4a5f-a7e0-d36258e48b85", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f45d42a-bd1d-49c3-979e-3c88821a57f3", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyapaketi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "74ecc498-4610-44d3-8bf1-e94e0a6bf71c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f45d42a-bd1d-49c3-979e-3c88821a57f3", + "Definition": {}, + "Gloss": { + "en": "sailor", + "pt": "marinheiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "29f49e77-8dba-498c-8f01-eec317756498", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "74ecc498-4610-44d3-8bf1-e94e0a6bf71c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bf6d2007-5e0c-4aa2-8cf3-a6bdd6ab668c", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyarumbi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f1b22f18-4fff-468a-b40c-d38b79a4e1e9", + "Order": 1, + "DeletedAt": null, + "EntryId": "bf6d2007-5e0c-4aa2-8cf3-a6bdd6ab668c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "person who comes alongside at the time of death to help the family, becomes like a member of the family", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "grave digger", + "pt": "conveiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b20ff211-0b97-4c30-a961-39e5540f635b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f1b22f18-4fff-468a-b40c-d38b79a4e1e9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e10f84a4-5293-45c0-85be-529583600fa2", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyasa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9a0e9e70-85ee-4730-abd3-06b24cd7f4b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "e10f84a4-5293-45c0-85be-529583600fa2", + "Definition": {}, + "Gloss": { + "en": "gazell", + "pt": "gazela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e462418-98c1-4023-9edc-299134ccf9c4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "9a0e9e70-85ee-4730-abd3-06b24cd7f4b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9f0442e0-e702-4d89-98a1-6b4cb9fe9805", + "DeletedAt": null, + "LexemeForm": { + "seh": "yati" + }, + "CitationForm": { + "seh": "nyati" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e7864414-f020-4453-a46a-a2e783a319bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "9f0442e0-e702-4d89-98a1-6b4cb9fe9805", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Cape buffalo", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Cape buffalo", + "pt": "bu\u0301falo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f6e47575-1e0f-46ad-b18e-5efc1799550e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "e7864414-f020-4453-a46a-a2e783a319bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "637142a1-200e-4496-a5e3-55c0ebc5de13", + "DeletedAt": null, + "LexemeForm": { + "seh": "yatwa" + }, + "CitationForm": { + "seh": "nyatwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ecd8c68d-5241-40e9-93df-05bf46a70474", + "Order": 1, + "DeletedAt": null, + "EntryId": "637142a1-200e-4496-a5e3-55c0ebc5de13", + "Definition": {}, + "Gloss": { + "en": "suffering", + "pt": "sofrimento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4cdb0735-c4bf-4ab8-9eb1-95667fc83167", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyaunthaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "87a4f889-f5e3-4a58-b4d2-851f7994fd50", + "Order": 1, + "DeletedAt": null, + "EntryId": "4cdb0735-c4bf-4ab8-9eb1-95667fc83167", + "Definition": {}, + "Gloss": { + "en": "heir", + "pt": "herdeiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "163c99fd-94f7-4bfe-a672-88fd831e6d3c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:14,32; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "87a4f889-f5e3-4a58-b4d2-851f7994fd50", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4bd22e9d-0246-460b-9c72-8a354ee61623", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyawance" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "713209b8-5687-42da-8a9f-0c4194df9c33", + "Order": 1, + "DeletedAt": null, + "EntryId": "4bd22e9d-0246-460b-9c72-8a354ee61623", + "Definition": {}, + "Gloss": { + "en": "cereal type", + "pt": "tipo cereal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6f57d658-bd0b-4030-80c3-ea054dcef2b6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "713209b8-5687-42da-8a9f-0c4194df9c33", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "44d51b2c-5c95-4c43-928a-3cc583e61c1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyengerer" + }, + "CitationForm": { + "seh": "nyengerera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa3dbb29-03c4-4bbd-9cae-d6d7e43d31c9", + "Order": 1, + "DeletedAt": null, + "EntryId": "44d51b2c-5c95-4c43-928a-3cc583e61c1e", + "Definition": {}, + "Gloss": { + "en": "deceive", + "pt": "enganhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "48a06b6a-5354-48d4-8b80-39a0a450ff47", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "aa3dbb29-03c4-4bbd-9cae-d6d7e43d31c9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "61673e8e-d55c-4d0d-99b4-8e8a1cef008b", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyenyen" + }, + "CitationForm": { + "seh": "nyenyena" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be6b1547-a452-400b-8bfb-b4911b6f3cb9", + "Order": 1, + "DeletedAt": null, + "EntryId": "61673e8e-d55c-4d0d-99b4-8e8a1cef008b", + "Definition": {}, + "Gloss": { + "en": "chew", + "pt": "roer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eb794646-1e34-4aa0-bdce-da744120084d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "be6b1547-a452-400b-8bfb-b4911b6f3cb9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a3b3d633-d4a3-4f8b-b5a0-2c301d971a99", + "DeletedAt": null, + "LexemeForm": { + "seh": "yenyezi" + }, + "CitationForm": { + "seh": "nyenyezi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c903a4d7-2f95-4fe9-908b-9878d753aba3", + "Order": 1, + "DeletedAt": null, + "EntryId": "a3b3d633-d4a3-4f8b-b5a0-2c301d971a99", + "Definition": {}, + "Gloss": { + "en": "star", + "pt": "estrela" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1941734-7d28-4cee-8fc8-5cd27906fb27", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16; Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c903a4d7-2f95-4fe9-908b-9878d753aba3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0aa351f-d56e-40bb-9dbd-91c3327b7585", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyerezer" + }, + "CitationForm": { + "seh": "nyerezera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2d50f802-27d2-438a-8761-fa5c754d237a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0aa351f-d56e-40bb-9dbd-91c3327b7585", + "Definition": { + "en": { + "Spans": [ + { + "Text": "think, reflect", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "think", + "pt": "pensar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3b28eae3-03ff-4875-b265-125a1033e3bd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Jac; Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2d50f802-27d2-438a-8761-fa5c754d237a", + "DeletedAt": null + } + ] + }, + { + "Id": "abc99545-0202-43ed-be8f-7264687ca3e9", + "Order": 2, + "DeletedAt": null, + "EntryId": "e0aa351f-d56e-40bb-9dbd-91c3327b7585", + "Definition": {}, + "Gloss": { + "en": "remember", + "pt": "recordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "511ca549-5c45-48f2-9ceb-d4ce6d86e66b", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Usanyerezera pida cita iwe?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Do you remember what you did?", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Recorda aquele que voces fez?", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "abc99545-0202-43ed-be8f-7264687ca3e9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "54039880-5aa8-45b7-9f25-98acb594db45", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyezek" + }, + "CitationForm": { + "seh": "nyezeka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1325055b-2112-4ca8-8998-c64dd7c06071", + "Order": 1, + "DeletedAt": null, + "EntryId": "54039880-5aa8-45b7-9f25-98acb594db45", + "Definition": {}, + "Gloss": { + "en": "broken", + "pt": "quebrado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "885d6bf6-6316-42bd-9e1f-97cd4e0727ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "yimbo" + }, + "CitationForm": { + "seh": "nyimbo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01066106-cffb-43a3-8bb5-c62b81b88f48", + "Order": 1, + "DeletedAt": null, + "EntryId": "885d6bf6-6316-42bd-9e1f-97cd4e0727ef", + "Definition": {}, + "Gloss": { + "en": "song", + "pt": "canc\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21b070e3-d0b0-4df4-ae76-39be4b50587b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "01066106-cffb-43a3-8bb5-c62b81b88f48", + "DeletedAt": null + } + ] + }, + { + "Id": "83979ad4-d05c-440d-8979-55584e2cd670", + "Order": 2, + "DeletedAt": null, + "EntryId": "885d6bf6-6316-42bd-9e1f-97cd4e0727ef", + "Definition": {}, + "Gloss": { + "en": "hymn", + "pt": "hino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "93c20da6-1bc0-4af5-8080-b424115bc466", + "DeletedAt": null, + "LexemeForm": { + "seh": "nyindir" + }, + "CitationForm": { + "seh": "nyindira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "72f793c5-1b2c-43f0-9754-7dc192c6d153", + "Order": 1, + "DeletedAt": null, + "EntryId": "93c20da6-1bc0-4af5-8080-b424115bc466", + "Definition": {}, + "Gloss": { + "en": "trust", + "pt": "confiar 2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00860aad-7f1d-4cac-b7a8-652cc24df642", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "72f793c5-1b2c-43f0-9754-7dc192c6d153", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c074ea74-6c5a-422e-bd61-25686afa54f0", + "DeletedAt": null, + "LexemeForm": { + "seh": "yoka" + }, + "CitationForm": { + "seh": "nyoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0eab6051-3e88-4006-94c2-bf686688ff8c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c074ea74-6c5a-422e-bd61-25686afa54f0", + "Definition": {}, + "Gloss": { + "en": "snake", + "pt": "serpente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "83b27e1e-ab89-48ce-b74e-0262746b8a97", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "0eab6051-3e88-4006-94c2-bf686688ff8c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a6a15c1e-0d46-4e48-ba62-56f28b185b87", + "DeletedAt": null, + "LexemeForm": { + "seh": "yota" + }, + "CitationForm": { + "seh": "nyota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d7e19fe-4e89-4473-9b0d-b1daf3378f4a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a6a15c1e-0d46-4e48-ba62-56f28b185b87", + "Definition": {}, + "Gloss": { + "en": "thirst", + "pt": "sede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ddae7766-de32-465c-a7be-4a2dd5efa9b4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1d7e19fe-4e89-4473-9b0d-b1daf3378f4a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aee8dece-00ea-4705-9405-384e12faee8e", + "DeletedAt": null, + "LexemeForm": { + "seh": "yumba" + }, + "CitationForm": { + "seh": "nyumba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ceccd7ea-1268-4e04-a017-c929c4c6ccf6", + "Order": 1, + "DeletedAt": null, + "EntryId": "aee8dece-00ea-4705-9405-384e12faee8e", + "Definition": {}, + "Gloss": { + "en": "house", + "pt": "casa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d61f48b1-920d-4bdd-9156-cc938026cf92", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ceccd7ea-1268-4e04-a017-c929c4c6ccf6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cd913fd4-9c6a-4afb-bc2a-fbd6b1d70e85", + "DeletedAt": null, + "LexemeForm": { + "seh": "nzawo" + }, + "CitationForm": { + "seh": "nzace" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2c910b6c-cf3c-4bd5-b975-55217a5e15f3", + "Order": 1, + "DeletedAt": null, + "EntryId": "cd913fd4-9c6a-4afb-bc2a-fbd6b1d70e85", + "Definition": {}, + "Gloss": { + "en": "companion", + "pt": "companheiro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "df3324cb-61a2-4cf0-a339-922baea302e8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2c910b6c-cf3c-4bd5-b975-55217a5e15f3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9fb811ea-34bc-49a8-81c5-7993ea219da6", + "DeletedAt": null, + "LexemeForm": { + "seh": "zakazi" + }, + "CitationForm": { + "seh": "nzakazi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "16f52de8-f3c0-4eb0-bb16-e5ead6689294", + "Order": 1, + "DeletedAt": null, + "EntryId": "9fb811ea-34bc-49a8-81c5-7993ea219da6", + "Definition": {}, + "Gloss": { + "en": "slave", + "pt": "escravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3cf77dea-7c50-499f-8953-deafaa30452d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "16f52de8-f3c0-4eb0-bb16-e5ead6689294", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "651b37c1-2b3c-409c-bab2-2b1193ab0c38", + "DeletedAt": null, + "LexemeForm": { + "seh": "zimu" + }, + "CitationForm": { + "seh": "nzimu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "307e4826-e570-4309-a661-0c09ce55f8ee", + "Order": 1, + "DeletedAt": null, + "EntryId": "651b37c1-2b3c-409c-bab2-2b1193ab0c38", + "Definition": { + "en": { + "Spans": [ + { + "Text": "ancestor spirit", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "espirito de antepassado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "spirit", + "pt": "espirito" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1cb79293-d4f7-4990-9f50-3bb595744f61", + "Name": { + "en": "Soul, spirit" + }, + "Code": "3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f6c81fb-02a4-415f-a363-fb11cc6b9254", + "Name": { + "en": "Supernatural being" + }, + "Code": "4.9.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "c4cf426b-d3db-4e3e-929e-7aa534e217fa", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nzimwace akwata Mulungu. (Heins:98)", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Deus levou o espi\u0301rito dele.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4", + "Ws": "en" + } + ] + }, + "SenseId": "307e4826-e570-4309-a661-0c09ce55f8ee", + "DeletedAt": null + } + ] + }, + { + "Id": "e1fae09d-3261-4997-872c-f478b9ee9c7b", + "Order": 2, + "DeletedAt": null, + "EntryId": "651b37c1-2b3c-409c-bab2-2b1193ab0c38", + "Definition": {}, + "Gloss": { + "en": "human soul", + "pt": "alma humana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5d7466b7-b566-4df9-babc-ee52ee9aab59", + "DeletedAt": null, + "LexemeForm": { + "seh": "zou" + }, + "CitationForm": { + "seh": "nzou" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3e08d5cd-0d4b-4a8d-a2da-30e0c85d4309", + "Order": 1, + "DeletedAt": null, + "EntryId": "5d7466b7-b566-4df9-babc-ee52ee9aab59", + "Definition": {}, + "Gloss": { + "en": "elephant", + "pt": "elefante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dcf393d6-838f-4e7d-b2fd-72e59338aef1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16 ndzou; Wordlist nzou", + "Ws": "en" + } + ] + }, + "SenseId": "3e08d5cd-0d4b-4a8d-a2da-30e0c85d4309", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "75361262-037f-45c6-82f8-53617a4c4566", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungu" + }, + "CitationForm": { + "seh": "nzungu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "43eb9d22-183b-4e8f-8b62-76711d9d9c4e", + "Order": 1, + "DeletedAt": null, + "EntryId": "75361262-037f-45c6-82f8-53617a4c4566", + "Definition": {}, + "Gloss": { + "en": "white person", + "pt": "pessoa branco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b9eb2cf-915d-4f70-8c01-97be5a591110", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "43eb9d22-183b-4e8f-8b62-76711d9d9c4e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "699a9535-a304-48ff-a2ba-355102edc41f", + "DeletedAt": null, + "LexemeForm": { + "seh": "o" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "7fdfd1bd-5073-4c74-8d99-a0272b0b7817", + "Order": 1, + "DeletedAt": null, + "EntryId": "699a9535-a304-48ff-a2ba-355102edc41f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "indicates the result or outcome of an action", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "action", + "pt": "acc\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "06314ba4-c1dc-4a15-b24d-c49dffed2e9e", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "cipwazo", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "despising", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "7fdfd1bd-5073-4c74-8d99-a0272b0b7817", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41d09df3-8c11-4be4-b1f3-485649545e2a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ombol" + }, + "CitationForm": { + "seh": "ombola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "01660702-0cff-44c1-bca0-7299180d70d3", + "Order": 1, + "DeletedAt": null, + "EntryId": "41d09df3-8c11-4be4-b1f3-485649545e2a", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "salvar pessoa duma crise", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "free", + "pt": "livrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3403fa76-8703-4476-b872-c0b7eb53eb83", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "01660702-0cff-44c1-bca0-7299180d70d3", + "DeletedAt": null + } + ] + }, + { + "Id": "c8df1ccd-8f18-4c95-a4e3-04c0f25a714e", + "Order": 2, + "DeletedAt": null, + "EntryId": "41d09df3-8c11-4be4-b1f3-485649545e2a", + "Definition": {}, + "Gloss": { + "en": "save", + "pt": "salvar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a720a295-aa60-43e3-901a-23db69fc113f", + "DeletedAt": null, + "LexemeForm": { + "seh": "on" + }, + "CitationForm": { + "seh": "ona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fe25565c-e101-47c5-b92e-2f699c7f72c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "a720a295-aa60-43e3-901a-23db69fc113f", + "Definition": {}, + "Gloss": { + "en": "see", + "pt": "ver" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "119a010b-4110-4052-aa1a-c0b7d0e108d3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "fe25565c-e101-47c5-b92e-2f699c7f72c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65420ebf-20d7-4881-b799-9944cd7b881f", + "DeletedAt": null, + "LexemeForm": { + "seh": "oneka" + }, + "CitationForm": { + "seh": "onekF" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "bb3908d9-79a1-4af3-a976-06db433da5a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "65420ebf-20d7-4881-b799-9944cd7b881f", + "Definition": {}, + "Gloss": { + "en": "happen", + "pt": "acontece" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b533926-c366-48bb-ae1f-c57aecdee670", + "DeletedAt": null, + "LexemeForm": { + "seh": "wongo" + }, + "CitationForm": { + "seh": "ongo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f5a038ca-f12d-4786-a7b5-76cb62c0c806", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b533926-c366-48bb-ae1f-c57aecdee670", + "Definition": {}, + "Gloss": { + "en": "brain", + "pt": "ce\u0301rebro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9bbd91e8-d4b9-4fe9-b2d1-cccf975dab99", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f5a038ca-f12d-4786-a7b5-76cb62c0c806", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "48ea4cc9-6b60-4f40-8b8e-2c25e411fc8f", + "DeletedAt": null, + "LexemeForm": { + "seh": "onsene" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5f08fd4c-f27d-4990-959b-ded9fc67887f", + "Order": 1, + "DeletedAt": null, + "EntryId": "48ea4cc9-6b60-4f40-8b8e-2c25e411fc8f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "all , everyone, everything", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "toda , todo, tudo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "all", + "pt": "todo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1f91e178-6f81-42b3-8fe0-eedcf226372b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5f08fd4c-f27d-4990-959b-ded9fc67887f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "adf6a3e4-04ca-4f59-ae11-6127351ee694", + "DeletedAt": null, + "LexemeForm": { + "seh": "pa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "511d1db3-ef9e-4974-b86d-dd7049adc3cf", + "Order": 1, + "DeletedAt": null, + "EntryId": "adf6a3e4-04ca-4f59-ae11-6127351ee694", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "DeletedAt": null, + "LexemeForm": { + "seh": "pa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "3f732700-6604-407b-9561-5679466fd816", + "Order": 1, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "at", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "a\u0301", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3fa0cb72-e407-45bc-a90f-38adc5041151", + "Order": 2, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "ea73ff7d-66be-492b-8932-ac0a9f169045", + "Order": 3, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d063c9c8-0783-4e95-815a-80c2d90a0685", + "Order": 4, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a79dae5d-2a1f-466c-91e2-16dd9ba73ea3", + "Order": 5, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "0f2ca062-34a9-4860-a750-ba6b2e746e1b", + "Order": 6, + "DeletedAt": null, + "EntryId": "d872c839-a64e-4d3f-bfcc-42e436ab648f", + "Definition": {}, + "Gloss": { + "en": "16", + "pt": "16" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c72f0def-ba21-4e71-b599-1fac8a7aac78", + "DeletedAt": null, + "LexemeForm": { + "seh": "dambo" + }, + "CitationForm": { + "seh": "padambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ddff3979-8797-4434-a5cd-d9cc036eec8c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c72f0def-ba21-4e71-b599-1fac8a7aac78", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area just outside of the house", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "yard", + "pt": "quintal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b2c99262-c521-4f33-855e-438f5aa5a95c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kuna munthu kudambo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Esta\u0301 alguem fora de casa.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ddff3979-8797-4434-a5cd-d9cc036eec8c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "35f6824e-2c78-4cab-97b1-431276e53d06", + "DeletedAt": null, + "LexemeForm": { + "seh": "dzulu" + }, + "CitationForm": { + "seh": "padzulu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "085bd1d5-7d44-49ce-b2f1-d99e07f27725", + "Order": 1, + "DeletedAt": null, + "EntryId": "35f6824e-2c78-4cab-97b1-431276e53d06", + "Definition": {}, + "Gloss": { + "en": "on top of", + "pt": "em cima de" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ae92e3a9-0028-4c78-849f-8ad8090d961d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Moreira p24", + "Ws": "en" + } + ] + }, + "SenseId": "085bd1d5-7d44-49ce-b2f1-d99e07f27725", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e3b156d-fd40-4b66-87f7-2f849cf2fdc2", + "DeletedAt": null, + "LexemeForm": { + "seh": "pafupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e41243fa-94bb-4fea-9ff7-b6fd65218271", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e3b156d-fd40-4b66-87f7-2f849cf2fdc2", + "Definition": {}, + "Gloss": { + "en": "near", + "pt": "perto de" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dc422def-6671-4793-a2c5-df1f6c0ba0c9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Asakala pafupi na ine.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Viva perto de mim.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "e41243fa-94bb-4fea-9ff7-b6fd65218271", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "222c6df8-a053-4535-957c-011e95da4362", + "DeletedAt": null, + "LexemeForm": { + "seh": "paka" + }, + "CitationForm": { + "seh": "paka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fdd9782e-30a8-4beb-ae64-e0b6a49d4611", + "Order": 1, + "DeletedAt": null, + "EntryId": "222c6df8-a053-4535-957c-011e95da4362", + "Definition": { + "en": { + "Spans": [ + { + "Text": "domestic cat", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "gato domestico", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "cat", + "pt": "gato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "49c878dd-277f-4bc9-b8ad-9ba192709108", + "Name": { + "en": "Cat" + }, + "Code": "6.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56ef3f06-7fb9-462e-a7d0-517f3ce1623f", + "Name": { + "en": "Carnivore" + }, + "Code": "1.6.1.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "eec2a28e-a8fb-4964-bfe2-70f4d57dd19f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "fdd9782e-30a8-4beb-ae64-e0b6a49d4611", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9a4d7d7-df81-42f9-9d11-0252f6237675", + "DeletedAt": null, + "LexemeForm": { + "seh": "pak" + }, + "CitationForm": { + "seh": "paka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31eae4ca-af01-4b5f-b43e-7030a1904e30", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9a4d7d7-df81-42f9-9d11-0252f6237675", + "Definition": {}, + "Gloss": { + "en": "organize", + "pt": "organizar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b547aff2-cc47-439a-8b34-9f7df414411f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "31eae4ca-af01-4b5f-b43e-7030a1904e30", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21390618-b38c-4e29-af2d-eff40efa0749", + "DeletedAt": null, + "LexemeForm": { + "seh": "paka bonga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "10bf25f6-c827-4e17-b1a8-77abcee2c7d5", + "Order": 1, + "DeletedAt": null, + "EntryId": "21390618-b38c-4e29-af2d-eff40efa0749", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild cat; African Wild Cat", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "cat", + "pt": "gato bravo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bcde0e03-55aa-4db9-827e-e734d61fdf12", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "10bf25f6-c827-4e17-b1a8-77abcee2c7d5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "142d18ef-1d34-4cc0-9325-e8cbfa134934", + "DeletedAt": null, + "LexemeForm": { + "seh": "pakati_na_kati" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b56a7877-3732-479b-981e-13bde2cf3199", + "Order": 1, + "DeletedAt": null, + "EntryId": "142d18ef-1d34-4cc0-9325-e8cbfa134934", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the very middle", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "no meio mesmo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "middle", + "pt": "no meio" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9b35c2f4-a264-4b1a-8482-d7314c20c915", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwadia walowa mbuli pakati-na-kati.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "A canoa fundou-se no meio.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "b56a7877-3732-479b-981e-13bde2cf3199", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56450014-7d28-4af1-8a01-528d36d9f4b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "paketi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a1c424c-57fe-4c5e-bbfa-4a5f46f3ad04", + "Order": 1, + "DeletedAt": null, + "EntryId": "56450014-7d28-4af1-8a01-528d36d9f4b2", + "Definition": {}, + "Gloss": { + "en": "ship", + "pt": "na\u0301vio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "155d30e6-2668-41d6-8978-99afe2083780", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2a1c424c-57fe-4c5e-bbfa-4a5f46f3ad04", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dc14a063-4beb-40be-93b8-906cc1e02ffd", + "DeletedAt": null, + "LexemeForm": { + "seh": "pakil" + }, + "CitationForm": { + "seh": "pakila" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3f9ab123-8e44-4b7d-8751-036addaa3924", + "Order": 1, + "DeletedAt": null, + "EntryId": "dc14a063-4beb-40be-93b8-906cc1e02ffd", + "Definition": {}, + "Gloss": { + "en": "embark", + "pt": "embarcar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f5272912-8600-4c5b-89d4-73492e363881", + "DeletedAt": null, + "LexemeForm": { + "seh": "pakweca" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "69dd5abb-75c8-43c9-a9de-e9d0a54d0f5f", + "Order": 1, + "DeletedAt": null, + "EntryId": "f5272912-8600-4c5b-89d4-73492e363881", + "Definition": {}, + "Gloss": { + "en": "in the open", + "pt": "a\u0300 vista" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a1b2dcc-a250-46c8-8ce9-1228d9d80928", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Abisala pakweca", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Escondeu poco \u0027a vista (hid it where it could be seen)", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24 (says in public); Nyazeze says \u0027a vista", + "Ws": "en" + } + ] + }, + "SenseId": "69dd5abb-75c8-43c9-a9de-e9d0a54d0f5f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7af6916d-b7dd-4e57-92d2-f80194156e12", + "DeletedAt": null, + "LexemeForm": { + "seh": "pale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "eacb0398-8ba6-4bad-a412-7e3d0eec8026", + "Order": 1, + "DeletedAt": null, + "EntryId": "7af6916d-b7dd-4e57-92d2-f80194156e12", + "Definition": {}, + "Gloss": { + "en": "there", + "pt": "ali\u0301" + }, + "PartOfSpeech": { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2ba081c9-876c-47c3-8c95-93622922a6de", + "DeletedAt": null, + "LexemeForm": { + "seh": "pambul" + }, + "CitationForm": { + "seh": "pambula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce86d5d3-44ed-43d9-8a49-ec1fcf09b1ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "2ba081c9-876c-47c3-8c95-93622922a6de", + "Definition": {}, + "Gloss": { + "en": "separate", + "pt": "separar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c77fb145-1e73-4839-98ea-92b7a20aaa65", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ce86d5d3-44ed-43d9-8a49-ec1fcf09b1ec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5472df2-f6fd-4590-aff5-2640810b47cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "pana" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1be67c1d-65da-45ae-b21e-51fd0de3c0c3", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5472df2-f6fd-4590-aff5-2640810b47cf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in the presence of", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "na presenca de", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "with", + "pt": "com" + }, + "PartOfSpeech": { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "24f4134f-0530-449c-b809-8a633ced440d", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "18309613-9a02-4aa8-a074-0bfa67cd6fff", + "DeletedAt": null, + "LexemeForm": { + "seh": "pandir" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "dd06cc0b-c6f0-4a06-82e1-f2148e3ed54e", + "Order": 1, + "DeletedAt": null, + "EntryId": "18309613-9a02-4aa8-a074-0bfa67cd6fff", + "Definition": { + "en": { + "Spans": [ + { + "Text": "come up out of the water", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "come up", + "pt": "ascender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "not sure of definition", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "65f5143a-51f8-4075-a1c5-3d53f8146237", + "DeletedAt": null, + "LexemeForm": { + "seh": "panduk" + }, + "CitationForm": { + "seh": "panduka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "af2f2f67-3c07-40eb-b0e9-a6666c9851be", + "Order": 1, + "DeletedAt": null, + "EntryId": "65f5143a-51f8-4075-a1c5-3d53f8146237", + "Definition": {}, + "Gloss": { + "en": "tear", + "pt": "rasgar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "57231790-5ed8-4ea7-a85b-2b1af0146e51", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "af2f2f67-3c07-40eb-b0e9-a6666c9851be", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "76b91e5b-7325-49ae-b2a0-dbc900330ea0", + "DeletedAt": null, + "LexemeForm": { + "seh": "pandul" + }, + "CitationForm": { + "seh": "pandula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "123cfb49-e66b-4a7e-9997-0d690f191eb1", + "Order": 1, + "DeletedAt": null, + "EntryId": "76b91e5b-7325-49ae-b2a0-dbc900330ea0", + "Definition": {}, + "Gloss": { + "en": "split", + "pt": "rachar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "445af6b4-65bb-470c-af73-c6883832b4d9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "123cfb49-e66b-4a7e-9997-0d690f191eb1", + "DeletedAt": null + } + ] + }, + { + "Id": "510fd70c-f3b5-4486-a739-ea40c1013314", + "Order": 2, + "DeletedAt": null, + "EntryId": "76b91e5b-7325-49ae-b2a0-dbc900330ea0", + "Definition": {}, + "Gloss": { + "en": "tear", + "pt": "rasgar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9fbd7eee-a680-44a8-a832-2e544d3615c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "pang\u0027ono-pang\u0027ono" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9422102a-ec7f-49ec-a216-c9d0d99a6581", + "Order": 1, + "DeletedAt": null, + "EntryId": "9fbd7eee-a680-44a8-a832-2e544d3615c3", + "Definition": {}, + "Gloss": { + "en": "slowly", + "pt": "devagar" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9af7314-ccfb-4fe7-b5d2-2c22b6c89acc", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ddisafamba pang\u0027ono-pang\u0027ono.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ando devagar.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "9422102a-ec7f-49ec-a216-c9d0d99a6581", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "63d6139e-0347-435b-9138-63f3640381e6", + "DeletedAt": null, + "LexemeForm": { + "seh": "pang" + }, + "CitationForm": { + "seh": "panga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc18e2d7-e581-4fae-bdeb-d70406e2c2bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "63d6139e-0347-435b-9138-63f3640381e6", + "Definition": {}, + "Gloss": { + "en": "say", + "pt": "dizer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d2523d31-53b3-4587-b62b-c0d10980dc85", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cc18e2d7-e581-4fae-bdeb-d70406e2c2bc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebf9c8d1-440e-41a0-83d1-892d64cb9c61", + "DeletedAt": null, + "LexemeForm": { + "seh": "pangan" + }, + "CitationForm": { + "seh": "pangana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e18ad564-feaf-4720-86dd-505f28398a27", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebf9c8d1-440e-41a0-83d1-892d64cb9c61", + "Definition": {}, + "Gloss": { + "en": "say goodbye", + "pt": "despedir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c3ab87e7-7de0-403e-aebf-83a762c25191", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "e18ad564-feaf-4720-86dd-505f28398a27", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "257a2df2-04c4-4524-a893-a7686c897092", + "DeletedAt": null, + "LexemeForm": { + "seh": "panganizan" + }, + "CitationForm": { + "seh": "panganizana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "288640d4-e9da-429d-ae09-563930a2ff83", + "Order": 1, + "DeletedAt": null, + "EntryId": "257a2df2-04c4-4524-a893-a7686c897092", + "Definition": {}, + "Gloss": { + "en": "say goodbye", + "pt": "despedir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5e31b84-01a5-48da-827f-c5edffcc66d6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "288640d4-e9da-429d-ae09-563930a2ff83", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45f75244-8464-4fdb-93ec-18a5a8425189", + "DeletedAt": null, + "LexemeForm": { + "seh": "pangiz" + }, + "CitationForm": { + "seh": "pangiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "50d9fda5-66fd-4161-afdc-e43a62fbf669", + "Order": 1, + "DeletedAt": null, + "EntryId": "45f75244-8464-4fdb-93ec-18a5a8425189", + "Definition": {}, + "Gloss": { + "en": "show", + "pt": "mostrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "19987244-b1aa-42ca-95f0-f0eb67c2e87f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "50d9fda5-66fd-4161-afdc-e43a62fbf669", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6efbec30-8255-4bd3-89c4-cdc5ee41d764", + "DeletedAt": null, + "LexemeForm": { + "seh": "nja" + }, + "CitationForm": { + "seh": "panja" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4e05471f-c25c-49b6-bde0-ef91ee7a87d7", + "Order": 1, + "DeletedAt": null, + "EntryId": "6efbec30-8255-4bd3-89c4-cdc5ee41d764", + "Definition": {}, + "Gloss": { + "en": "outside of", + "pt": "fora de" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f696a0aa-7975-41cf-84cd-5c4ba9b659c4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4e05471f-c25c-49b6-bde0-ef91ee7a87d7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "712b9c10-d811-49b9-82c4-e601a13c5091", + "DeletedAt": null, + "LexemeForm": { + "seh": "ntsi" + }, + "CitationForm": { + "seh": "pantsi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d761126d-b38c-44ee-99c5-fcca3c1d8595", + "Order": 1, + "DeletedAt": null, + "EntryId": "712b9c10-d811-49b9-82c4-e601a13c5091", + "Definition": { + "en": { + "Spans": [ + { + "Text": "underneath, at the bottom", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "down", + "pt": "em baixo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3fd8a580-74de-46c3-aad9-744f8951da92", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Kalani pantsi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Sit down please.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Sente-se aqui.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d761126d-b38c-44ee-99c5-fcca3c1d8595", + "DeletedAt": null + } + ] + }, + { + "Id": "169ce7e6-e82d-4e74-8ac1-3c36f8882e71", + "Order": 2, + "DeletedAt": null, + "EntryId": "712b9c10-d811-49b9-82c4-e601a13c5091", + "Definition": {}, + "Gloss": { + "en": "on the ground", + "pt": "no cha\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c969339a-41d8-4f20-a745-59b5fbf99c07", + "DeletedAt": null, + "LexemeForm": { + "seh": "pedzi" + }, + "CitationForm": { + "seh": "papedzi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef2a35dd-f9b5-4411-83b0-947b8f42060d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c969339a-41d8-4f20-a745-59b5fbf99c07", + "Definition": {}, + "Gloss": { + "en": "lying", + "pt": "em va\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b79582fc-1942-49ea-a62f-c669e8bb3178", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ef2a35dd-f9b5-4411-83b0-947b8f42060d", + "DeletedAt": null + } + ] + }, + { + "Id": "8785332a-5ca6-4ff9-b13a-1c8788ce703e", + "Order": 2, + "DeletedAt": null, + "EntryId": "c969339a-41d8-4f20-a745-59b5fbf99c07", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a place that has nothing", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "empty", + "pt": "vazio" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0e39c805-c796-4fe3-bafe-3c916055c9bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "papi" + }, + "CitationForm": { + "seh": "papi?" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7b954282-dabd-4a06-bfd7-4ab1d972d915", + "Order": 1, + "DeletedAt": null, + "EntryId": "0e39c805-c796-4fe3-bafe-3c916055c9bd", + "Definition": {}, + "Gloss": { + "en": "where?", + "pt": "onde?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "929b624f-dddf-402b-9a93-5e20f0b5bb5a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mandiceka papi? Mandiceka kupi?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Onde no corpo cortou-me? Em que zona de terra me cortou?", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1; Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "7b954282-dabd-4a06-bfd7-4ab1d972d915", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2ae1253b-2aa1-4c9a-bea7-f7c0f4bc46b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "parata" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d196009f-a66a-4004-9a72-cfb51309720a", + "Order": 1, + "DeletedAt": null, + "EntryId": "2ae1253b-2aa1-4c9a-bea7-f7c0f4bc46b7", + "Definition": {}, + "Gloss": { + "en": "silver", + "pt": "prata" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3860d159-d064-478c-9b07-78d3ed0bf924", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d196009f-a66a-4004-9a72-cfb51309720a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5bd31e68-8d84-44a3-b328-adfdecdf0aee", + "DeletedAt": null, + "LexemeForm": { + "seh": "paratu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "39572c63-f53e-474b-bbcb-f16a69029fd3", + "Order": 1, + "DeletedAt": null, + "EntryId": "5bd31e68-8d84-44a3-b328-adfdecdf0aee", + "Definition": {}, + "Gloss": { + "en": "plate", + "pt": "prato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf78dd6b-09f2-4ebb-89e4-1028cc77a714", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "39572c63-f53e-474b-bbcb-f16a69029fd3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7ba2ebe-9e6b-4a90-b837-7b58cb3e4609", + "DeletedAt": null, + "LexemeForm": { + "seh": "pas" + }, + "CitationForm": { + "seh": "pasa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d578529c-8a83-4ee1-b74c-6818d74f6761", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7ba2ebe-9e6b-4a90-b837-7b58cb3e4609", + "Definition": {}, + "Gloss": { + "en": "give", + "pt": "dar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a41f633-ab9c-4636-a344-bc36f60c0438", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d578529c-8a83-4ee1-b74c-6818d74f6761", + "DeletedAt": null + } + ] + }, + { + "Id": "85493eee-1e87-42b3-97f3-de8668ed9d5e", + "Order": 2, + "DeletedAt": null, + "EntryId": "f7ba2ebe-9e6b-4a90-b837-7b58cb3e4609", + "Definition": {}, + "Gloss": { + "en": "serve", + "pt": "servir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3943d4e-1e52-44c6-b245-65b5f29e1887", + "DeletedAt": null, + "LexemeForm": { + "seh": "patali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "75d60067-185b-4e4c-98a1-a0c8d39f3f31", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3943d4e-1e52-44c6-b245-65b5f29e1887", + "Definition": {}, + "Gloss": { + "en": "far away", + "pt": "muito longe" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b41fddf7-8865-4981-9454-1299b039d348", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "75d60067-185b-4e4c-98a1-a0c8d39f3f31", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c4fe8236-caa5-46c1-9308-9ae6e65a395e", + "DeletedAt": null, + "LexemeForm": { + "seh": "patat" + }, + "CitationForm": { + "seh": "patata" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "65861da3-3916-4daa-83ed-56289478af5e", + "Order": 1, + "DeletedAt": null, + "EntryId": "c4fe8236-caa5-46c1-9308-9ae6e65a395e", + "Definition": {}, + "Gloss": { + "en": "pillage", + "pt": "sacar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4cb3c0af-d605-4217-8594-c13decfb48d6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "65861da3-3916-4daa-83ed-56289478af5e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8a47a8c4-5002-44cf-874d-ddf630cf2bd6", + "DeletedAt": null, + "LexemeForm": { + "seh": "patsogolo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7871daba-766d-4236-a452-353b1d106d6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "8a47a8c4-5002-44cf-874d-ddf630cf2bd6", + "Definition": {}, + "Gloss": { + "en": "in front of", + "pt": "frente" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b36d4e25-2170-4813-9388-728cacb68c60", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7871daba-766d-4236-a452-353b1d106d6f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cffdc161-6b27-486a-9547-ce90cea6b705", + "DeletedAt": null, + "LexemeForm": { + "seh": "pember" + }, + "CitationForm": { + "seh": "pembera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "954048a2-1a8e-44cb-8203-8b52aa29c3f0", + "Order": 1, + "DeletedAt": null, + "EntryId": "cffdc161-6b27-486a-9547-ce90cea6b705", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "ganhar raza\u0303o no acusac\u0327a\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "proved innocent", + "pt": "provado inocente" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84", + "Name": { + "en": "Acquit" + }, + "Code": "4.7.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "6b39e8b4-6994-413c-9915-2c03ca043418", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "954048a2-1a8e-44cb-8203-8b52aa29c3f0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ed4db00-cf99-4bca-9df0-7cd8bb8dedb8", + "DeletedAt": null, + "LexemeForm": { + "seh": "penepi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d016eb89-0061-448c-aa42-5890289bb9ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ed4db00-cf99-4bca-9df0-7cd8bb8dedb8", + "Definition": {}, + "Gloss": { + "en": "this very one", + "pt": "este mesmo" + }, + "PartOfSpeech": { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6114523a-b2d9-45b7-bf31-6858624112b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "penepo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "84fb19ee-6e27-40c3-b5f4-c7cc6025d636", + "Order": 1, + "DeletedAt": null, + "EntryId": "6114523a-b2d9-45b7-bf31-6858624112b3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "at that very one or place", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "at that very place", + "pt": "ali\u0301 mesmo" + }, + "PartOfSpeech": { + "Id": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "Name": { + "en": "Demonstrative6", + "pt": "Demonstrativo6" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2976cd0f-f9a0-486b-a025-0142ab9888fb", + "DeletedAt": null, + "LexemeForm": { + "seh": "peno" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "81cc027d-824b-4fc1-9808-36d64a737ac2", + "Order": 1, + "DeletedAt": null, + "EntryId": "2976cd0f-f9a0-486b-a025-0142ab9888fb", + "Definition": {}, + "Gloss": { + "en": "or", + "pt": "ou" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f09b07d2-74c5-466c-b0f8-043214518db0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Jac; Meque", + "Ws": "en" + } + ] + }, + "SenseId": "81cc027d-824b-4fc1-9808-36d64a737ac2", + "DeletedAt": null + } + ] + }, + { + "Id": "d8a94a11-85f5-4067-88ef-1d5c78b4da4a", + "Order": 2, + "DeletedAt": null, + "EntryId": "2976cd0f-f9a0-486b-a025-0142ab9888fb", + "Definition": {}, + "Gloss": { + "en": "I don\u0027t know", + "pt": "na\u0303o sei" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "656de5b9-9346-42a1-835a-2c6ef748dfde", + "DeletedAt": null, + "LexemeForm": { + "seh": "penul" + }, + "CitationForm": { + "seh": "penula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "84e0a019-cb57-458a-823e-d32007d7a545", + "Order": 1, + "DeletedAt": null, + "EntryId": "656de5b9-9346-42a1-835a-2c6ef748dfde", + "Definition": {}, + "Gloss": { + "en": "doubt", + "pt": "duvidar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "785d81bc-bb91-4c44-8c45-22633225cd61", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "84e0a019-cb57-458a-823e-d32007d7a545", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eff2c77d-7d33-419e-a904-b75012cad660", + "DeletedAt": null, + "LexemeForm": { + "seh": "pepes" + }, + "CitationForm": { + "seh": "pepesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5cadb5a3-cbd7-46b5-b4cb-ef93b8ffd14b", + "Order": 1, + "DeletedAt": null, + "EntryId": "eff2c77d-7d33-419e-a904-b75012cad660", + "Definition": {}, + "Gloss": { + "en": "blow", + "pt": "soprar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6e91eb37-077a-4378-8c5f-193df49b8748", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist (phephesa); Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5cadb5a3-cbd7-46b5-b4cb-ef93b8ffd14b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "506595a3-0e16-4ffa-bb23-468da292b7b8", + "DeletedAt": null, + "LexemeForm": { + "seh": "perek" + }, + "CitationForm": { + "seh": "pereka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9462d765-6d98-4b26-9e9b-bb4a4d2ee805", + "Order": 1, + "DeletedAt": null, + "EntryId": "506595a3-0e16-4ffa-bb23-468da292b7b8", + "Definition": {}, + "Gloss": { + "en": "hand over", + "pt": "entregar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5ed68589-d763-4fa7-912f-22ce6f531434", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musapereka takhuta kuna Mulungu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "9462d765-6d98-4b26-9e9b-bb4a4d2ee805", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6970b4ee-5729-4b47-8953-96ffa37e3676", + "DeletedAt": null, + "LexemeForm": { + "seh": "pereker" + }, + "CitationForm": { + "seh": "perekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cbd52040-b1d0-4c01-af17-accc2d5ae22e", + "Order": 1, + "DeletedAt": null, + "EntryId": "6970b4ee-5729-4b47-8953-96ffa37e3676", + "Definition": {}, + "Gloss": { + "en": "accompany", + "pt": "acompanhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5d542915-85b4-4834-8282-c027e3b9451d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "cbd52040-b1d0-4c01-af17-accc2d5ae22e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "DeletedAt": null, + "LexemeForm": { + "seh": "pezi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", + "Order": 1, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "false", + "pt": "falso" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "22298b53-d837-4cb3-9dd7-213d684a0690", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "mulungu wa pezi, a lungu a pezi, cinthu ca pezi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "deus falso, deuses falsas, coisa falsa", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazezep", + "Ws": "en" + } + ] + }, + "SenseId": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", + "DeletedAt": null + }, + { + "Id": "9fda8e92-8c0c-452c-a5e3-e5173f33135b", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b07ded6-550b-4f7c-8b94-79c47e2e0d20", + "DeletedAt": null + } + ] + }, + { + "Id": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", + "Order": 2, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "in vain", + "pt": "em va\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3cd6d639-85da-411c-bd79-4c6074369ecf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkhabe cakudya, ndalimira pezi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o ha\u0301 comida, cultivei em va\u0303o.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c30d7bb6-2454-49ab-aa34-9a6cdf1ec217", + "DeletedAt": null + } + ] + }, + { + "Id": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", + "Order": 3, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "freely", + "pt": "de grac\u0327a" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "67890ef6-b55b-40c4-a498-33704a1d49d2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwapasiwa pezi, apasenimbo pezi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Receberam de grac\u0327a, de-los de grac\u0327a", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "94bd8e8e-c714-4bc1-883b-b48fceac6f36", + "DeletedAt": null + } + ] + }, + { + "Id": "d4106031-2175-4339-951b-86db166cd624", + "Order": 4, + "DeletedAt": null, + "EntryId": "337400c9-f082-4a4e-b0bf-34dd3077916f", + "Definition": {}, + "Gloss": { + "en": "if not", + "pt": "sena\u0303o" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "52059fd0-2ef2-4b2c-9c5b-35214da1cb40", + "DeletedAt": null, + "LexemeForm": { + "seh": "pezi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "71fcd994-9fdf-41b5-a70e-4fff1395ec6b", + "Order": 1, + "DeletedAt": null, + "EntryId": "52059fd0-2ef2-4b2c-9c5b-35214da1cb40", + "Definition": {}, + "Gloss": { + "en": "nude", + "pt": "nu\u0301" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "625f5c1d-2c59-41ca-92f5-08baf7a69a2f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Munthu ali pezi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Person is nude.", + "Ws": "pt" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Pessoa esta\u0301 nu\u0301.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "71fcd994-9fdf-41b5-a70e-4fff1395ec6b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c0cd8307-88e0-4cb0-b719-819073a90562", + "DeletedAt": null, + "LexemeForm": { + "seh": "fafa" + }, + "CitationForm": { + "seh": "pfafa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "73ac71aa-df75-446e-9939-6baced57d246", + "Order": 1, + "DeletedAt": null, + "EntryId": "c0cd8307-88e0-4cb0-b719-819073a90562", + "Definition": {}, + "Gloss": { + "en": "liver", + "pt": "figado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "efd5c156-2c49-429b-b06f-b91bc2aa3595", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist, George", + "Ws": "en" + } + ] + }, + "SenseId": "73ac71aa-df75-446e-9939-6baced57d246", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57297a7e-451b-4411-a575-6a36a974a626", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfigu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca4a133b-e0f9-4a56-b60f-16718a39ddae", + "Order": 1, + "DeletedAt": null, + "EntryId": "57297a7e-451b-4411-a575-6a36a974a626", + "Definition": {}, + "Gloss": { + "en": "banana", + "pt": "banana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "49084a0c-55e5-432e-8c07-a5288d9b8d31", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ca4a133b-e0f9-4a56-b60f-16718a39ddae", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ad6b068f-bf71-4f91-8a17-438a194c5a2d", + "DeletedAt": null, + "LexemeForm": { + "seh": "fua" + }, + "CitationForm": { + "seh": "pfua" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e8eff102-aef9-45bf-94e7-aa718bf94a73", + "Order": 1, + "DeletedAt": null, + "EntryId": "ad6b068f-bf71-4f91-8a17-438a194c5a2d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a pyramidal stone used to hold pots over a cooking fire", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hearth stone", + "pt": "pedra de lar" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fdc8643e-4d23-41ac-a2ea-a39de3a221fd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,19; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e8eff102-aef9-45bf-94e7-aa718bf94a73", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8bb6d076-92e1-4f15-af15-2f01acba2088", + "DeletedAt": null, + "LexemeForm": { + "seh": "fufu" + }, + "CitationForm": { + "seh": "pfufu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ac4751d-c0f9-40c7-ad01-f392c2424abd", + "Order": 1, + "DeletedAt": null, + "EntryId": "8bb6d076-92e1-4f15-af15-2f01acba2088", + "Definition": {}, + "Gloss": { + "en": "wall", + "pt": "parede" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c1acbdaa-a19e-4df7-b3d8-f144e2ba879d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1ac4751d-c0f9-40c7-ad01-f392c2424abd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "412c22a5-5840-49ac-af40-2fdbb93501ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfum" + }, + "CitationForm": { + "seh": "pfuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6e831179-7140-424a-8de9-4f64dc62f902", + "Order": 1, + "DeletedAt": null, + "EntryId": "412c22a5-5840-49ac-af40-2fdbb93501ef", + "Definition": {}, + "Gloss": { + "en": "get rich", + "pt": "enriquecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "866ce198-1f8c-4d45-be89-6e97aa04cc93", + "DeletedAt": null, + "LexemeForm": { + "seh": "fumbi" + }, + "CitationForm": { + "seh": "pfumbi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c1d4fa07-ebf9-40ab-a269-cebbd8e8e4e3", + "Order": 1, + "DeletedAt": null, + "EntryId": "866ce198-1f8c-4d45-be89-6e97aa04cc93", + "Definition": { + "en": { + "Spans": [ + { + "Text": "dust, powder", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "dust", + "pt": "po\u0301" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d6de2535-4d21-44fb-80b8-01c0e71de6d9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:13; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c1d4fa07-ebf9-40ab-a269-cebbd8e8e4e3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0ffeb52b-5052-4cf5-88bf-5cde438179f2", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfung" + }, + "CitationForm": { + "seh": "pfunga" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d96c0e30-122f-4965-b2f2-7a28c5919eda", + "Order": 1, + "DeletedAt": null, + "EntryId": "0ffeb52b-5052-4cf5-88bf-5cde438179f2", + "Definition": {}, + "Gloss": { + "en": "close", + "pt": "fechar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9723cad8-6330-430b-981e-6080f0a00832", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "d96c0e30-122f-4965-b2f2-7a28c5919eda", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ac9350d1-9fdc-4819-9283-ea9a2c870488", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfungul" + }, + "CitationForm": { + "seh": "pfungula" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "722a07be-8f96-4584-896b-5d4a1be2ff09", + "Order": 1, + "DeletedAt": null, + "EntryId": "ac9350d1-9fdc-4819-9283-ea9a2c870488", + "Definition": {}, + "Gloss": { + "en": "open", + "pt": "abrir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a2703b1a-942f-4dfb-93cf-fa8ed1b62a9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "722a07be-8f96-4584-896b-5d4a1be2ff09", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2f6e91f0-45c8-4996-a83f-7deabec2e239", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunz" + }, + "CitationForm": { + "seh": "pfunza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f3702c7-fb24-4c15-8848-170402959bce", + "Order": 1, + "DeletedAt": null, + "EntryId": "2f6e91f0-45c8-4996-a83f-7deabec2e239", + "Definition": {}, + "Gloss": { + "en": "study", + "pt": "estudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e7504741-9eaa-45a0-b5ae-17dc47c9e3f1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2f3702c7-fb24-4c15-8848-170402959bce", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a83b8424-0c70-4258-8a9d-089a9aba2ac3", + "DeletedAt": null, + "LexemeForm": { + "seh": "pfunzis" + }, + "CitationForm": { + "seh": "pfunzisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ec31552-edd9-4071-9e74-ea6e4ea8cf26", + "Order": 1, + "DeletedAt": null, + "EntryId": "a83b8424-0c70-4258-8a9d-089a9aba2ac3", + "Definition": {}, + "Gloss": { + "en": "teach", + "pt": "ensinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71443fff-cc03-44fd-b5ad-892111fe45bb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7ec31552-edd9-4071-9e74-ea6e4ea8cf26", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "083fa3ea-1d1f-40a9-8d88-63722de7332f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ph" + }, + "CitationForm": { + "seh": "pha" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "34c84c1d-1627-4a45-805d-8a613c39f8fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "083fa3ea-1d1f-40a9-8d88-63722de7332f", + "Definition": {}, + "Gloss": { + "en": "kill", + "pt": "matar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "b8d2fdb9-22ea-4040-8abb-aeeff0399f23", + "Name": { + "en": "Kill" + }, + "Code": "2.6.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "1770d209-608c-4385-9339-cb6ee569fefb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo037; Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "34c84c1d-1627-4a45-805d-8a613c39f8fb", + "DeletedAt": null + } + ] + }, + { + "Id": "e1928272-94d5-4a99-b51c-8c79299b2b06", + "Order": 2, + "DeletedAt": null, + "EntryId": "083fa3ea-1d1f-40a9-8d88-63722de7332f", + "Definition": {}, + "Gloss": { + "en": "hurt", + "pt": "fazer doer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0ca8335-d1c8-4042-b61f-757efca05736", + "DeletedAt": null, + "LexemeForm": { + "seh": "phamir" + }, + "CitationForm": { + "seh": "phamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86c9f6ef-1382-442b-81c5-535496307803", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0ca8335-d1c8-4042-b61f-757efca05736", + "Definition": {}, + "Gloss": { + "en": "rest on", + "pt": "pousar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b238fcb0-6370-46e6-8c47-0c7219df4e16", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "86c9f6ef-1382-442b-81c5-535496307803", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "055bb251-95da-4959-92c1-aa7bab5cc7c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "panga" + }, + "CitationForm": { + "seh": "phanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "55e6af15-103c-4b41-9e10-da36ee20f5da", + "Order": 1, + "DeletedAt": null, + "EntryId": "055bb251-95da-4959-92c1-aa7bab5cc7c0", + "Definition": {}, + "Gloss": { + "en": "bandit", + "pt": "bandido" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e9d59cae-b01a-43c1-84e4-595e601c3d23", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "55e6af15-103c-4b41-9e10-da36ee20f5da", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec3b3f9d-9f6a-4165-90e3-f616f9c40cbc", + "DeletedAt": null, + "LexemeForm": { + "seh": "panya" + }, + "CitationForm": { + "seh": "phanya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "49ea4ff8-7c73-4fad-950d-b3d2dec9ad8b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec3b3f9d-9f6a-4165-90e3-f616f9c40cbc", + "Definition": {}, + "Gloss": { + "en": "field rat", + "pt": "rato de campo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "602a507e-eab9-41ad-90b4-4cd82abf0d49", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "49ea4ff8-7c73-4fad-950d-b3d2dec9ad8b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72473c5b-250d-49e4-964c-7612c4ab3cdd", + "DeletedAt": null, + "LexemeForm": { + "seh": "phanz" + }, + "CitationForm": { + "seh": "phanza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "908cc39a-c4ae-4aab-a8a1-4cb2794ef409", + "Order": 1, + "DeletedAt": null, + "EntryId": "72473c5b-250d-49e4-964c-7612c4ab3cdd", + "Definition": {}, + "Gloss": { + "en": "diarrhea", + "pt": "diarreia" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "39dcb6b9-94df-45be-a128-c14c7a9dcdbd", + "Name": { + "en": "Stomach illness" + }, + "Code": "2.5.2.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ac60ca45-3128-4762-a811-ec365a24a0ff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "908cc39a-c4ae-4aab-a8a1-4cb2794ef409", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "phat" + }, + "CitationForm": { + "seh": "phata" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98c38a96-d34b-4581-aca1-17ff2dc2c62e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "Definition": {}, + "Gloss": { + "en": "take ahold", + "pt": "pegar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3a170279-8e61-41ae-ab1f-3817c343e8cf", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "98c38a96-d34b-4581-aca1-17ff2dc2c62e", + "DeletedAt": null + } + ] + }, + { + "Id": "4fe54fea-afdf-4ce3-8789-da578722a5f6", + "Order": 2, + "DeletedAt": null, + "EntryId": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "Definition": {}, + "Gloss": { + "en": "grab", + "pt": "agarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c300c23f-9269-4a24-8be8-b91847605697", + "Order": 3, + "DeletedAt": null, + "EntryId": "e91f0b87-b826-4817-8252-ee6bd116a6bc", + "Definition": {}, + "Gloss": { + "en": "do", + "pt": "fazer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2515b1d1-0f74-480f-804d-fe44e405034f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phataniz" + }, + "CitationForm": { + "seh": "phataniza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1665923c-551f-4e87-aa3e-a0c01859612c", + "Order": 1, + "DeletedAt": null, + "EntryId": "2515b1d1-0f74-480f-804d-fe44e405034f", + "Definition": {}, + "Gloss": { + "en": "connect", + "pt": "ligar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b444fc5-2edb-4b9b-8c09-558cdd2381d8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1665923c-551f-4e87-aa3e-a0c01859612c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45690817-2993-4cad-85b0-5bae2dddf01e", + "DeletedAt": null, + "LexemeForm": { + "seh": "paza" + }, + "CitationForm": { + "seh": "phaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f17ee35f-9e3a-47b7-8aed-0abffa9e539e", + "Order": 1, + "DeletedAt": null, + "EntryId": "45690817-2993-4cad-85b0-5bae2dddf01e", + "Definition": {}, + "Gloss": { + "en": "hoe", + "pt": "enxada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "399bacf2-a5bd-478a-a7b6-fa7e49d1656f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f17ee35f-9e3a-47b7-8aed-0abffa9e539e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2572149b-1b1d-43ab-8edc-b2918ad33499", + "DeletedAt": null, + "LexemeForm": { + "seh": "phedz" + }, + "CitationForm": { + "seh": "phedza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5607b315-66cf-4c69-9cc1-54040e31e662", + "Order": 1, + "DeletedAt": null, + "EntryId": "2572149b-1b1d-43ab-8edc-b2918ad33499", + "Definition": {}, + "Gloss": { + "en": "help", + "pt": "ajudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "de54033f-6a9d-48e3-b825-7ce8024a0733", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungo mbakuphedzeni.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Deus te abenc\u0327o\u0303e.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "5607b315-66cf-4c69-9cc1-54040e31e662", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8dfc98df-d122-40d9-990c-a83beede064d", + "DeletedAt": null, + "LexemeForm": { + "seh": "phek" + }, + "CitationForm": { + "seh": "pheka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4076b0ba-747a-4966-ad7e-4caa4c2cabc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "8dfc98df-d122-40d9-990c-a83beede064d", + "Definition": {}, + "Gloss": { + "en": "be wounded", + "pt": "ferir-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "25d025df-a858-4e3b-afe8-c9b5823de3d1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "4076b0ba-747a-4966-ad7e-4caa4c2cabc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "611d0fe9-b361-4bb1-a07a-8037efce1d7f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phemb" + }, + "CitationForm": { + "seh": "phemba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dc267b94-4a33-4731-aaaf-d484830ec3d4", + "Order": 1, + "DeletedAt": null, + "EntryId": "611d0fe9-b361-4bb1-a07a-8037efce1d7f", + "Definition": {}, + "Gloss": { + "en": "ask for", + "pt": "pedir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eaa3d8b8-c851-4474-bc62-d09fdd7d5985", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "dc267b94-4a33-4731-aaaf-d484830ec3d4", + "DeletedAt": null + }, + { + "Id": "ebfa83e0-3ad8-4615-a739-c6020769dc73", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "dc267b94-4a33-4731-aaaf-d484830ec3d4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af2460ff-f65e-49ff-8e10-a47ba5f2ff98", + "DeletedAt": null, + "LexemeForm": { + "seh": "phember" + }, + "CitationForm": { + "seh": "phembera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aa981b11-04ff-4af2-ae44-796234cb159b", + "Order": 1, + "DeletedAt": null, + "EntryId": "af2460ff-f65e-49ff-8e10-a47ba5f2ff98", + "Definition": {}, + "Gloss": { + "en": "pray", + "pt": "orar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6086f990-f49e-4db7-8206-ce1af2ab916f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "aa981b11-04ff-4af2-ae44-796234cb159b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5864651e-303c-46a7-afc5-b9a69060971b", + "DeletedAt": null, + "LexemeForm": { + "seh": "phembw" + }, + "CitationForm": { + "seh": "phembwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "246c0387-eb1b-44f3-9b1f-a7bdaa8df9b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "5864651e-303c-46a7-afc5-b9a69060971b", + "Definition": {}, + "Gloss": { + "en": "be requested", + "pt": "ser pedido" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f10341c4-ec1e-4829-92eb-97a4a5a6e58b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "246c0387-eb1b-44f3-9b1f-a7bdaa8df9b5", + "DeletedAt": null + } + ] + }, + { + "Id": "06977799-bc47-4b69-ac51-4e669399e821", + "Order": 2, + "DeletedAt": null, + "EntryId": "5864651e-303c-46a7-afc5-b9a69060971b", + "Definition": {}, + "Gloss": { + "en": "invite", + "pt": "convite" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "873acf26-bab1-47a3-8cf8-09e845f31c3e", + "DeletedAt": null, + "LexemeForm": { + "seh": "pesi" + }, + "CitationForm": { + "seh": "phesi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38351af5-160a-449f-b6f5-334748970449", + "Order": 1, + "DeletedAt": null, + "EntryId": "873acf26-bab1-47a3-8cf8-09e845f31c3e", + "Definition": {}, + "Gloss": { + "en": "cane", + "pt": "canic\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e68155f5-1b10-45c0-ab1c-fc9178920142", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "38351af5-160a-449f-b6f5-334748970449", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "56f730bb-c2a3-47ed-97e9-c5937fdef40e", + "DeletedAt": null, + "LexemeForm": { + "seh": "phewa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f28a937-b7ad-4ce4-b967-9faad084543b", + "Order": 1, + "DeletedAt": null, + "EntryId": "56f730bb-c2a3-47ed-97e9-c5937fdef40e", + "Definition": {}, + "Gloss": { + "en": "shoulder", + "pt": "ombro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "60f1b7c4-67bb-4fbe-8efb-a0b0c3cf1a31", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "2f28a937-b7ad-4ce4-b967-9faad084543b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "945ebef5-7a27-48fe-96f8-ee8bb9eb72eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "phik" + }, + "CitationForm": { + "seh": "phika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58ed32da-a923-470e-b739-1ee2521c1dbb", + "Order": 1, + "DeletedAt": null, + "EntryId": "945ebef5-7a27-48fe-96f8-ee8bb9eb72eb", + "Definition": {}, + "Gloss": { + "en": "cook", + "pt": "cozinhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "1fda68d4-5941-4695-b656-090d603a3344", + "Name": { + "en": "Food preparation" + }, + "Code": "5.2.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "139e7671-161a-4ba5-a8b2-6895d46d2aae", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "58ed32da-a923-470e-b739-1ee2521c1dbb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fad65192-562f-478b-b39a-6987f2b3e67e", + "DeletedAt": null, + "LexemeForm": { + "seh": "pindi" + }, + "CitationForm": { + "seh": "phindi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d0e03952-92d9-4bf5-b7ac-d63a37ee3910", + "Order": 1, + "DeletedAt": null, + "EntryId": "fad65192-562f-478b-b39a-6987f2b3e67e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "part, peice", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "part", + "pt": "pedac\u0327o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dd5ce2aa-87be-4c11-bdb6-e4f5843fbee2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d0e03952-92d9-4bf5-b7ac-d63a37ee3910", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1f2a1c43-b4a2-4e3a-b204-28a56ff12df6", + "DeletedAt": null, + "LexemeForm": { + "seh": "phindudz" + }, + "CitationForm": { + "seh": "phindudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "766a0dcd-11a0-48dc-ba1e-53c6d6a63354", + "Order": 1, + "DeletedAt": null, + "EntryId": "1f2a1c43-b4a2-4e3a-b204-28a56ff12df6", + "Definition": {}, + "Gloss": { + "en": "change", + "pt": "mudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1272ad41-c183-4b2f-89a8-b3a814d67264", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "766a0dcd-11a0-48dc-ba1e-53c6d6a63354", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2892652-cc90-4007-b0a5-e44a40783c05", + "DeletedAt": null, + "LexemeForm": { + "seh": "phinduk" + }, + "CitationForm": { + "seh": "phinduka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0e15ca96-23ed-4faa-87c8-ca7a0d64e87f", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2892652-cc90-4007-b0a5-e44a40783c05", + "Definition": {}, + "Gloss": { + "en": "change oneself", + "pt": "mudar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "aaa6af45-dd3d-43c6-9a5e-ced850d5e5dd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Mount of transfiguration", + "Ws": "en" + } + ] + }, + "SenseId": "0e15ca96-23ed-4faa-87c8-ca7a0d64e87f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a662234-0a7f-4978-8b8f-d37bffac14b6", + "DeletedAt": null, + "LexemeForm": { + "seh": "phingidz" + }, + "CitationForm": { + "seh": "phingidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b64743d-8234-4efd-bee6-01929aa5925b", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a662234-0a7f-4978-8b8f-d37bffac14b6", + "Definition": {}, + "Gloss": { + "en": "dirty", + "pt": "sujar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ed89614b-5248-4f0a-8741-579ca0668d8d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4b64743d-8234-4efd-bee6-01929aa5925b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f00863e-8570-4f94-9ff4-7d8b0b44f096", + "DeletedAt": null, + "LexemeForm": { + "seh": "phingidzik" + }, + "CitationForm": { + "seh": "phingidzika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cc721689-3c6e-4e3d-8b48-304f1144ee8a", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f00863e-8570-4f94-9ff4-7d8b0b44f096", + "Definition": {}, + "Gloss": { + "en": "get dirty", + "pt": "sujar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "46ad1505-9049-41d8-831b-768f46f12500", + "Name": { + "en": "Clean, dirty" + }, + "Code": "5.6.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ab5f5c89-7ec9-49b7-b25f-31dcb7255036", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cc721689-3c6e-4e3d-8b48-304f1144ee8a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "baa4ac28-a084-4a57-b4a8-1e58278c74ef", + "DeletedAt": null, + "LexemeForm": { + "seh": "pira" + }, + "CitationForm": { + "seh": "phira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2da1985b-4c8e-48c6-b819-be26a601b9c1", + "Order": 1, + "DeletedAt": null, + "EntryId": "baa4ac28-a084-4a57-b4a8-1e58278c74ef", + "Definition": { + "en": { + "Spans": [ + { + "Text": "various types of millet", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "mapira, milho miu\u0301do", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "millet", + "pt": "mapira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0b18ddd3-c8bd-4041-be87-6c4722d53eb0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:13", + "Ws": "en" + } + ] + }, + "SenseId": "2da1985b-4c8e-48c6-b819-be26a601b9c1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b479779f-689b-4e2c-949c-e5c037ae5f2f", + "DeletedAt": null, + "LexemeForm": { + "seh": "phiramanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4b483281-d3c1-432d-a5ff-1e7df777fc23", + "Order": 1, + "DeletedAt": null, + "EntryId": "b479779f-689b-4e2c-949c-e5c037ae5f2f", + "Definition": {}, + "Gloss": { + "en": "corn", + "pt": "milho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d30c1ff4-e25d-4a9a-9cf9-4fad2c21de44", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "George; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4b483281-d3c1-432d-a5ff-1e7df777fc23", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "130c1a0e-2905-463e-a3a2-498d92f069fd", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": { + "seh": "phiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fb4d0840-35ad-4b51-a991-d3caac72b07b", + "Order": 1, + "DeletedAt": null, + "EntryId": "130c1a0e-2905-463e-a3a2-498d92f069fd", + "Definition": {}, + "Gloss": { + "en": "mountain", + "pt": "montanha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae", + "Name": { + "en": "Mountain" + }, + "Code": "1.2.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "fdf2d7fe-bd2c-4e17-ba24-970a6fe778bc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Moreira:19; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "fb4d0840-35ad-4b51-a991-d3caac72b07b", + "DeletedAt": null + } + ] + }, + { + "Id": "9c5ab5d0-b755-41e7-8bfc-38cf4ac7476a", + "Order": 2, + "DeletedAt": null, + "EntryId": "130c1a0e-2905-463e-a3a2-498d92f069fd", + "Definition": {}, + "Gloss": { + "en": "hill", + "pt": "monte" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "cafc5c7d-dc47-418f-bd2a-d0b02c05fc47", + "DeletedAt": null, + "LexemeForm": { + "seh": "phol" + }, + "CitationForm": { + "seh": "phola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a29d6ebc-5c8a-4267-93f5-7acbb56f0a82", + "Order": 1, + "DeletedAt": null, + "EntryId": "cafc5c7d-dc47-418f-bd2a-d0b02c05fc47", + "Definition": {}, + "Gloss": { + "en": "stab", + "pt": "espetar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e3ccc928-91e8-4793-b791-19c685368b95", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a29d6ebc-5c8a-4267-93f5-7acbb56f0a82", + "DeletedAt": null + } + ] + }, + { + "Id": "0f025d44-7074-4e04-868e-cc0a74db6931", + "Order": 2, + "DeletedAt": null, + "EntryId": "cafc5c7d-dc47-418f-bd2a-d0b02c05fc47", + "Definition": {}, + "Gloss": { + "en": "drill", + "pt": "furar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b9f98b12-4842-4d4a-a605-39446bb747b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "phony" + }, + "CitationForm": { + "seh": "phonya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "310bbea4-dfd1-44b0-b6e5-cfb9ee73fd33", + "Order": 1, + "DeletedAt": null, + "EntryId": "b9f98b12-4842-4d4a-a605-39446bb747b7", + "Definition": {}, + "Gloss": { + "en": "break", + "pt": "quebrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8571196f-b183-43ef-a73b-cc858a334e55", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "310bbea4-dfd1-44b0-b6e5-cfb9ee73fd33", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "659569fd-078f-4200-8e5a-50e7209847d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "phop" + }, + "CitationForm": { + "seh": "phopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1d741e8d-7136-465d-8d8c-f699482d7e7a", + "Order": 1, + "DeletedAt": null, + "EntryId": "659569fd-078f-4200-8e5a-50e7209847d0", + "Definition": {}, + "Gloss": { + "en": "close lid", + "pt": "tampar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "88646d9b-3b72-412c-8c65-e5bf67234343", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1d741e8d-7136-465d-8d8c-f699482d7e7a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c14a0da6-6e85-4d49-ab80-b47e7fec341a", + "DeletedAt": null, + "LexemeForm": { + "seh": "pobvu" + }, + "CitationForm": { + "seh": "phovu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bfb6430-34b1-4953-ac6f-1d14a55368e0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c14a0da6-6e85-4d49-ab80-b47e7fec341a", + "Definition": {}, + "Gloss": { + "en": "foam", + "pt": "espuma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00f82257-7868-4d91-a555-b433d49be043", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4bfb6430-34b1-4953-ac6f-1d14a55368e0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2f3b962-9d77-41ba-85b2-941e960cda02", + "DeletedAt": null, + "LexemeForm": { + "seh": "phul" + }, + "CitationForm": { + "seh": "phula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e68fa0ae-00e9-401e-8939-1cdbcbf38a8f", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2f3b962-9d77-41ba-85b2-941e960cda02", + "Definition": {}, + "Gloss": { + "en": "spit", + "pt": "cuspir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "897f89de-a5e3-44bd-b2e9-3ce0f4ce983d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e68fa0ae-00e9-401e-8939-1cdbcbf38a8f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "53b1babb-f932-4745-abce-20d9695e2d63", + "DeletedAt": null, + "LexemeForm": { + "seh": "puli" + }, + "CitationForm": { + "seh": "phuli" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22454890-7c2d-4a3b-beaf-c7a5a4dc141d", + "Order": 1, + "DeletedAt": null, + "EntryId": "53b1babb-f932-4745-abce-20d9695e2d63", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bunch of leaves or plants", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "molho de folhas ou planta", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bunch", + "pt": "molho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0cda28d-49a8-4d9b-b8d8-950262c19369", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "22454890-7c2d-4a3b-beaf-c7a5a4dc141d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7af80b86-3062-4027-acaf-ab1ab7b811a6", + "DeletedAt": null, + "LexemeForm": { + "seh": "pute" + }, + "CitationForm": { + "seh": "phute" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98ae9c6a-49c6-4f2f-ae64-bcd03ce4e6c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "7af80b86-3062-4027-acaf-ab1ab7b811a6", + "Definition": {}, + "Gloss": { + "en": "abcess", + "pt": "abcesso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "77f0d0dc-61ee-4373-9879-35a7059bd892", + "Name": { + "en": "Tooth decay" + }, + "Code": "2.5.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2dfe7213-283d-49ad-9b49-aabaa666dac2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "98ae9c6a-49c6-4f2f-ae64-bcd03ce4e6c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b46e4739-7153-4883-b2c3-908365df67d3", + "DeletedAt": null, + "LexemeForm": { + "seh": "putu" + }, + "CitationForm": { + "seh": "phutu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2581c234-84f5-4ef9-ae06-3be67d528c6a", + "Order": 1, + "DeletedAt": null, + "EntryId": "b46e4739-7153-4883-b2c3-908365df67d3", + "Definition": {}, + "Gloss": { + "en": "cheek", + "pt": "buchecha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ad235e50-5075-4783-a2ac-464fc1d35e70", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "2581c234-84f5-4ef9-ae06-3be67d528c6a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a8ea8e05-9e79-4f5c-8370-9df8525166b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "phwandu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "882560fc-27d5-4ea8-add0-8335b97c5032", + "Order": 1, + "DeletedAt": null, + "EntryId": "a8ea8e05-9e79-4f5c-8370-9df8525166b1", + "Definition": {}, + "Gloss": { + "en": "feast", + "pt": "festa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "71983f5c-327e-4f3f-8eee-d404c0d77360", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "882560fc-27d5-4ea8-add0-8335b97c5032", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "16b421e9-006e-4374-ba54-e3e8c6493edd", + "DeletedAt": null, + "LexemeForm": { + "seh": "phwet" + }, + "CitationForm": { + "seh": "phweta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e352f748-01e6-471f-a6d1-978b74e6c6a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "16b421e9-006e-4374-ba54-e3e8c6493edd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to flee", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "fugir", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "flee", + "pt": "fugir apertado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "aa965615-5d7a-40ab-8781-cff09fa2841f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e352f748-01e6-471f-a6d1-978b74e6c6a5", + "DeletedAt": null + } + ] + }, + { + "Id": "90054694-7f6e-4674-a525-b3e59e05f58d", + "Order": 2, + "DeletedAt": null, + "EntryId": "16b421e9-006e-4374-ba54-e3e8c6493edd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "enter by means of a tight space", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "entrar pelo buraco apertado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "enter", + "pt": "entrar" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "19888b08-f360-4232-9c69-57ef5c4937f2", + "DeletedAt": null, + "LexemeForm": { + "seh": "phwete" + }, + "CitationForm": { + "seh": "phwethe" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5c0b6467-8c7a-48ac-af53-c5b81c079967", + "Order": 1, + "DeletedAt": null, + "EntryId": "19888b08-f360-4232-9c69-57ef5c4937f2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Diceros bicorniss (or Ceratotherium simum - not in Sena area)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rhinoceros", + "pt": "rinocerante" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5d8dce6d-45ad-47dc-a38a-26331bca3df0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "5c0b6467-8c7a-48ac-af53-c5b81c079967", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "DeletedAt": null, + "LexemeForm": { + "seh": "pi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "43a4b50c-b681-4e03-ad5c-1649e7daf633", + "Order": 1, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a3846ed9-9b20-4c5f-8abb-873f9ff99a17", + "Order": 2, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "fdff4835-a887-4305-952a-4089525f3e62", + "Order": 3, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "182f783d-7703-4dc6-8aaa-d4c995ec11e0", + "Order": 4, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d7932d5f-f27f-4cbb-b264-52061d0b3253", + "Order": 5, + "DeletedAt": null, + "EntryId": "0c7b40af-941f-402f-8b66-4721c0044c2b", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9f3c0dec-740d-42a2-9079-59b44fb3cecd", + "DeletedAt": null, + "LexemeForm": { + "seh": "pi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "23b8a9b8-fab7-41e8-a70f-7cc7b72c94eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "9f3c0dec-740d-42a2-9079-59b44fb3cecd", + "Definition": {}, + "Gloss": { + "en": "8", + "pt": "8" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "92d8a3e5-790f-4c0d-927b-fcd64073db53", + "DeletedAt": null, + "LexemeForm": { + "seh": "pibves" + }, + "CitationForm": { + "seh": "pibvesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d6332e9-6bf8-4bc3-8ecc-bd4ef18512f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "92d8a3e5-790f-4c0d-927b-fcd64073db53", + "Definition": {}, + "Gloss": { + "en": "understand", + "pt": "compreender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "2251956c-607a-41dd-b047-c16ad95f04ef", + "Order": 2, + "DeletedAt": null, + "EntryId": "92d8a3e5-790f-4c0d-927b-fcd64073db53", + "Definition": {}, + "Gloss": { + "en": "perceive", + "pt": "perceber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eb3eb9b2-1130-402e-952a-44a20075a642", + "DeletedAt": null, + "LexemeForm": { + "seh": "pina" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "10d326c8-2805-4ecf-91c3-2d933a063863", + "Order": 1, + "DeletedAt": null, + "EntryId": "eb3eb9b2-1130-402e-952a-44a20075a642", + "Definition": {}, + "Gloss": { + "en": "again", + "pt": "outra vez" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8fa842ea-8c2d-40be-885c-30645fc695c6", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndabwera pina", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Vim outra vez", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "10d326c8-2805-4ecf-91c3-2d933a063863", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c02367d0-a6db-43f2-97d9-9daba1ffd174", + "DeletedAt": null, + "LexemeForm": { + "seh": "pingir" + }, + "CitationForm": { + "seh": "pingira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "06909499-5a12-4fdc-b48e-5805606fe878", + "Order": 1, + "DeletedAt": null, + "EntryId": "c02367d0-a6db-43f2-97d9-9daba1ffd174", + "Definition": { + "en": { + "Spans": [ + { + "Text": "put something on one\u0027s back or shoulders", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "po\u0302r uma coisa no colo ou obros", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "carry", + "pt": "carrigar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "549120da-4e82-4132-8f61-43806d226647", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "06909499-5a12-4fdc-b48e-5805606fe878", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b8e3bcc7-cf77-4537-a774-52bdca6cb280", + "DeletedAt": null, + "LexemeForm": { + "seh": "pingirir" + }, + "CitationForm": { + "seh": "pingirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6257b3a4-5c21-474e-8045-768ac98bd030", + "Order": 1, + "DeletedAt": null, + "EntryId": "b8e3bcc7-cf77-4537-a774-52bdca6cb280", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wrap around", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "amarrar sem no\u0301", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wrap around", + "pt": "amarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "408447ec-6296-4652-82e7-18fe2ea4e6d9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6257b3a4-5c21-474e-8045-768ac98bd030", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6721e1c9-772d-4a29-bab9-d6c2cf5f4107", + "DeletedAt": null, + "LexemeForm": { + "seh": "piri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ec9e2a2a-4acf-4873-be17-33c22215f214", + "Order": 1, + "DeletedAt": null, + "EntryId": "6721e1c9-772d-4a29-bab9-d6c2cf5f4107", + "Definition": {}, + "Gloss": { + "en": "two", + "pt": "dois" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "35a7a244-996e-4d8b-bb97-5ec291c00863", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "ec9e2a2a-4acf-4873-be17-33c22215f214", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e8e4f8eb-7a7e-46ec-89f9-cf3f23f2c20a", + "DeletedAt": null, + "LexemeForm": { + "seh": "piringan" + }, + "CitationForm": { + "seh": "piringana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9604e24e-0b32-4036-b99f-029dad305317", + "Order": 1, + "DeletedAt": null, + "EntryId": "e8e4f8eb-7a7e-46ec-89f9-cf3f23f2c20a", + "Definition": {}, + "Gloss": { + "en": "is more than", + "pt": "ultrapassar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "80e1a2df-d3a9-4460-849d-2eece2861634", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9604e24e-0b32-4036-b99f-029dad305317", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "627688ca-a90b-4bf4-8793-1a182d1222c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "pirir" + }, + "CitationForm": { + "seh": "pirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "610b9c2f-9e5d-458f-acbc-0f024bc732fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "627688ca-a90b-4bf4-8793-1a182d1222c3", + "Definition": {}, + "Gloss": { + "en": "trust", + "pt": "confiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a316a58-6299-4e73-b15c-75a8719635ad", + "DeletedAt": null, + "LexemeForm": { + "seh": "pis" + }, + "CitationForm": { + "seh": "pisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9e3d001b-8dbd-47bd-843d-545ae2eeedc8", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a316a58-6299-4e73-b15c-75a8719635ad", + "Definition": {}, + "Gloss": { + "en": "burn", + "pt": "queimar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4c46e0d2-db36-4a60-b9e5-2618aaed37de", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Lero kwapisa.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Today it is \u0022burning up\u0022.", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Hoje faz calor", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "9e3d001b-8dbd-47bd-843d-545ae2eeedc8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "DeletedAt": null, + "LexemeForm": { + "seh": "pit" + }, + "CitationForm": { + "seh": "pita" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f452c5e8-330c-4323-862b-aba0ec42a2c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "Definition": {}, + "Gloss": { + "en": "enter", + "pt": "entrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b8aa36a5-4ce8-402d-9545-5f14e0b4b00e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f452c5e8-330c-4323-862b-aba0ec42a2c4", + "DeletedAt": null + }, + { + "Id": "b310f04d-3121-4ef7-aa4f-c8f83b09dfa4", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2 013; Mauricio", + "Ws": "en" + } + ] + }, + "SenseId": "f452c5e8-330c-4323-862b-aba0ec42a2c4", + "DeletedAt": null + } + ] + }, + { + "Id": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", + "Order": 2, + "DeletedAt": null, + "EntryId": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "Definition": {}, + "Gloss": { + "en": "be more than", + "pt": "ultrapassar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5325a3b6-551e-4f6e-8c14-eed70be18516", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nkulu kupita \u0022greater\u0022", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "df19e3d6-d622-49ce-a599-bc3ddf0863ac", + "DeletedAt": null + } + ] + }, + { + "Id": "198c45b5-e301-484e-ae81-fa801eb01331", + "Order": 3, + "DeletedAt": null, + "EntryId": "df851428-38b5-4744-a82f-29b5b7a3ed70", + "Definition": {}, + "Gloss": { + "en": "except", + "pt": "sena\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b20a3f7-e1aa-4896-86b7-5c590d2b8794", + "DeletedAt": null, + "LexemeForm": { + "seh": "pokes" + }, + "CitationForm": { + "seh": "pokesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "051bfd1e-a26e-46e2-b13a-f3b00478e092", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b20a3f7-e1aa-4896-86b7-5c590d2b8794", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "tirar de forc\u0327a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "snatch", + "pt": "tirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d901e977-d417-4ebf-b430-d1a1c992216e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "051bfd1e-a26e-46e2-b13a-f3b00478e092", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8b4afd2d-617d-496a-9744-28b4f9c64cdf", + "DeletedAt": null, + "LexemeForm": { + "seh": "pokos" + }, + "CitationForm": { + "seh": "pokosa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ff74f41d-6ccb-4d1a-be68-010a4320ed00", + "Order": 1, + "DeletedAt": null, + "EntryId": "8b4afd2d-617d-496a-9744-28b4f9c64cdf", + "Definition": { + "en": { + "Spans": [ + { + "Text": "snatch, jerk out of the hand", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "arrancar na ma\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "snatch", + "pt": "agarrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a1786879-7a9c-49d0-babe-802266f5da43", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ff74f41d-6ccb-4d1a-be68-010a4320ed00", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8e053f7f-054b-4f2e-9d4d-2e52bd026f01", + "DeletedAt": null, + "LexemeForm": { + "seh": "pokoser" + }, + "CitationForm": { + "seh": "pokosera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b419d979-913b-4cf5-8a8d-c3982e3c2093", + "Order": 1, + "DeletedAt": null, + "EntryId": "8e053f7f-054b-4f2e-9d4d-2e52bd026f01", + "Definition": { + "en": { + "Spans": [ + { + "Text": "take from someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "levar de alguem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "take", + "pt": "levar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c7e52ebe-3822-4dd0-a4ff-087909c05127", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b419d979-913b-4cf5-8a8d-c3982e3c2093", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "81a5753e-384a-43e7-bf66-d38ef77a04a8", + "DeletedAt": null, + "LexemeForm": { + "seh": "poloz" + }, + "CitationForm": { + "seh": "poloza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0f7f7d77-6064-4ce1-b6a3-f80826d62a99", + "Order": 1, + "DeletedAt": null, + "EntryId": "81a5753e-384a-43e7-bf66-d38ef77a04a8", + "Definition": {}, + "Gloss": { + "en": "weak", + "pt": "fraco" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16833983-c2b1-496a-a660-b75401d65a01", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0f7f7d77-6064-4ce1-b6a3-f80826d62a99", + "DeletedAt": null + } + ] + }, + { + "Id": "ad61964d-ef71-4857-89cb-5205ab969a8b", + "Order": 2, + "DeletedAt": null, + "EntryId": "81a5753e-384a-43e7-bf66-d38ef77a04a8", + "Definition": {}, + "Gloss": { + "en": "quiet", + "pt": "quieta" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d8c31365-5e36-4ce5-90ec-cf114527fe24", + "DeletedAt": null, + "LexemeForm": { + "seh": "pontho" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a3baa2ad-79c0-41b1-9a24-e007e6d0b931", + "Order": 1, + "DeletedAt": null, + "EntryId": "d8c31365-5e36-4ce5-90ec-cf114527fe24", + "Definition": {}, + "Gloss": { + "en": "again", + "pt": "de novo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "92fef216-2ea0-4368-9323-69f315291960", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Tinaonana lini pontho?", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a3baa2ad-79c0-41b1-9a24-e007e6d0b931", + "DeletedAt": null + } + ] + }, + { + "Id": "c796903a-0d54-404a-a971-a11c1a968a61", + "Order": 2, + "DeletedAt": null, + "EntryId": "d8c31365-5e36-4ce5-90ec-cf114527fe24", + "Definition": {}, + "Gloss": { + "en": "also", + "pt": "ale\u0301m disso" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "066403f7-1807-4500-a50c-14dc5147719b", + "DeletedAt": null, + "LexemeForm": { + "seh": "pony" + }, + "CitationForm": { + "seh": "ponya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e35e3997-6b2c-4db4-81ed-13929160c341", + "Order": 1, + "DeletedAt": null, + "EntryId": "066403f7-1807-4500-a50c-14dc5147719b", + "Definition": {}, + "Gloss": { + "en": "throw", + "pt": "atirar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "844e02a2-f96e-4e06-93ed-365d82e549d0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "e35e3997-6b2c-4db4-81ed-13929160c341", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bda85504-a7da-4806-8796-9656e41478aa", + "DeletedAt": null, + "LexemeForm": { + "seh": "posi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c9c466d6-5256-46aa-9bb5-937c02901148", + "Order": 1, + "DeletedAt": null, + "EntryId": "bda85504-a7da-4806-8796-9656e41478aa", + "Definition": {}, + "Gloss": { + "en": "one", + "pt": "um" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e136ed1e-70b7-4211-bc0f-291705a2d047", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Tingamala kulengesa posi tinabwera piri", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Depois de countar \u0022um\u0022 chegamos a \u0022dois\u0022.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", + "DeletedAt": null + }, + { + "Id": "1f820f71-c282-4506-9e75-78d9d06ab66f", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Posi wace ng\u0027ono-ng\u0027ono, lembani posi wa nkulu.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Sua \u0022um\u0022 e\u0301 muito pequeno, escreva um \u0022um\u0022 grande.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", + "DeletedAt": null + }, + { + "Id": "5000b3ec-ece5-4bfc-8c57-fb3ac122602a", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "posi yace", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "suas \u0022uns\u0022", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "c9c466d6-5256-46aa-9bb5-937c02901148", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "991de334-0b44-49f4-b5a9-3492ab3a423c", + "DeletedAt": null, + "LexemeForm": { + "seh": "potok" + }, + "CitationForm": { + "seh": "potoka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d9cb4e6f-d542-4847-9ffd-72997d708f48", + "Order": 1, + "DeletedAt": null, + "EntryId": "991de334-0b44-49f4-b5a9-3492ab3a423c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one person leaves a group for a short time", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "uma pessoa abandona ou retirar-se duma grupo durante uma altura curta", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "abandon", + "pt": "abandonar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5e917652-d4a3-4c55-bf79-0c72bd7b212e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d9cb4e6f-d542-4847-9ffd-72997d708f48", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1d1f4c34-7445-4115-8e27-d16d0d13442c", + "DeletedAt": null, + "LexemeForm": { + "seh": "psa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "0a837b13-3198-4f8c-9049-c7a6b2ae0d4f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1d1f4c34-7445-4115-8e27-d16d0d13442c", + "Definition": {}, + "Gloss": { + "en": "new", + "pt": "novo" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "928cc025-604d-4ba4-9fd7-7cc8b4fe5975", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "nyumba ipsa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "casa nova", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0a837b13-3198-4f8c-9049-c7a6b2ae0d4f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3d41998-1cce-4773-93d7-ec7b9c6a2c5f", + "DeletedAt": null, + "LexemeForm": { + "seh": "psair" + }, + "CitationForm": { + "seh": "psaira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "dd0805ee-73c0-4c9d-8f0c-5b99eba335ac", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3d41998-1cce-4773-93d7-ec7b9c6a2c5f", + "Definition": {}, + "Gloss": { + "en": "sweep", + "pt": "varrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ceff8bfb-326b-4ee3-a3ae-7460015d35c9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "dd0805ee-73c0-4c9d-8f0c-5b99eba335ac", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c151bfd2-4d0e-41af-8690-4a4f727ecb84", + "DeletedAt": null, + "LexemeForm": { + "seh": "psaka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a1393013-96f3-4f9c-9dd4-9c3d1b95747d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c151bfd2-4d0e-41af-8690-4a4f727ecb84", + "Definition": {}, + "Gloss": { + "en": "married man", + "pt": "homen casado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4edef5b-d652-4322-9c89-48e52a22b7a8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "a1393013-96f3-4f9c-9dd4-9c3d1b95747d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9430ddac-62cf-4d9d-9987-2b0dfcb43dd7", + "DeletedAt": null, + "LexemeForm": { + "seh": "psek" + }, + "CitationForm": { + "seh": "pseka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3feaedde-d34f-48b6-b61a-657a7768e7f7", + "Order": 1, + "DeletedAt": null, + "EntryId": "9430ddac-62cf-4d9d-9987-2b0dfcb43dd7", + "Definition": {}, + "Gloss": { + "en": "break", + "pt": "partir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac3c7754-dd27-4cc4-b895-be8ec1edb7fc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3feaedde-d34f-48b6-b61a-657a7768e7f7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "164147cc-4bba-4502-a602-0cfe185e5886", + "DeletedAt": null, + "LexemeForm": { + "seh": "psimo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7126b5f1-a48d-4788-8c37-e9837e25f274", + "Order": 1, + "DeletedAt": null, + "EntryId": "164147cc-4bba-4502-a602-0cfe185e5886", + "Definition": {}, + "Gloss": { + "en": "arrow", + "pt": "seta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a600ecc8-11e7-4de7-adb0-c2c751253805", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Passo", + "Ws": "en" + } + ] + }, + "SenseId": "7126b5f1-a48d-4788-8c37-e9837e25f274", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5b77cbed-fa36-4252-8887-9ecf11418d16", + "DeletedAt": null, + "LexemeForm": { + "seh": "psiru" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fafade83-795b-4355-bcb8-9873dbad754f", + "Order": 1, + "DeletedAt": null, + "EntryId": "5b77cbed-fa36-4252-8887-9ecf11418d16", + "Definition": {}, + "Gloss": { + "en": "trouble maker", + "pt": "malandro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f94922e7-e5c2-4ab8-8376-6c88fbce8916", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:4; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "fafade83-795b-4355-bcb8-9873dbad754f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57f166a3-6a90-4028-9e2a-f704190a2b36", + "DeletedAt": null, + "LexemeForm": { + "seh": "pukut" + }, + "CitationForm": { + "seh": "pukuta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "aefd8f47-6a88-499f-9860-41598b0821ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "57f166a3-6a90-4028-9e2a-f704190a2b36", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "limpar (na\u0303o cha\u0303o)", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "clean", + "pt": "limpar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4fd4d60a-43f9-4054-98e7-6d0c7b5116d4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "aefd8f47-6a88-499f-9860-41598b0821ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dfc74aad-6b03-4967-b007-632908404ab4", + "DeletedAt": null, + "LexemeForm": { + "seh": "pulumuk" + }, + "CitationForm": { + "seh": "pulumuka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "34f2de2d-2b16-47d0-b90e-58da1e9da580", + "Order": 1, + "DeletedAt": null, + "EntryId": "dfc74aad-6b03-4967-b007-632908404ab4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "save from death", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "salvar de morte", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "save", + "pt": "salvar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f2daba17-f3c7-4f16-94f6-f475f0a3cee4", + "Order": 2, + "DeletedAt": null, + "EntryId": "dfc74aad-6b03-4967-b007-632908404ab4", + "Definition": {}, + "Gloss": { + "en": "live", + "pt": "vivir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e5987e54-4319-40b8-af49-3222b14072dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "pulumus" + }, + "CitationForm": { + "seh": "pulumusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58670c9a-5c67-4b4b-87ef-5d221763088d", + "Order": 1, + "DeletedAt": null, + "EntryId": "e5987e54-4319-40b8-af49-3222b14072dd", + "Definition": {}, + "Gloss": { + "en": "save", + "pt": "salvar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "43e46058-ff31-49e7-94bb-e25124093253", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "58670c9a-5c67-4b4b-87ef-5d221763088d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "553a3f44-8c3c-4b34-8558-18bfdcb1bcb5", + "DeletedAt": null, + "LexemeForm": { + "seh": "pum" + }, + "CitationForm": { + "seh": "puma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7607ede7-857f-4bc2-bc8a-ffa119369041", + "Order": 1, + "DeletedAt": null, + "EntryId": "553a3f44-8c3c-4b34-8558-18bfdcb1bcb5", + "Definition": {}, + "Gloss": { + "en": "rest", + "pt": "descansar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac35aebb-4c3f-4a91-a311-b04fa97297e4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:030 ; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "7607ede7-857f-4bc2-bc8a-ffa119369041", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7060b22-b932-4167-b8fb-9a52edc8bb29", + "DeletedAt": null, + "LexemeForm": { + "seh": "pwand" + }, + "CitationForm": { + "seh": "pwanda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "416479f0-f40d-42a8-9f53-0b36644f6a0e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7060b22-b932-4167-b8fb-9a52edc8bb29", + "Definition": {}, + "Gloss": { + "en": "step", + "pt": "pisar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a7d3c3cb-3445-4104-b48d-743854ab23c9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "416479f0-f40d-42a8-9f53-0b36644f6a0e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "102c6b55-e50c-4d04-9e3d-b2f7abdd9148", + "DeletedAt": null, + "LexemeForm": { + "seh": "pwaz" + }, + "CitationForm": { + "seh": "pwaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "10b12fa3-9914-416a-8fa1-d2468ad75a80", + "Order": 1, + "DeletedAt": null, + "EntryId": "102c6b55-e50c-4d04-9e3d-b2f7abdd9148", + "Definition": {}, + "Gloss": { + "en": "despise", + "pt": "desprezar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "30e230df-1f3b-4035-a1fd-86d98f89785b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2 004; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "10b12fa3-9914-416a-8fa1-d2468ad75a80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dafcf5ca-2765-4602-bfee-bf49b1c6fea7", + "DeletedAt": null, + "LexemeForm": { + "seh": "pweker" + }, + "CitationForm": { + "seh": "pwekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ccaed89-b1ea-46df-be4b-6e3783022746", + "Order": 1, + "DeletedAt": null, + "EntryId": "dafcf5ca-2765-4602-bfee-bf49b1c6fea7", + "Definition": {}, + "Gloss": { + "en": "rebuke", + "pt": "repreender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0d59adfe-d7f9-4286-ae9b-f705d3fc1e26", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0ccaed89-b1ea-46df-be4b-6e3783022746", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0eccb172-934c-4243-a93b-679f3b4eeb0b", + "DeletedAt": null, + "LexemeForm": { + "seh": "py" + }, + "CitationForm": { + "seh": "pya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b2a7e770-d42a-4824-be0e-573da2378774", + "Order": 1, + "DeletedAt": null, + "EntryId": "0eccb172-934c-4243-a93b-679f3b4eeb0b", + "Definition": {}, + "Gloss": { + "en": "burn", + "pt": "queimar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e192081-38fa-4efe-b063-fd35d7e427fc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "b2a7e770-d42a-4824-be0e-573da2378774", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "21fea269-aa2c-414f-885d-56197b7f955a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ringi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "df21a85f-bac3-4b99-a803-11ab3cb0f03e", + "Order": 1, + "DeletedAt": null, + "EntryId": "21fea269-aa2c-414f-885d-56197b7f955a", + "Definition": {}, + "Gloss": { + "en": "boxing ring", + "pt": "circulo de box" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "28584ea4-6eae-4ad7-9f7a-7c363cf7e175", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "df21a85f-bac3-4b99-a803-11ab3cb0f03e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7d967137-bd79-4289-979a-23c7a6ae4125", + "DeletedAt": null, + "LexemeForm": { + "seh": "ririm" + }, + "CitationForm": { + "seh": "ririma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "32a60fd6-a381-4384-9736-388b2b757260", + "Order": 1, + "DeletedAt": null, + "EntryId": "7d967137-bd79-4289-979a-23c7a6ae4125", + "Definition": {}, + "Gloss": { + "en": "sink", + "pt": "afundar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0045604c-829f-4014-8846-c70cb4e72261", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "32a60fd6-a381-4384-9736-388b2b757260", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b03fae4d-9782-44db-8750-a5c63c617970", + "DeletedAt": null, + "LexemeForm": { + "seh": "rrw" + }, + "CitationForm": { + "seh": "rrwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "71c418ed-430e-42bb-b4b1-9b182da8db95", + "Order": 1, + "DeletedAt": null, + "EntryId": "b03fae4d-9782-44db-8750-a5c63c617970", + "Definition": {}, + "Gloss": { + "en": "marry", + "pt": "casar-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "989fb78e-1e6e-474b-b466-6ff0ba208d21", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:1", + "Ws": "en" + } + ] + }, + "SenseId": "71c418ed-430e-42bb-b4b1-9b182da8db95", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "494b1de4-0c63-4f51-804b-72f8495ee7a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "c5a022df-0a66-4888-a51f-a5e1d92cdb26", + "Order": 1, + "DeletedAt": null, + "EntryId": "494b1de4-0c63-4f51-804b-72f8495ee7a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "habtitual", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "HAB", + "pt": "HAB" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "3ee1ca91-7b0a-4567-bb1f-a4fdd123eebf", + "Order": 2, + "DeletedAt": null, + "EntryId": "494b1de4-0c63-4f51-804b-72f8495ee7a2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Present", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "PRES", + "pt": "PRES" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4162e425-13d8-4f02-931d-b93449e6937e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sa\u0301badu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "58397013-05a0-4187-a402-4b7531a3d1f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "4162e425-13d8-4f02-931d-b93449e6937e", + "Definition": {}, + "Gloss": { + "en": "Saturday", + "pt": "sa\u0301bado" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "044d8861-843b-4009-81e0-ffe421555e47", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "58397013-05a0-4187-a402-4b7531a3d1f6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "448ac2dc-1294-43b1-b008-a650f863c7d9", + "DeletedAt": null, + "LexemeForm": { + "seh": "sabudu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "076bf5e2-f0dc-4475-b4b5-13f3a82fcd9d", + "Order": 1, + "DeletedAt": null, + "EntryId": "448ac2dc-1294-43b1-b008-a650f863c7d9", + "Definition": {}, + "Gloss": { + "en": "Saturday", + "pt": "sa\u0301budu" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e1316c0-2761-4b83-84fd-d2c17515843c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "076bf5e2-f0dc-4475-b4b5-13f3a82fcd9d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0f2db272-650b-4074-8fea-47a57db8da9d", + "DeletedAt": null, + "LexemeForm": { + "seh": "sacul" + }, + "CitationForm": { + "seh": "sacula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "82120296-420f-4bc3-a316-ff1ef6f5823c", + "Order": 1, + "DeletedAt": null, + "EntryId": "0f2db272-650b-4074-8fea-47a57db8da9d", + "Definition": {}, + "Gloss": { + "en": "weed a garden", + "pt": "tirar capim" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "811e8c93-d97a-4aab-bd67-268b7783ff11", + "Name": { + "en": "Tend a field" + }, + "Code": "6.2.4", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ec902f00-80a4-4b9a-885f-880a00c9a6c4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "82120296-420f-4bc3-a316-ff1ef6f5823c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5ea247c-727a-4a24-9681-52a2dd2faa0a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sak" + }, + "CitationForm": { + "seh": "saka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7bb96ac1-c93b-4075-abda-fc991a4232bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5ea247c-727a-4a24-9681-52a2dd2faa0a", + "Definition": {}, + "Gloss": { + "en": "get", + "pt": "procurar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8615178e-e881-47fc-a185-0a5cfc0ca7a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "sakha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "229f1945-8679-4417-a15f-0dc777567523", + "Order": 1, + "DeletedAt": null, + "EntryId": "8615178e-e881-47fc-a185-0a5cfc0ca7a5", + "Definition": {}, + "Gloss": { + "en": "sack", + "pt": "saco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c0a256e-2264-421e-a891-fad443bd683c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "229f1945-8679-4417-a15f-0dc777567523", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6c643c0-0382-4b29-95be-59acb133ae97", + "DeletedAt": null, + "LexemeForm": { + "seh": "sakhu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f91440d-e07b-4444-b306-820bc3c62d78", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6c643c0-0382-4b29-95be-59acb133ae97", + "Definition": {}, + "Gloss": { + "en": "sack", + "pt": "saco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7693b340-05eb-4ec0-bfb5-62e2a102f38c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "1f91440d-e07b-4444-b306-820bc3c62d78", + "DeletedAt": null + }, + { + "Id": "d3f51154-f915-4c35-b236-735537869b03", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1f91440d-e07b-4444-b306-820bc3c62d78", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3344fdf4-a13b-4c79-9ad6-6097e665fc97", + "DeletedAt": null, + "LexemeForm": { + "seh": "sakir" + }, + "CitationForm": { + "seh": "sakira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1b86fc97-a86d-4edb-a856-501eaf8b9e6c", + "Order": 1, + "DeletedAt": null, + "EntryId": "3344fdf4-a13b-4c79-9ad6-6097e665fc97", + "Definition": {}, + "Gloss": { + "en": "get for", + "pt": "procurar para" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f2b8aef2-ec0b-4433-a929-44420f548ec4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo2", + "Ws": "en" + } + ] + }, + "SenseId": "1b86fc97-a86d-4edb-a856-501eaf8b9e6c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bedd7ff0-a9bd-4598-9351-e23cfbce645a", + "DeletedAt": null, + "LexemeForm": { + "seh": "sal" + }, + "CitationForm": { + "seh": "sala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f9374269-8d7c-433e-a4d1-2fbc6cd04fa5", + "Order": 1, + "DeletedAt": null, + "EntryId": "bedd7ff0-a9bd-4598-9351-e23cfbce645a", + "Definition": {}, + "Gloss": { + "en": "stay", + "pt": "ficar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "957536b7-d5c2-4e7e-af36-1881c877548f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "f9374269-8d7c-433e-a4d1-2fbc6cd04fa5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96c1522a-3124-4b58-9760-c97d8625a78a", + "DeletedAt": null, + "LexemeForm": { + "seh": "samb" + }, + "CitationForm": { + "seh": "samba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8aaa121c-0d62-46ec-a3f8-932b53ec00f0", + "Order": 1, + "DeletedAt": null, + "EntryId": "96c1522a-3124-4b58-9760-c97d8625a78a", + "Definition": {}, + "Gloss": { + "en": "bathe", + "pt": "banhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3dd6af88-d82b-415b-9b8b-bb98a41875d8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "8aaa121c-0d62-46ec-a3f8-932b53ec00f0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af589c9c-f424-4366-a011-dba593f5c186", + "DeletedAt": null, + "LexemeForm": { + "seh": "sambirir" + }, + "CitationForm": { + "seh": "sambirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc9918ca-3931-45f2-a346-37e20a6eb6b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "af589c9c-f424-4366-a011-dba593f5c186", + "Definition": {}, + "Gloss": { + "en": "swim", + "pt": "nadar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a4465d34-89b6-4a28-9bf3-d4a227824b58", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "bc9918ca-3931-45f2-a346-37e20a6eb6b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a177cc33-183c-4fec-b842-7c12e64c6a0b", + "DeletedAt": null, + "LexemeForm": { + "seh": "sandik" + }, + "CitationForm": { + "seh": "sandika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f35b7645-f5d6-4526-9ff8-cfa0a2bfff9f", + "Order": 1, + "DeletedAt": null, + "EntryId": "a177cc33-183c-4fec-b842-7c12e64c6a0b", + "Definition": {}, + "Gloss": { + "en": "correct", + "pt": "corrigir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e8a93b32-3e4e-45a9-9cdb-c120cc9efc51", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f35b7645-f5d6-4526-9ff8-cfa0a2bfff9f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c19976a2-9cfa-4d19-9aed-0200bba67624", + "DeletedAt": null, + "LexemeForm": { + "seh": "sandikik" + }, + "CitationForm": { + "seh": "sandikika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3df4e095-0ab3-4e63-b349-4085ad7ea31d", + "Order": 1, + "DeletedAt": null, + "EntryId": "c19976a2-9cfa-4d19-9aed-0200bba67624", + "Definition": { + "en": { + "Spans": [ + { + "Text": "be disappointed, things didn\u0027t turn out as planned, so one feels sorry for an action, repent", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "be disappointed", + "pt": "disappointar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9e207aa4-adb3-43c5-b402-cbd02be726fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3df4e095-0ab3-4e63-b349-4085ad7ea31d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d263c705-f2a2-419c-a42d-8963c433b444", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanduk" + }, + "CitationForm": { + "seh": "sanduka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e5ddd13-ed8e-4e0e-ac77-f6c630ff5e1c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d263c705-f2a2-419c-a42d-8963c433b444", + "Definition": {}, + "Gloss": { + "en": "change", + "pt": "mudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "256617cf-2cdb-4161-9b33-686ff6ceeb84", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8e5ddd13-ed8e-4e0e-ac77-f6c630ff5e1c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f33b2123-3575-4dc9-9255-3d207820079d", + "DeletedAt": null, + "LexemeForm": { + "seh": "sandukir" + }, + "CitationForm": { + "seh": "sandukira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "edaca876-4e83-48b2-a21c-43f30e9ec1f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "f33b2123-3575-4dc9-9255-3d207820079d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "one that was a friend and now is an enemy", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "betray", + "pt": "trair" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d78854b5-f5e1-44ea-9341-47264ded4889", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "edaca876-4e83-48b2-a21c-43f30e9ec1f9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b041dab2-b828-4f19-846c-bfab50de5732", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanduz" + }, + "CitationForm": { + "seh": "sanduza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9b3f4461-b2be-4678-bcd9-ef1fe0f95d6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "b041dab2-b828-4f19-846c-bfab50de5732", + "Definition": { + "en": { + "Spans": [ + { + "Text": "change turn over something that is drying", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "change", + "pt": "mudar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "65004fc3-e917-4948-be71-6f58666aec90", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9b3f4461-b2be-4678-bcd9-ef1fe0f95d6f", + "DeletedAt": null + } + ] + }, + { + "Id": "6a17df72-0935-4972-8df4-37a444a3e609", + "Order": 2, + "DeletedAt": null, + "EntryId": "b041dab2-b828-4f19-846c-bfab50de5732", + "Definition": {}, + "Gloss": { + "en": "transform", + "pt": "transformar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "0d94eaa3-f891-43be-93b5-ca24fc443185", + "DeletedAt": null, + "LexemeForm": { + "seh": "sankhul" + }, + "CitationForm": { + "seh": "sankhula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d5594291-e8d7-448b-8c98-356280a9beff", + "Order": 1, + "DeletedAt": null, + "EntryId": "0d94eaa3-f891-43be-93b5-ca24fc443185", + "Definition": {}, + "Gloss": { + "en": "choose", + "pt": "escolher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e6564851-a738-4648-a055-83c0fab4be93", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d5594291-e8d7-448b-8c98-356280a9beff", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7caa342a-2217-4a66-b690-bcbf748db6a0", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanza" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "92b77272-33f6-4ae9-9593-8884890d1596", + "Order": 1, + "DeletedAt": null, + "EntryId": "7caa342a-2217-4a66-b690-bcbf748db6a0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "second story of a building, often but not always used to store grain.", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "elevated house", + "pt": "casa elevada" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8120a626-c5bf-4cd4-94a1-e186dc21719d", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Dzuwa sanza", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "por de sol", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "92b77272-33f6-4ae9-9593-8884890d1596", + "DeletedAt": null + }, + { + "Id": "01d91810-b888-4262-b131-836966e5190d", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mapiramanga ali pa sanza.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Milho esta\u0301 em cima de casa elevada.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "92b77272-33f6-4ae9-9593-8884890d1596", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7d33069-fa77-4de9-b955-8fbca0a0f335", + "DeletedAt": null, + "LexemeForm": { + "seh": "sanzo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6a7921e6-0eed-496f-8fce-251cc73f54b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7d33069-fa77-4de9-b955-8fbca0a0f335", + "Definition": {}, + "Gloss": { + "en": "branch", + "pt": "ramo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b0593e44-fa76-4751-b234-214f35ea70d8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6a7921e6-0eed-496f-8fce-251cc73f54b2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "432dc2da-4831-42a0-b39e-bdae47c2bb9e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sasany" + }, + "CitationForm": { + "seh": "sasanya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "22d82ffc-5fb1-433d-b1d7-ea2f0cf74946", + "Order": 1, + "DeletedAt": null, + "EntryId": "432dc2da-4831-42a0-b39e-bdae47c2bb9e", + "Definition": {}, + "Gloss": { + "en": "prepare", + "pt": "arranjar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8b5c6127-d8ce-4eac-b126-429d84212df9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "22d82ffc-5fb1-433d-b1d7-ea2f0cf74946", + "DeletedAt": null + } + ] + }, + { + "Id": "971be336-8e62-4ad2-97e7-47562f7cf80d", + "Order": 2, + "DeletedAt": null, + "EntryId": "432dc2da-4831-42a0-b39e-bdae47c2bb9e", + "Definition": {}, + "Gloss": { + "en": "straighten up", + "pt": "endireitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "110c0a2b-edb5-4cde-b23a-55bb6a1652f6", + "DeletedAt": null, + "LexemeForm": { + "seh": "sawasawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "d3d45414-258a-41bf-b107-dc316f5eb53e", + "Order": 1, + "DeletedAt": null, + "EntryId": "110c0a2b-edb5-4cde-b23a-55bb6a1652f6", + "Definition": {}, + "Gloss": { + "en": "equal", + "pt": "igual" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "030737e9-089d-4df6-8187-9a30302ac08c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d3d45414-258a-41bf-b107-dc316f5eb53e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc31fdc8-2604-42d7-99c8-34e27ad3dac2", + "DeletedAt": null, + "LexemeForm": { + "seh": "sek" + }, + "CitationForm": { + "seh": "seka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5ce4fc2d-6488-4049-be7b-3d6685c21093", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc31fdc8-2604-42d7-99c8-34e27ad3dac2", + "Definition": {}, + "Gloss": { + "en": "laugh", + "pt": "rir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9f6c011e-714d-4cf8-ae62-de570390a443", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "5ce4fc2d-6488-4049-be7b-3d6685c21093", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1cddb6ce-314a-420a-b796-ec280c1fd71c", + "DeletedAt": null, + "LexemeForm": { + "seh": "semb" + }, + "CitationForm": { + "seh": "semba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "23e2e383-ef7c-4d19-a72f-1621ef30e0ed", + "Order": 1, + "DeletedAt": null, + "EntryId": "1cddb6ce-314a-420a-b796-ec280c1fd71c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "engage, go to the girl\u0027s father and ask to marry", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "become engaged", + "pt": "namorar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "99bfee17-4cb9-484c-8f81-335dd1322736", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "23e2e383-ef7c-4d19-a72f-1621ef30e0ed", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f30b367-5496-4f7a-8c6b-95711f1b69e2", + "DeletedAt": null, + "LexemeForm": { + "seh": "senzek" + }, + "CitationForm": { + "seh": "senzeka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "28376e7b-02a2-41bb-87bd-7161ce3ac904", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f30b367-5496-4f7a-8c6b-95711f1b69e2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "children\u0027s play, noncompetative play", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "brincar de crianc\u0327as", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "play", + "pt": "brincar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "94a80045-7351-4c72-a570-d242e410c013", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyezeze; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "28376e7b-02a2-41bb-87bd-7161ce3ac904", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "96241026-4980-4758-b979-574ff19c4e3c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sere" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "5c30367b-6a13-44e2-9d98-b41917c9eb99", + "Order": 1, + "DeletedAt": null, + "EntryId": "96241026-4980-4758-b979-574ff19c4e3c", + "Definition": {}, + "Gloss": { + "en": "eight", + "pt": "oito" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7fd37087-140b-42b2-9e86-c1c5e4d2afa2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "5c30367b-6a13-44e2-9d98-b41917c9eb99", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "43d895e7-f155-478b-b6fb-2ba65b267385", + "DeletedAt": null, + "LexemeForm": { + "seh": "si" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "91a80f4d-c929-4b7c-ab95-403544fb9b61", + "Order": 1, + "DeletedAt": null, + "EntryId": "43d895e7-f155-478b-b6fb-2ba65b267385", + "Definition": { + "en": { + "Spans": [ + { + "Text": "first person singular negative", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "primeiro pessoa singular negativo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1SNEG", + "pt": "1SNEG" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d03f39d0-10ef-4d35-b13b-a965124a9230", + "DeletedAt": null, + "LexemeForm": { + "seh": "sia" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3df4ef3e-1ef2-4b5e-a41e-ebd024335c8c", + "Order": 1, + "DeletedAt": null, + "EntryId": "d03f39d0-10ef-4d35-b13b-a965124a9230", + "Definition": {}, + "Gloss": { + "en": "leave someone", + "pt": "deixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3204f76-ce79-47c7-8c1f-4ddb81f74be0", + "DeletedAt": null, + "LexemeForm": { + "seh": "simango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41acb687-44b9-4c4d-b448-122dea15f267", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3204f76-ce79-47c7-8c1f-4ddb81f74be0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "Samango monkey", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "monkey", + "pt": "macaco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b8c0a1ee-e7fc-4282-a8a1-82ce009ba838", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "41acb687-44b9-4c4d-b448-122dea15f267", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3f3107da-fee5-4761-8bb3-d2b02ae5a1ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "simb" + }, + "CitationForm": { + "seh": "simba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e103ab2e-f827-4438-96bf-86ef4267e9aa", + "Order": 1, + "DeletedAt": null, + "EntryId": "3f3107da-fee5-4761-8bb3-d2b02ae5a1ed", + "Definition": {}, + "Gloss": { + "en": "give praise", + "pt": "dar lavor" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3e2068be-090c-41e9-8b43-e25ca034eb31", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "e103ab2e-f827-4438-96bf-86ef4267e9aa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d3ffe2c6-91ba-470a-8292-1622d94335ec", + "DeletedAt": null, + "LexemeForm": { + "seh": "simbisis" + }, + "CitationForm": { + "seh": "simbisisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d4030108-039e-48d9-a868-901c2072385d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d3ffe2c6-91ba-470a-8292-1622d94335ec", + "Definition": { + "en": { + "Spans": [ + { + "Text": "complete, explain, fulfill", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "compete", + "pt": "completar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4bf93f34-5eee-4007-9e47-0ab8a0f5663a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d4030108-039e-48d9-a868-901c2072385d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "68cd4cbe-82c3-496b-bdb8-33195ac3bfde", + "DeletedAt": null, + "LexemeForm": { + "seh": "sine" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6737d4ac-143a-4729-829e-f5f8bd391e06", + "Order": 1, + "DeletedAt": null, + "EntryId": "68cd4cbe-82c3-496b-bdb8-33195ac3bfde", + "Definition": {}, + "Gloss": { + "en": "it is not", + "pt": "na\u0303o e\u0301" + }, + "PartOfSpeech": { + "Id": "748af620-8cd0-4364-a951-c234306f5b9f", + "Name": { + "en": "Copula Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "748af620-8cd0-4364-a951-c234306f5b9f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fd281030-363a-47ea-9e4c-96bf1bffc0a3", + "DeletedAt": null, + "LexemeForm": { + "seh": "sinyala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94ee3153-27ce-49a1-9a8a-5fc0afa329c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "fd281030-363a-47ea-9e4c-96bf1bffc0a3", + "Definition": {}, + "Gloss": { + "en": "prostitute", + "pt": "prostituta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9e3a735-cf26-4960-83f6-f5546eab2cdc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:20 (says half caste); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "94ee3153-27ce-49a1-9a8a-5fc0afa329c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b0977c6c-e092-45a9-86b9-023cb2bee311", + "DeletedAt": null, + "LexemeForm": { + "seh": "sirir" + }, + "CitationForm": { + "seh": "sirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "57bfaa1f-735b-4c81-97aa-69b2efd9b530", + "Order": 1, + "DeletedAt": null, + "EntryId": "b0977c6c-e092-45a9-86b9-023cb2bee311", + "Definition": {}, + "Gloss": { + "en": "be greedy", + "pt": "cobic\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a49a064-ca35-400d-9062-74284af211ec", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndasirira nguwo yako.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Cobicei a tua ropa.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "57bfaa1f-735b-4c81-97aa-69b2efd9b530", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bcbe35eb-8f26-41fe-84e6-e88c179248ff", + "DeletedAt": null, + "LexemeForm": { + "seh": "sirizw" + }, + "CitationForm": { + "seh": "sirizwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eca32c60-3044-4c43-9ba3-7192e3155034", + "Order": 1, + "DeletedAt": null, + "EntryId": "bcbe35eb-8f26-41fe-84e6-e88c179248ff", + "Definition": {}, + "Gloss": { + "en": "be upset", + "pt": "ficar chateado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c02c708b-1a28-48a1-953f-3e11507f7f96", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:41", + "Ws": "en" + } + ] + }, + "SenseId": "eca32c60-3044-4c43-9ba3-7192e3155034", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "308ec1c8-9754-4c9a-88ed-eacdf6fea89c", + "DeletedAt": null, + "LexemeForm": { + "seh": "sitir" + }, + "CitationForm": { + "seh": "sitira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea17990f-9b07-43fe-b097-597f7e238156", + "Order": 1, + "DeletedAt": null, + "EntryId": "308ec1c8-9754-4c9a-88ed-eacdf6fea89c", + "Definition": {}, + "Gloss": { + "en": "impede", + "pt": "impedir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e69179d-c185-4f66-941d-de3afe08b79d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ea17990f-9b07-43fe-b097-597f7e238156", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "05640c89-1b5b-463b-83e9-778928d23fc7", + "DeletedAt": null, + "LexemeForm": { + "seh": "siy" + }, + "CitationForm": { + "seh": "siya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "54abd687-0f45-4550-8779-511abb42721d", + "Order": 1, + "DeletedAt": null, + "EntryId": "05640c89-1b5b-463b-83e9-778928d23fc7", + "Definition": {}, + "Gloss": { + "en": "leave someone", + "pt": "deixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a93c42a8-dc8b-46a7-a83c-1501144f6507", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu wanga, Mulungu wanga, wandisiiranji?", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "54abd687-0f45-4550-8779-511abb42721d", + "DeletedAt": null + } + ] + }, + { + "Id": "32467084-7626-49a5-81ad-ffd52563622c", + "Order": 2, + "DeletedAt": null, + "EntryId": "05640c89-1b5b-463b-83e9-778928d23fc7", + "Definition": {}, + "Gloss": { + "en": "die", + "pt": "morrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cd852ab7-6c27-4366-bc22-5d44f425badf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "N\u0027tenda atisiya", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "The sick one has left us (died).", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "O doente nos deixou (morreu).", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "32467084-7626-49a5-81ad-ffd52563622c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f85e330e-dc79-447d-a5ea-979382f8beee", + "DeletedAt": null, + "LexemeForm": { + "seh": "sodz" + }, + "CitationForm": { + "seh": "sodza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "feb33bce-b6eb-4ceb-ac7d-4576e2624962", + "Order": 1, + "DeletedAt": null, + "EntryId": "f85e330e-dc79-447d-a5ea-979382f8beee", + "Definition": {}, + "Gloss": { + "en": "hunt", + "pt": "cac\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a858111f-ed4f-4a2e-98fa-47a2cecec217", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "feb33bce-b6eb-4ceb-ac7d-4576e2624962", + "DeletedAt": null + } + ] + }, + { + "Id": "b9579104-0efb-4b6b-9e41-023c12911774", + "Order": 2, + "DeletedAt": null, + "EntryId": "f85e330e-dc79-447d-a5ea-979382f8beee", + "Definition": {}, + "Gloss": { + "en": "fish", + "pt": "pescar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "570efd59-0e7d-4717-9d03-e3aa0a99fb15", + "DeletedAt": null, + "LexemeForm": { + "seh": "sogol" + }, + "CitationForm": { + "seh": "sogola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8057b6f0-b920-4858-88d2-309e1eed6b9a", + "Order": 1, + "DeletedAt": null, + "EntryId": "570efd59-0e7d-4717-9d03-e3aa0a99fb15", + "Definition": {}, + "Gloss": { + "en": "go in front", + "pt": "adiantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "275ef75c-09ca-418a-8da6-d965f272ba00", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8057b6f0-b920-4858-88d2-309e1eed6b9a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "132f1c22-92e0-4b68-838c-c20ff24aa3ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "som" + }, + "CitationForm": { + "seh": "soma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8e74c118-c9ef-4a6e-8c67-13d0f309763e", + "Order": 1, + "DeletedAt": null, + "EntryId": "132f1c22-92e0-4b68-838c-c20ff24aa3ac", + "Definition": {}, + "Gloss": { + "en": "lack", + "pt": "faultar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1666decc-8f0b-49ea-acde-de80a464c2c3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8e74c118-c9ef-4a6e-8c67-13d0f309763e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "375d478e-91a5-4bf7-bfd5-a1fce8777d23", + "DeletedAt": null, + "LexemeForm": { + "seh": "son" + }, + "CitationForm": { + "seh": "sona" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", + "Order": 1, + "DeletedAt": null, + "EntryId": "375d478e-91a5-4bf7-bfd5-a1fce8777d23", + "Definition": {}, + "Gloss": { + "en": "sew", + "pt": "coser" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "14619413-a646-4223-b467-91556bf06e09", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndasona nguwo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eu cosi roupas.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", + "DeletedAt": null + }, + { + "Id": "f066bdff-2843-46ff-9ec5-1eac7de82d78", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nguwa nyakusoniwa", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Ropa cosida", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "ac6fa946-3a79-4193-a4b5-0cbcf2dd3af6", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e3def7f9-5c60-4550-a87a-44c6ef539815", + "DeletedAt": null, + "LexemeForm": { + "seh": "sow" + }, + "CitationForm": { + "seh": "sowa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f752860-a94c-40e1-8e00-e21a9de5f0cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "e3def7f9-5c60-4550-a87a-44c6ef539815", + "Definition": {}, + "Gloss": { + "en": "not exist", + "pt": "ter falta" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00742720-4968-4fbc-a5ed-5a634dbe6518", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "akhafamba mbuto dza kusowa anthu maningi.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "he walked in a place of not many people", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "1f752860-a94c-40e1-8e00-e21a9de5f0cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "70e9e2a1-964d-417e-8385-6734f0e9b3b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "sowek" + }, + "CitationForm": { + "seh": "soweka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3638e80f-f10d-4940-870c-8e11a37c1741", + "Order": 1, + "DeletedAt": null, + "EntryId": "70e9e2a1-964d-417e-8385-6734f0e9b3b7", + "Definition": {}, + "Gloss": { + "en": "lack", + "pt": "faltar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1dcbb6f-4d8d-49dc-8ed9-e051fa5c21e0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3638e80f-f10d-4940-870c-8e11a37c1741", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1ba747b1-77c0-4ebe-b541-1150596df1a2", + "DeletedAt": null, + "LexemeForm": { + "seh": "subenz" + }, + "CitationForm": { + "seh": "subenza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "56aa7d5b-4657-48a4-9279-8ae8d6b1d47d", + "Order": 1, + "DeletedAt": null, + "EntryId": "1ba747b1-77c0-4ebe-b541-1150596df1a2", + "Definition": {}, + "Gloss": { + "en": "work", + "pt": "trabalhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f5320918-183d-47cb-8d95-28425c88269c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Musasubenza kupi?", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "trabalha a onde?", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "56aa7d5b-4657-48a4-9279-8ae8d6b1d47d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57009cdb-cd11-451f-8340-05dce62ccb40", + "DeletedAt": null, + "LexemeForm": { + "seh": "sudzul" + }, + "CitationForm": { + "seh": "sudzula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e7918fd5-b343-4516-9e0f-47742369c08e", + "Order": 1, + "DeletedAt": null, + "EntryId": "57009cdb-cd11-451f-8340-05dce62ccb40", + "Definition": {}, + "Gloss": { + "en": "untie", + "pt": "desatar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "00bc9cb8-8521-4de5-a49a-f739bc416546", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e7918fd5-b343-4516-9e0f-47742369c08e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "446538d9-1b1e-4b45-97c5-07af29dc72e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "sukun" + }, + "CitationForm": { + "seh": "sukuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "31c1e263-4dbc-402f-a0f3-82d860f258f4", + "Order": 1, + "DeletedAt": null, + "EntryId": "446538d9-1b1e-4b45-97c5-07af29dc72e9", + "Definition": {}, + "Gloss": { + "en": "pinch", + "pt": "belisca\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "05139c3e-2e20-47b6-816a-59018702ee82", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist (said arranhar)", + "Ws": "en" + } + ] + }, + "SenseId": "31c1e263-4dbc-402f-a0f3-82d860f258f4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8b4c2f6c-7bc3-41da-9705-8967901fdb1e", + "DeletedAt": null, + "LexemeForm": { + "seh": "sulo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8b58fac-14b5-4eb0-8a25-03a5f365ea4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "8b4c2f6c-7bc3-41da-9705-8967901fdb1e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "rabbit", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rabbit", + "pt": "coelho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d52bc50d-8279-467f-a7ed-958ef06e266e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo; Orth", + "Ws": "en" + } + ] + }, + "SenseId": "c8b58fac-14b5-4eb0-8a25-03a5f365ea4c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e36d67d0-39f8-4b80-9173-19cac2ff12c5", + "DeletedAt": null, + "LexemeForm": { + "seh": "sum" + }, + "CitationForm": { + "seh": "suma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f411efec-e9a4-42da-9842-8ef770cbf71a", + "Order": 1, + "DeletedAt": null, + "EntryId": "e36d67d0-39f8-4b80-9173-19cac2ff12c5", + "Definition": {}, + "Gloss": { + "en": "complain", + "pt": "queixar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1818a6fa-ddc0-44ff-96a0-6e788c97c0b3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f411efec-e9a4-42da-9842-8ef770cbf71a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1abdc28d-398c-429f-bead-7202899d3885", + "DeletedAt": null, + "LexemeForm": { + "seh": "supada" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "398a49fe-4e56-4627-ae97-cb65ba976267", + "Order": 1, + "DeletedAt": null, + "EntryId": "1abdc28d-398c-429f-bead-7202899d3885", + "Definition": {}, + "Gloss": { + "en": "machede", + "pt": "catana" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f98ff9c-dcc3-4ed9-a24b-c2420a70c705", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "398a49fe-4e56-4627-ae97-cb65ba976267", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "439f88cd-0acc-42bd-acc4-db26e80c827c", + "DeletedAt": null, + "LexemeForm": { + "seh": "suzumir" + }, + "CitationForm": { + "seh": "suzumira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d06ecf71-49da-4964-9580-9579fd3f4d19", + "Order": 1, + "DeletedAt": null, + "EntryId": "439f88cd-0acc-42bd-acc4-db26e80c827c", + "Definition": {}, + "Gloss": { + "en": "peek", + "pt": "espreitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "bc7f452f-898e-477a-bc7d-a18c96244169", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "d06ecf71-49da-4964-9580-9579fd3f4d19", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2cd63e9-b1d2-4a3b-b26b-0e5ec67a26d6", + "DeletedAt": null, + "LexemeForm": { + "seh": "sw" + }, + "CitationForm": { + "seh": "swa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1cf49a8e-38e9-414f-b537-8f83f8b48dc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2cd63e9-b1d2-4a3b-b26b-0e5ec67a26d6", + "Definition": {}, + "Gloss": { + "en": "break", + "pt": "quebrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8335ae3a-2734-4b4e-8d08-7b19d8414721", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:4 (bsu a); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "1cf49a8e-38e9-414f-b537-8f83f8b48dc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7f5599cb-54e7-41bb-884d-e1aef553b0f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "taik" + }, + "CitationForm": { + "seh": "taika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "13b95c7a-e9f5-4949-a5fa-4ee19fabe2b5", + "Order": 1, + "DeletedAt": null, + "EntryId": "7f5599cb-54e7-41bb-884d-e1aef553b0f5", + "Definition": {}, + "Gloss": { + "en": "get lost", + "pt": "perder-se" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "41878109-2f74-462f-b9d7-ce5dc0daa666", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "13b95c7a-e9f5-4949-a5fa-4ee19fabe2b5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c7bed3b1-eb76-45d1-82f5-e9c8f0286af2", + "DeletedAt": null, + "LexemeForm": { + "seh": "tair" + }, + "CitationForm": { + "seh": "taira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ca663076-d46e-4916-9152-fb4b1ef79f28", + "Order": 1, + "DeletedAt": null, + "EntryId": "c7bed3b1-eb76-45d1-82f5-e9c8f0286af2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "throw onto someone", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "deitar sobre alguem", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "throw", + "pt": "deitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d2ece3f3-684d-4da2-aa8b-7708a7c66795", + "DeletedAt": null, + "LexemeForm": { + "seh": "tairirw" + }, + "CitationForm": { + "seh": "tairirwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "587500c7-c9d0-4ca7-be10-38f22967b04d", + "Order": 1, + "DeletedAt": null, + "EntryId": "d2ece3f3-684d-4da2-aa8b-7708a7c66795", + "Definition": {}, + "Gloss": { + "en": "be accepted", + "pt": "ser aceite" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d265b2ee-d382-4868-b7b0-a60d83643d5d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ta\u0301limba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ef17635e-7bf6-4081-9faa-89b79f750a92", + "Order": 1, + "DeletedAt": null, + "EntryId": "d265b2ee-d382-4868-b7b0-a60d83643d5d", + "Definition": {}, + "Gloss": { + "en": "bed", + "pt": "cama" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0f2c3405-5b48-4c87-b13b-42c044aee3f6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ef17635e-7bf6-4081-9faa-89b79f750a92", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "499207d4-cf8f-4272-9dcc-723871224c8b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tamb" + }, + "CitationForm": { + "seh": "tamba" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "61ba3dff-0d4a-4f4f-a3c9-da3d0ae58cd9", + "Order": 1, + "DeletedAt": null, + "EntryId": "499207d4-cf8f-4272-9dcc-723871224c8b", + "Definition": { + "en": { + "Spans": [ + { + "Text": "catch suffering", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "apanhar sofrimento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "suffer", + "pt": "sofrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "500414b0-0b87-4bf4-a8ec-f1a3e6331b9c", + "DeletedAt": null, + "LexemeForm": { + "seh": "tambir" + }, + "CitationForm": { + "seh": "tambira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ffa46537-54b5-4f01-a275-fce0693eea51", + "Order": 1, + "DeletedAt": null, + "EntryId": "500414b0-0b87-4bf4-a8ec-f1a3e6331b9c", + "Definition": {}, + "Gloss": { + "en": "receive", + "pt": "receber" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "baba77bd-a023-4c00-b40f-3b5353a94772", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "ffa46537-54b5-4f01-a275-fce0693eea51", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "907917e1-61ea-4f3d-a5fa-3295dbe4e7a7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tani" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b9f6b2b3-fe70-4b2b-9d90-47d4b36194bb", + "Order": 1, + "DeletedAt": null, + "EntryId": "907917e1-61ea-4f3d-a5fa-3295dbe4e7a7", + "Definition": {}, + "Gloss": { + "en": "how?", + "pt": "como?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c018e539-9c31-4a2a-9736-d896328ea4f4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b9f6b2b3-fe70-4b2b-9d90-47d4b36194bb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "148a2e40-1bce-4854-b868-8514de1ef583", + "DeletedAt": null, + "LexemeForm": { + "seh": "tanthatu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "35b68d05-0492-4bc2-9003-a3b443d6bb08", + "Order": 1, + "DeletedAt": null, + "EntryId": "148a2e40-1bce-4854-b868-8514de1ef583", + "Definition": {}, + "Gloss": { + "en": "six", + "pt": "seis" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "536b66e9-5b56-4e3e-ba7b-8fe91daa7c87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "35b68d05-0492-4bc2-9003-a3b443d6bb08", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "409b80d2-e926-4449-911c-956d23f7daef", + "DeletedAt": null, + "LexemeForm": { + "seh": "tap" + }, + "CitationForm": { + "seh": "tapa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "daeef4ba-0630-46d0-85f7-d42aea9bdc51", + "Order": 1, + "DeletedAt": null, + "EntryId": "409b80d2-e926-4449-911c-956d23f7daef", + "Definition": {}, + "Gloss": { + "en": "scoop", + "pt": "tirar gra\u0303os" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "beef260e-a484-4292-a903-a97b671ecd68", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "daeef4ba-0630-46d0-85f7-d42aea9bdc51", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f7a8f21b-4304-4e87-9721-54c4097b3767", + "DeletedAt": null, + "LexemeForm": { + "seh": "tapatw" + }, + "CitationForm": { + "seh": "tapatwa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fd6925ea-62b7-484d-b7f3-3e26652c2876", + "Order": 1, + "DeletedAt": null, + "EntryId": "f7a8f21b-4304-4e87-9721-54c4097b3767", + "Definition": {}, + "Gloss": { + "en": "be enslaved", + "pt": "ser escravo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "48331395-f0b7-4a64-b754-e4ddf699e698", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fd6925ea-62b7-484d-b7f3-3e26652c2876", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f6b8a0da-b97d-4511-9562-bec2277c9c33", + "DeletedAt": null, + "LexemeForm": { + "seh": "tapik" + }, + "CitationForm": { + "seh": "tapika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2b1e6e5c-832b-4c98-bab7-3aab2e4ed099", + "Order": 1, + "DeletedAt": null, + "EntryId": "f6b8a0da-b97d-4511-9562-bec2277c9c33", + "Definition": {}, + "Gloss": { + "en": "vomit", + "pt": "vomitar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "272d4669-d22a-484f-b784-efac759790da", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "2b1e6e5c-832b-4c98-bab7-3aab2e4ed099", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45f878d6-86a0-42a7-a9f2-ed74fb11f519", + "DeletedAt": null, + "LexemeForm": { + "seh": "tatu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "275e89aa-2531-4a04-8cc4-c633939186af", + "Order": 1, + "DeletedAt": null, + "EntryId": "45f878d6-86a0-42a7-a9f2-ed74fb11f519", + "Definition": {}, + "Gloss": { + "en": "three", + "pt": "tre\u0302s" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2f838722-389b-4048-9d1c-a48542f17fe3", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ana atatu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:33", + "Ws": "en" + } + ] + }, + "SenseId": "275e89aa-2531-4a04-8cc4-c633939186af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tawir" + }, + "CitationForm": { + "seh": "tawira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be445097-46a4-456d-9ce2-cd5df74eedb0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "respond", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "responder", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "respond", + "pt": "responder" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cff5fb2a-3529-4640-8d38-963abf821737", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "be445097-46a4-456d-9ce2-cd5df74eedb0", + "DeletedAt": null + } + ] + }, + { + "Id": "3ce69d12-3a32-44e4-8761-314d11d493b0", + "Order": 2, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "agree", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "concordar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "agree", + "pt": "concordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "082609f1-948d-4d7e-88a8-bdbdf9c07aa8", + "Order": 3, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "believe", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cre", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "belive", + "pt": "crer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "9de92b45-c94c-4ad6-b43a-a91c3627b415", + "Order": 4, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "trust", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "confiar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "trust", + "pt": "confiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "604b2b52-bb1a-4a4f-a945-58d91f6583ff", + "Order": 5, + "DeletedAt": null, + "EntryId": "c70cd8d8-f8a1-40b4-a735-fb5f70b1a1a9", + "Definition": { + "en": { + "Spans": [ + { + "Text": "accept", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "acreditar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "accept", + "pt": "acreditar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "30169f43-6797-4216-950d-36b330ca2c85", + "DeletedAt": null, + "LexemeForm": { + "seh": "tay" + }, + "CitationForm": { + "seh": "taya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9db6aecc-bae4-42fe-9a51-0e6141043296", + "Order": 1, + "DeletedAt": null, + "EntryId": "30169f43-6797-4216-950d-36b330ca2c85", + "Definition": {}, + "Gloss": { + "en": "throw out", + "pt": "deitar fora" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cf0d2836-5d8a-45de-9fc0-cbc294dc138c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9db6aecc-bae4-42fe-9a51-0e6141043296", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "af29747d-2cc8-47e4-8d31-cd87905ab185", + "DeletedAt": null, + "LexemeForm": { + "seh": "tayu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "Order": 1, + "DeletedAt": null, + "EntryId": "af29747d-2cc8-47e4-8d31-cd87905ab185", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "na\u0303o , usado por e\u0302mfase", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "not at all", + "pt": "nada" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "16c4d35c-1267-434e-8cc6-ccbe251c4a37", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "si- aweni tayu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "neg-eles(um groupo) na\u0303o", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "cc5f5926-b548-4efd-a6e0-96d501f30dec", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Wayenda xicola leru? Nkhabe, [sidaenda tayu.]", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Foste escola hoje\u0301 na\u0303o neg-fui na\u0303o", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "1e882aa3-5a06-4c43-b030-25ffe79ba369", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkhabe kucicita", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Na\u0303o fazer (eu na\u0303o fiz)", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "5be0c856-e85b-4d91-9bca-b4e1f97b9d50", + "Order": 4, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nkabe kucifuna [tayu] - present", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + }, + { + "Id": "f7e5a22f-1c75-4d58-9c83-360f4411a1f6", + "Order": 5, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Sindacifuna [tayu] - past", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "b458667f-e9c1-4976-a0d9-5ad860d48f1b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d25cfdbe-1f0d-4dea-ab0a-0afa51f8a226", + "DeletedAt": null, + "LexemeForm": { + "seh": "tebzala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a8395899-5677-4b10-ad80-d2e54c4d5b30", + "Order": 1, + "DeletedAt": null, + "EntryId": "d25cfdbe-1f0d-4dea-ab0a-0afa51f8a226", + "Definition": {}, + "Gloss": { + "en": "father-in-law", + "pt": "sogro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5c9f4626-1c11-4da6-8100-10258a3de09b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook (tebzala)", + "Ws": "en" + } + ] + }, + "SenseId": "a8395899-5677-4b10-ad80-d2e54c4d5b30", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e0635d81-8228-4ff7-8b7b-55f940d82f4b", + "DeletedAt": null, + "LexemeForm": { + "seh": "tekeny" + }, + "CitationForm": { + "seh": "tekenya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "Order": 1, + "DeletedAt": null, + "EntryId": "e0635d81-8228-4ff7-8b7b-55f940d82f4b", + "Definition": {}, + "Gloss": { + "en": "shake", + "pt": "mexer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ba4e9983-0fc6-4e44-8f47-b0ca2a988f40", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndatekenya karu", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Conduzir carro", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "DeletedAt": null + }, + { + "Id": "7b5b26af-1065-4c9e-b256-ed246155e847", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Phesi ya kutekenyeka na mphepo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Canic\u0327o mudado pelo vento.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "DeletedAt": null + }, + { + "Id": "f6dcc2ad-61c5-4978-abf3-acd9403d6882", + "Order": 3, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndatekenya muti", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Shake tree", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "66ecc02e-871a-44f0-b491-dc31d8b178bd", + "DeletedAt": null + } + ] + }, + { + "Id": "7d04a11e-a1cc-4c15-a02c-1867b204ccd1", + "Order": 2, + "DeletedAt": null, + "EntryId": "e0635d81-8228-4ff7-8b7b-55f940d82f4b", + "Definition": {}, + "Gloss": { + "en": "drive", + "pt": "conduzir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7898fcb4-34f0-4255-afcd-5d421ee02cf1", + "DeletedAt": null, + "LexemeForm": { + "seh": "teker" + }, + "CitationForm": { + "seh": "tekera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "660286a9-9d95-41b5-9a83-0ade27159575", + "Order": 1, + "DeletedAt": null, + "EntryId": "7898fcb4-34f0-4255-afcd-5d421ee02cf1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "inappropriate behavior repeated or a sickness that continues", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "it\u0027s too much", + "pt": "e\u0301 demais" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ec301ca4-2289-4e6e-9b3f-16415ac8052e", + "DeletedAt": null, + "LexemeForm": { + "seh": "teketesan" + }, + "CitationForm": { + "seh": "teketesana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0cff3926-500e-48fa-a76e-586fa07b315b", + "Order": 1, + "DeletedAt": null, + "EntryId": "ec301ca4-2289-4e6e-9b3f-16415ac8052e", + "Definition": {}, + "Gloss": { + "en": "argue", + "pt": "discutir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f6679303-a1d2-4863-a062-f51e9abd67ec", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0cff3926-500e-48fa-a76e-586fa07b315b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "572a51a1-3a92-4d65-95d0-a1278a445550", + "DeletedAt": null, + "LexemeForm": { + "seh": "tem" + }, + "CitationForm": { + "seh": "tema" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78ffd0fa-3cef-472b-95ba-5212d0fd9cc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "572a51a1-3a92-4d65-95d0-a1278a445550", + "Definition": {}, + "Gloss": { + "en": "cut", + "pt": "cortar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8e77ebb7-f44c-451c-952d-b9a2bebeae41", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "78ffd0fa-3cef-472b-95ba-5212d0fd9cc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4128ccd6-d6fa-4128-9de8-046444459ad9", + "DeletedAt": null, + "LexemeForm": { + "seh": "temek" + }, + "CitationForm": { + "seh": "temeka" + }, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ce11eb01-66ef-4c4f-a2aa-d39b0d8bc02d", + "Order": 1, + "DeletedAt": null, + "EntryId": "4128ccd6-d6fa-4128-9de8-046444459ad9", + "Definition": {}, + "Gloss": { + "en": "ferido", + "pt": "wounded" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d5b5fff3-8af6-449e-8709-6f5a30bf28b3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tenepa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9bc220f0-6d26-4dab-9dcd-ee5814702e7e", + "Order": 1, + "DeletedAt": null, + "EntryId": "d5b5fff3-8af6-449e-8709-6f5a30bf28b3", + "Definition": {}, + "Gloss": { + "en": "in this way", + "pt": "deste modo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e2df5029-cf41-4e40-8f5d-8280ad602f37", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9bc220f0-6d26-4dab-9dcd-ee5814702e7e", + "DeletedAt": null + } + ] + }, + { + "Id": "103c6d03-e0ce-4210-8c46-543c91a9a4fc", + "Order": 2, + "DeletedAt": null, + "EntryId": "d5b5fff3-8af6-449e-8709-6f5a30bf28b3", + "Definition": {}, + "Gloss": { + "en": "so", + "pt": "assim" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "50d5fa93-3d1c-4c7c-865c-de66b27a19f5", + "DeletedAt": null, + "LexemeForm": { + "seh": "tenepo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "4bd08dc0-41cf-4d75-93c7-8767c81179d1", + "Order": 1, + "DeletedAt": null, + "EntryId": "50d5fa93-3d1c-4c7c-865c-de66b27a19f5", + "Definition": {}, + "Gloss": { + "en": "in that way", + "pt": "desse modo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eadf9a9e-e9e4-4bb2-b4d3-c4b8f91e2af8", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4bd08dc0-41cf-4d75-93c7-8767c81179d1", + "DeletedAt": null + } + ] + }, + { + "Id": "d016f216-ef2f-4307-ac89-f31679d2e8fe", + "Order": 2, + "DeletedAt": null, + "EntryId": "50d5fa93-3d1c-4c7c-865c-de66b27a19f5", + "Definition": {}, + "Gloss": { + "en": "so" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "533833e0-0775-46fc-96a4-c9a402458353", + "DeletedAt": null, + "LexemeForm": { + "seh": "tey" + }, + "CitationForm": { + "seh": "teya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09b9897f-e966-4ebb-b14b-4d39f7cffae1", + "Order": 1, + "DeletedAt": null, + "EntryId": "533833e0-0775-46fc-96a4-c9a402458353", + "Definition": {}, + "Gloss": { + "en": "give birth", + "pt": "parir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0ab1f906-e3fc-4ba9-ba8a-167b1739d7fb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "09b9897f-e966-4ebb-b14b-4d39f7cffae1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f61f8753-b15d-44b9-ad22-2e14c70a6437", + "DeletedAt": null, + "LexemeForm": { + "seh": "thabuk" + }, + "CitationForm": { + "seh": "thabuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c4e98335-0d70-47d8-b43d-f7ee335ad565", + "Order": 1, + "DeletedAt": null, + "EntryId": "f61f8753-b15d-44b9-ad22-2e14c70a6437", + "Definition": {}, + "Gloss": { + "en": "suffer", + "pt": "sofrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b73fe253-8ddc-42c3-96ba-6a21cba6afda", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c4e98335-0d70-47d8-b43d-f7ee335ad565", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "5a600e79-f024-41b3-a787-9d1357d931cf", + "DeletedAt": null, + "LexemeForm": { + "seh": "thabus" + }, + "CitationForm": { + "seh": "thabusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1f5908d1-d132-4290-b5cf-9c45bd76e15d", + "Order": 1, + "DeletedAt": null, + "EntryId": "5a600e79-f024-41b3-a787-9d1357d931cf", + "Definition": {}, + "Gloss": { + "en": "punish", + "pt": "castigar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "22098c73-1fec-4416-a343-b8fb0758c7a7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1f5908d1-d132-4290-b5cf-9c45bd76e15d", + "DeletedAt": null + } + ] + }, + { + "Id": "636a6a22-a647-4966-aa8a-50d018f0a58b", + "Order": 2, + "DeletedAt": null, + "EntryId": "5a600e79-f024-41b3-a787-9d1357d931cf", + "Definition": {}, + "Gloss": { + "en": "suffer", + "pt": "sofrer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4c6cdc5c-7177-4f2d-8c44-d73cf530c95d", + "DeletedAt": null, + "LexemeForm": { + "seh": "tako" + }, + "CitationForm": { + "seh": "thako" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e834c2bb-bd64-45cf-ac25-8cfa82fd4f4d", + "Order": 1, + "DeletedAt": null, + "EntryId": "4c6cdc5c-7177-4f2d-8c44-d73cf530c95d", + "Definition": {}, + "Gloss": { + "en": "buttock", + "pt": "na\u0301dega" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2e48ad99-9431-4480-a398-567583aa0335", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "e834c2bb-bd64-45cf-ac25-8cfa82fd4f4d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7bfb038-e859-4063-8ead-a708d88d7a32", + "DeletedAt": null, + "LexemeForm": { + "seh": "thamang" + }, + "CitationForm": { + "seh": "thamanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3a72249d-72e0-4470-98b2-6fb64a0bd357", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7bfb038-e859-4063-8ead-a708d88d7a32", + "Definition": {}, + "Gloss": { + "en": "run", + "pt": "correr" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7452d1d2-eb8a-4c5b-acb4-23b85491ea96", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3a72249d-72e0-4470-98b2-6fb64a0bd357", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2f988d06-4001-4702-bf4e-a4da48cb7564", + "DeletedAt": null, + "LexemeForm": { + "seh": "thambo" + }, + "CitationForm": { + "seh": "thambo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04aaab1a-5495-42b1-a958-3f72ca3de6e8", + "Order": 1, + "DeletedAt": null, + "EntryId": "2f988d06-4001-4702-bf4e-a4da48cb7564", + "Definition": { + "en": { + "Spans": [ + { + "Text": "sky, space, where there are stars, not heaven", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ceu, firmamento", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "sky", + "pt": "ceu" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "109b3ea6-ebce-494d-b423-7b88b9f9f125", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "04aaab1a-5495-42b1-a958-3f72ca3de6e8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "980fbf75-8c1c-4dd1-890c-7f9f1b92e107", + "DeletedAt": null, + "LexemeForm": { + "seh": "thando" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "59b235d0-71ff-4d3d-9050-eb56582b40ca", + "Order": 1, + "DeletedAt": null, + "EntryId": "980fbf75-8c1c-4dd1-890c-7f9f1b92e107", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a place where noone lives, wilderness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "desert", + "pt": "deserto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "7988974c-99fd-40dd-9b5e-2d81ec603ddc", + "Name": { + "en": "Forest, grassland, desert" + }, + "Code": "1.2.1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "e35fb6e6-d506-4a42-b511-13485828df25", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Meque", + "Ws": "en" + } + ] + }, + "SenseId": "59b235d0-71ff-4d3d-9050-eb56582b40ca", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a7995695-c240-4962-8226-eda7227fa7cc", + "DeletedAt": null, + "LexemeForm": { + "seh": "thanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "7ef4f01e-1158-4b4f-8f05-427691f8a458", + "Order": 1, + "DeletedAt": null, + "EntryId": "a7995695-c240-4962-8226-eda7227fa7cc", + "Definition": {}, + "Gloss": { + "en": "pumpkin", + "pt": "abobora" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4be96911-b117-4f1c-805e-265b0746a442", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "7ef4f01e-1158-4b4f-8f05-427691f8a458", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f94cb8ec-f0fa-4889-b92f-26cdc3b34a24", + "DeletedAt": null, + "LexemeForm": { + "seh": "thanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "178130d5-6ddd-4fcf-8a25-2da2b42a9fef", + "Order": 1, + "DeletedAt": null, + "EntryId": "f94cb8ec-f0fa-4889-b92f-26cdc3b34a24", + "Definition": {}, + "Gloss": { + "en": "kraal", + "pt": "corral" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dadd7ec-7d11-4f32-a7ee-a3f770b2ee6b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "178130d5-6ddd-4fcf-8a25-2da2b42a9fef", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d1cc305b-b91a-403a-a50c-7071fbb7a4c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangir" + }, + "CitationForm": { + "seh": "thangira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5b6d85ba-d915-4ab4-a276-64c26534135b", + "Order": 1, + "DeletedAt": null, + "EntryId": "d1cc305b-b91a-403a-a50c-7071fbb7a4c8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to do before another person, preempt, \u0022beat to the punch\u0022", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "do first", + "pt": "anticipar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7b58e8f9-6ce4-4307-9f5a-9cf6af7224bb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5b6d85ba-d915-4ab4-a276-64c26534135b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3b6f4402-e670-469f-81c2-7b58341f52bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangwi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "17f9b2ab-451b-492b-905f-9429e4abc8ad", + "Order": 1, + "DeletedAt": null, + "EntryId": "3b6f4402-e670-469f-81c2-7b58341f52bb", + "Definition": {}, + "Gloss": { + "en": "because", + "pt": "porque" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1d9d1e66-cbcc-4ad5-ad8d-0e9c07028f44", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "sulo 037; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "17f9b2ab-451b-492b-905f-9429e4abc8ad", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a062fca8-cd51-47e5-bb98-b33542fbf36f", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangwi" + }, + "CitationForm": { + "seh": "thangwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6115d59e-4e92-405f-bcfb-459907d99e66", + "Order": 1, + "DeletedAt": null, + "EntryId": "a062fca8-cd51-47e5-bb98-b33542fbf36f", + "Definition": {}, + "Gloss": { + "en": "cause", + "pt": "por causa de" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8ca3e124-6147-4cdf-8120-63ca80b9369f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "6115d59e-4e92-405f-bcfb-459907d99e66", + "DeletedAt": null + } + ] + }, + { + "Id": "12fae128-5dc7-4143-8ebd-dc84bc3af794", + "Order": 2, + "DeletedAt": null, + "EntryId": "a062fca8-cd51-47e5-bb98-b33542fbf36f", + "Definition": {}, + "Gloss": { + "en": "guilt", + "pt": "culpa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d01e0fb0-0c57-4371-89ba-c959f4b818b4", + "DeletedAt": null, + "LexemeForm": { + "seh": "thangwi anji?" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "DiscontiguousPhrase", + "Senses": [ + { + "Id": "de0c5b8a-9f70-4dd3-890c-43931b7907fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d01e0fb0-0c57-4371-89ba-c959f4b818b4", + "Definition": {}, + "Gloss": { + "en": "why?", + "pt": "error porque?" + }, + "PartOfSpeech": { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2fbc4f3a-60b0-4038-a27f-1fc9e0d409db", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "de0c5b8a-9f70-4dd3-890c-43931b7907fc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "86092307-18bf-4b3c-8dda-480edb917a7a", + "DeletedAt": null, + "LexemeForm": { + "seh": "thanya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a99c2963-ef2c-4f80-a549-fb25ddcd3767", + "Order": 1, + "DeletedAt": null, + "EntryId": "86092307-18bf-4b3c-8dda-480edb917a7a", + "Definition": {}, + "Gloss": { + "en": "leprosy", + "pt": "lepra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c004700f-6d08-4032-8498-373fe0e6435e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thasik" + }, + "CitationForm": { + "seh": "thasika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "04116e62-fca1-4b32-b2c0-ca82646efe3a", + "Order": 1, + "DeletedAt": null, + "EntryId": "c004700f-6d08-4032-8498-373fe0e6435e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to spread out on the ground or hang out to dry", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "extend", + "pt": "estender" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "794777e5-9fcf-482a-b206-58c6c128df56", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "04116e62-fca1-4b32-b2c0-ca82646efe3a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e2bff9aa-8666-449d-814f-b96bfb88f9b9", + "DeletedAt": null, + "LexemeForm": { + "seh": "thaw" + }, + "CitationForm": { + "seh": "thawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ad2949d1-f16f-4086-a94e-3331fab7072d", + "Order": 1, + "DeletedAt": null, + "EntryId": "e2bff9aa-8666-449d-814f-b96bfb88f9b9", + "Definition": {}, + "Gloss": { + "en": "flee", + "pt": "fugir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "36fbdc51-1612-4d62-b28f-a6b86f352e91", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:24; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ad2949d1-f16f-4086-a94e-3331fab7072d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ff5bb86f-26ad-49ef-9743-231d46cb9531", + "DeletedAt": null, + "LexemeForm": { + "seh": "thawala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ed7a308d-7bec-4372-8253-d13abd1945b1", + "Order": 1, + "DeletedAt": null, + "EntryId": "ff5bb86f-26ad-49ef-9743-231d46cb9531", + "Definition": {}, + "Gloss": { + "en": "lake", + "pt": "lago" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "0c292ae0-a522-4c85-bcd4-4523e35f0615", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "ed7a308d-7bec-4372-8253-d13abd1945b1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "70987fd8-ffce-456b-b96a-736d2bb2d9ba", + "DeletedAt": null, + "LexemeForm": { + "seh": "thesi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "505400d3-1e4a-42ce-acef-758b92bed1fc", + "Order": 1, + "DeletedAt": null, + "EntryId": "70987fd8-ffce-456b-b96a-736d2bb2d9ba", + "Definition": {}, + "Gloss": { + "en": "frog", + "pt": "ra\u0303" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d239fbb1-882b-40f4-b3ee-1b1d9d28a6c3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "505400d3-1e4a-42ce-acef-758b92bed1fc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "093b10b6-c34c-4126-a4cb-0c209cfe66e3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tika" + }, + "CitationForm": { + "seh": "thika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "13592c25-2d1e-4c60-98ad-9ea4ccd6a6a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "093b10b6-c34c-4126-a4cb-0c209cfe66e3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "hyena", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "hyena", + "pt": "hiena" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a66816d0-e35a-42af-b184-11414ede1088", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19; Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "13592c25-2d1e-4c60-98ad-9ea4ccd6a6a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "daee4cec-ea74-485d-b750-3c46af48694c", + "DeletedAt": null, + "LexemeForm": { + "seh": "atikiti" + }, + "CitationForm": { + "seh": "thikiti" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94749a03-836e-4bd5-a4f1-9da4b3f5b05b", + "Order": 1, + "DeletedAt": null, + "EntryId": "daee4cec-ea74-485d-b750-3c46af48694c", + "Definition": {}, + "Gloss": { + "en": "ticket", + "pt": "bilhete" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "fc2c0495-ec68-4eef-b796-689b8ab1496a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "94749a03-836e-4bd5-a4f1-9da4b3f5b05b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45981d7b-4ef6-407a-a229-e2a9cd14d509", + "DeletedAt": null, + "LexemeForm": { + "seh": "thim" + }, + "CitationForm": { + "seh": "thima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3c5e68c4-1133-4d06-8f01-c33987ba51eb", + "Order": 1, + "DeletedAt": null, + "EntryId": "45981d7b-4ef6-407a-a229-e2a9cd14d509", + "Definition": {}, + "Gloss": { + "en": "extinguish", + "pt": "estinguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2002e000-f5da-4205-9776-9e54fcca3e67", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3c5e68c4-1133-4d06-8f01-c33987ba51eb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f16067f1-f4c5-4cc4-b3a9-defff0d212a5", + "DeletedAt": null, + "LexemeForm": { + "seh": "thimidz" + }, + "CitationForm": { + "seh": "thimidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a8c34399-4446-4f34-8064-5850c2d0f45a", + "Order": 1, + "DeletedAt": null, + "EntryId": "f16067f1-f4c5-4cc4-b3a9-defff0d212a5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "serve more food or drink", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "po\u0302r mais no prato ou no copo, acrescentar", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "add to", + "pt": "acrescentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5a3faadd-0f4b-47ce-a479-4d2fdc66885c", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Thimidzani madzi nkomixo.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Acrescente a\u0301gua no copo.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "a8c34399-4446-4f34-8064-5850c2d0f45a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a38eddad-09cd-420a-85b9-b8bffa0341e8", + "DeletedAt": null, + "LexemeForm": { + "seh": "thimis" + }, + "CitationForm": { + "seh": "thimisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc5958ca-8e90-45de-8354-59d185422059", + "Order": 1, + "DeletedAt": null, + "EntryId": "a38eddad-09cd-420a-85b9-b8bffa0341e8", + "Definition": {}, + "Gloss": { + "en": "extinguish", + "pt": "apagar fogo" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62b9ac22-82aa-43fd-b8f5-2e5234873267", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bc5958ca-8e90-45de-8354-59d185422059", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3793a9d3-19b9-413a-9ebf-00747a213025", + "DeletedAt": null, + "LexemeForm": { + "seh": "thimiz" + }, + "CitationForm": { + "seh": "thimiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2a82aa97-31cf-43c3-a14b-09ffe761131e", + "Order": 1, + "DeletedAt": null, + "EntryId": "3793a9d3-19b9-413a-9ebf-00747a213025", + "Definition": {}, + "Gloss": { + "en": "increase", + "pt": "aumentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d9b32823-4cb1-4957-8406-5589af352c78", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2a82aa97-31cf-43c3-a14b-09ffe761131e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "244d26db-dad3-4ecb-b9a9-c43f4518e5bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "thinidz" + }, + "CitationForm": { + "seh": "thinidza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1bb87002-3523-48d6-b63e-b1cb9afd3abf", + "Order": 1, + "DeletedAt": null, + "EntryId": "244d26db-dad3-4ecb-b9a9-c43f4518e5bb", + "Definition": {}, + "Gloss": { + "en": "add", + "pt": "acrescentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "51dc5787-c52a-4b5e-afa6-1103199f6d2f", + "DeletedAt": null, + "LexemeForm": { + "seh": "thirir" + }, + "CitationForm": { + "seh": "thirira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "98979afc-58f8-4894-bc22-f9daa3d857e1", + "Order": 1, + "DeletedAt": null, + "EntryId": "51dc5787-c52a-4b5e-afa6-1103199f6d2f", + "Definition": {}, + "Gloss": { + "en": "pour", + "pt": "po\u0302r a\u0301gua" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9e704e40-c9e7-4953-bcf5-08710bb1d9b8", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Ndithirireni manja.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Po\u0302r agua nas ma\u0303os.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "98979afc-58f8-4894-bc22-f9daa3d857e1", + "DeletedAt": null + } + ] + }, + { + "Id": "ea8dcc79-5ac4-448c-9326-f727516e7bf4", + "Order": 2, + "DeletedAt": null, + "EntryId": "51dc5787-c52a-4b5e-afa6-1103199f6d2f", + "Definition": {}, + "Gloss": { + "en": "to water", + "pt": "regar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "84279a81-6f27-49a0-8d48-5f8f9cc9632d", + "DeletedAt": null, + "LexemeForm": { + "seh": "thoera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a764da34-5c43-421d-9aac-e3260e289725", + "Order": 1, + "DeletedAt": null, + "EntryId": "84279a81-6f27-49a0-8d48-5f8f9cc9632d", + "Definition": {}, + "Gloss": { + "en": "loincloth", + "pt": "tanga" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "962e3417-83f3-40b3-bd94-3ae33b25a169", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a764da34-5c43-421d-9aac-e3260e289725", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d48098be-2356-4412-ac3c-786c21fb63b9", + "DeletedAt": null, + "LexemeForm": { + "seh": "thongwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94f68ad2-1d69-41de-8aee-0185e99f8ccf", + "Order": 1, + "DeletedAt": null, + "EntryId": "d48098be-2356-4412-ac3c-786c21fb63b9", + "Definition": {}, + "Gloss": { + "en": "pasturage", + "pt": "pastagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9ab7291-c77e-423e-b02f-d93b6bf45b69", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "94f68ad2-1d69-41de-8aee-0185e99f8ccf", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8ce2c8ec-2d31-4277-8f01-ae503e81c751", + "DeletedAt": null, + "LexemeForm": { + "seh": "thonje" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "890eb70c-54b8-4a4d-b031-db9451dc98ab", + "Order": 1, + "DeletedAt": null, + "EntryId": "8ce2c8ec-2d31-4277-8f01-ae503e81c751", + "Definition": {}, + "Gloss": { + "en": "cotton", + "pt": "algoda\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dc571432-a53c-40be-b634-1841c1764a27", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "890eb70c-54b8-4a4d-b031-db9451dc98ab", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ab892c21-8abf-4bd4-a452-c12d724a9d49", + "DeletedAt": null, + "LexemeForm": { + "seh": "thony" + }, + "CitationForm": { + "seh": "thonya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9a261001-cf61-46f3-8e58-7cae8273b3ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "ab892c21-8abf-4bd4-a452-c12d724a9d49", + "Definition": {}, + "Gloss": { + "en": "point", + "pt": "apontar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3ccec8ed-ae50-4282-9e58-e41bbdd9ee34", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "9a261001-cf61-46f3-8e58-7cae8273b3ba", + "DeletedAt": null + } + ] + }, + { + "Id": "7d75b23b-4960-47e8-93f1-d4a3136f04b9", + "Order": 2, + "DeletedAt": null, + "EntryId": "ab892c21-8abf-4bd4-a452-c12d724a9d49", + "Definition": {}, + "Gloss": { + "en": "choose", + "pt": "escolher" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bc08c8c8-291b-40b3-9b12-6cc96852456d", + "DeletedAt": null, + "LexemeForm": { + "seh": "thu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c8b2a4aa-2771-4b20-9488-60f4ef42e93f", + "Order": 1, + "DeletedAt": null, + "EntryId": "bc08c8c8-291b-40b3-9b12-6cc96852456d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "our", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "nosso", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1PL", + "pt": "1PL" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09e70d34-a5e3-43f3-8a86-53aab3d2155e", + "DeletedAt": null, + "LexemeForm": { + "seh": "thubu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d2332721-57bf-4367-8f26-fa188d1386cb", + "Order": 1, + "DeletedAt": null, + "EntryId": "09e70d34-a5e3-43f3-8a86-53aab3d2155e", + "Definition": {}, + "Gloss": { + "en": "elder", + "pt": "ancia\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "46f0e8a5-26ca-4cd7-9764-4259904f4205", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d2332721-57bf-4367-8f26-fa188d1386cb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bb550121-b7aa-46cb-83dd-4be296564816", + "DeletedAt": null, + "LexemeForm": { + "seh": "thul" + }, + "CitationForm": { + "seh": "thula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94991b8a-9d06-43f6-8903-159c9b5ee9df", + "Order": 1, + "DeletedAt": null, + "EntryId": "bb550121-b7aa-46cb-83dd-4be296564816", + "Definition": {}, + "Gloss": { + "en": "give name", + "pt": "dar nome" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "99b4793d-beda-413b-9a47-6581fcf29bed", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "94991b8a-9d06-43f6-8903-159c9b5ee9df", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3d85aa59-6fd2-46c9-8919-236af76e2af0", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumbi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6dc56367-27f8-4f4f-bd7f-9a04bc470966", + "Order": 1, + "DeletedAt": null, + "EntryId": "3d85aa59-6fd2-46c9-8919-236af76e2af0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a small bag on a string for holding money or small personal items", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "bag", + "pt": "bolso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72de2715-381e-4cae-936c-5222267657c7", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumbzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "05fc5ede-c5ac-4b95-ac1d-ce44536dd56a", + "Order": 1, + "DeletedAt": null, + "EntryId": "72de2715-381e-4cae-936c-5222267657c7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "female goat that has not yet had kids", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "goat", + "pt": "cabra" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c1a3e324-6247-4d0c-bb9a-6b772ee1656f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "05fc5ede-c5ac-4b95-ac1d-ce44536dd56a", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "59f33df3-3613-4381-bcd5-f30225ac42cd", + "DeletedAt": null, + "LexemeForm": { + "seh": "thumul" + }, + "CitationForm": { + "seh": "thumula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8d3b472d-b11b-46c5-b440-3e0c3b93465f", + "Order": 1, + "DeletedAt": null, + "EntryId": "59f33df3-3613-4381-bcd5-f30225ac42cd", + "Definition": { + "en": { + "Spans": [ + { + "Text": "snap a whip", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "arrebentar com ma\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "snap", + "pt": "arrebentar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8a0788c5-6d69-426c-9b01-0a21499f0c6a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8d3b472d-b11b-46c5-b440-3e0c3b93465f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41f103e8-4164-426a-8ca6-34e0bd958981", + "DeletedAt": null, + "LexemeForm": { + "seh": "thupi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "459bd1a5-34de-49d8-b98f-03aa6705b13d", + "Order": 1, + "DeletedAt": null, + "EntryId": "41f103e8-4164-426a-8ca6-34e0bd958981", + "Definition": {}, + "Gloss": { + "en": "body form", + "pt": "corpo forma" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "77457bd1-7880-42d7-83cb-fe1a9e2769c3", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "thupi ing\u0027ono", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "corpo pequeno", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "459bd1a5-34de-49d8-b98f-03aa6705b13d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1d884862-73ef-43a8-aa5b-cd5c6e1e9ae1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3acbd0c7-6157-45ee-a9de-023564e4cb89", + "Order": 1, + "DeletedAt": null, + "EntryId": "1d884862-73ef-43a8-aa5b-cd5c6e1e9ae1", + "Definition": {}, + "Gloss": { + "en": "speak", + "pt": "falar 2" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3926f2bb-c9ee-412e-8f0d-30273e286ce1", + "DeletedAt": null, + "LexemeForm": { + "seh": "ti" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "693324a1-f760-46d2-b801-9d7aee566717", + "Order": 1, + "DeletedAt": null, + "EntryId": "3926f2bb-c9ee-412e-8f0d-30273e286ce1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "we", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "no\u0301s", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "1P", + "pt": "1P" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d22c2b0d-2c83-42d2-973b-c20afdcc9398", + "Order": 2, + "DeletedAt": null, + "EntryId": "3926f2bb-c9ee-412e-8f0d-30273e286ce1", + "Definition": {}, + "Gloss": { + "en": "1P", + "pt": "1P" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a95bccc-c795-4f28-8353-64513f1c83cb", + "DeletedAt": null, + "LexemeForm": { + "seh": "tikan" + }, + "CitationForm": { + "seh": "tikana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "194662d7-732d-4c3c-8a38-39c3ec910646", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a95bccc-c795-4f28-8353-64513f1c83cb", + "Definition": {}, + "Gloss": { + "en": "insult", + "pt": "insultar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "40ec8061-de4e-4be5-aef4-6351195ce220", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "194662d7-732d-4c3c-8a38-39c3ec910646", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d444aa30-4bae-495f-ab07-e6063cd92857", + "DeletedAt": null, + "LexemeForm": { + "seh": "tirigu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "cddbdd63-7bc5-47a6-abf6-2f8853f6cee0", + "Order": 1, + "DeletedAt": null, + "EntryId": "d444aa30-4bae-495f-ab07-e6063cd92857", + "Definition": {}, + "Gloss": { + "en": "wheat", + "pt": "trigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "323a8f6a-b082-4572-98a0-dcc01bde12c8", + "DeletedAt": null, + "LexemeForm": { + "seh": "toera" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "3d49958b-619a-4620-b1c6-7c6fd7899de3", + "Order": 1, + "DeletedAt": null, + "EntryId": "323a8f6a-b082-4572-98a0-dcc01bde12c8", + "Definition": { + "en": { + "Spans": [ + { + "Text": "in order to", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "in order to", + "pt": "para que" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4fb571f2-247e-429e-977d-dbb82ab22399", + "DeletedAt": null, + "LexemeForm": { + "seh": "tom" + }, + "CitationForm": { + "seh": "toma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "625ce16c-7cca-4209-8052-c78dddfed8cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "4fb571f2-247e-429e-977d-dbb82ab22399", + "Definition": {}, + "Gloss": { + "en": "start", + "pt": "comec\u0327ar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "18c52e64-3c5c-41e6-ae34-4505767a4cdd", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "625ce16c-7cca-4209-8052-c78dddfed8cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "f194087a-49e3-4061-a351-159fae5df092", + "MaybeId": "f194087a-49e3-4061-a351-159fae5df092", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "ComplexFormHeadword": "toma-toma", + "ComponentEntryId": "4fb571f2-247e-429e-977d-dbb82ab22399", + "ComponentSenseId": null, + "ComponentHeadword": "toma" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "DeletedAt": null, + "LexemeForm": { + "seh": "toma-tom" + }, + "CitationForm": { + "seh": "toma-toma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8c76e0a3-47d5-4412-b5e6-c8b8338538a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "Definition": { + "en": { + "Spans": [ + { + "Text": "very beginning", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "princi\u0301pio mesmo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "beginning", + "pt": "princi\u0301pio" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d23f4424-0e2f-4470-be17-8b4dd825f40d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8c76e0a3-47d5-4412-b5e6-c8b8338538a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "f194087a-49e3-4061-a351-159fae5df092", + "MaybeId": "f194087a-49e3-4061-a351-159fae5df092", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "c58eb65c-df77-46cb-8d29-a2ec14b0cb38", + "ComplexFormHeadword": "toma-toma", + "ComponentEntryId": "4fb571f2-247e-429e-977d-dbb82ab22399", + "ComponentSenseId": null, + "ComponentHeadword": "toma" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c42ca81b-5821-4369-aa36-7f296e5164ab", + "DeletedAt": null, + "LexemeForm": { + "seh": "tong" + }, + "CitationForm": { + "seh": "tonga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "be876ecb-1662-4abf-ab67-4e7b43d600de", + "Order": 1, + "DeletedAt": null, + "EntryId": "c42ca81b-5821-4369-aa36-7f296e5164ab", + "Definition": {}, + "Gloss": { + "en": "rule", + "pt": "reinar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2dba3be5-e82a-4fd2-8cdb-2415b099aa3e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "be876ecb-1662-4abf-ab67-4e7b43d600de", + "DeletedAt": null + } + ] + }, + { + "Id": "b429c752-8136-42a4-b68d-e0d1adb7ed22", + "Order": 2, + "DeletedAt": null, + "EntryId": "c42ca81b-5821-4369-aa36-7f296e5164ab", + "Definition": {}, + "Gloss": { + "en": "judge", + "pt": "julgar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3935a3f1-3eee-4cfa-8aa0-ee41c4071c93", + "DeletedAt": null, + "LexemeForm": { + "seh": "tot" + }, + "CitationForm": { + "seh": "tota" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3fd82d2b-b8a1-490a-acc6-708d88540bcd", + "Order": 1, + "DeletedAt": null, + "EntryId": "3935a3f1-3eee-4cfa-8aa0-ee41c4071c93", + "Definition": {}, + "Gloss": { + "en": "wet", + "pt": "molhado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee117764-7d34-40d6-8dfa-4cc52a04c751", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "3fd82d2b-b8a1-490a-acc6-708d88540bcd", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fb6a83e4-6b17-4404-ad53-132336baee91", + "DeletedAt": null, + "LexemeForm": { + "seh": "totes" + }, + "CitationForm": { + "seh": "totesa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b547ec3a-2566-4f59-8d7b-5d6b607fb74e", + "Order": 1, + "DeletedAt": null, + "EntryId": "fb6a83e4-6b17-4404-ad53-132336baee91", + "Definition": {}, + "Gloss": { + "en": "get wet", + "pt": "molhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4e29431-968e-4418-be47-e353b66114f1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "b547ec3a-2566-4f59-8d7b-5d6b607fb74e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc6de902-80a8-44aa-883b-2c0b30d302e9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tower" + }, + "CitationForm": { + "seh": "towera" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "843731e3-603e-4249-ba99-754a719865e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc6de902-80a8-44aa-883b-2c0b30d302e9", + "Definition": {}, + "Gloss": { + "en": "follow", + "pt": "segir atras de" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [ + { + "Id": "1b73b2bf-9582-4f8a-822a-e0d020272c7c", + "Name": { + "en": "Follow" + }, + "Code": "7.2.5.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "521096cd-367f-41f0-a3fb-771ab8c69de7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "843731e3-603e-4249-ba99-754a719865e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4aa41cbc-e472-4949-bf2c-0846042f9f9c", + "DeletedAt": null, + "LexemeForm": { + "seh": "towez" + }, + "CitationForm": { + "seh": "toweza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fdcdb28b-0bc6-4e95-82bc-45e2e0418405", + "Order": 1, + "DeletedAt": null, + "EntryId": "4aa41cbc-e472-4949-bf2c-0846042f9f9c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "follow a concept", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "seguir a ideia", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "follow", + "pt": "seguir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "eae0fd5a-2801-4366-be34-dec6f7b252ce", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fdcdb28b-0bc6-4e95-82bc-45e2e0418405", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a250917f-f920-4f70-9f73-adf4916b0da0", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsakal" + }, + "CitationForm": { + "seh": "tsakala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f02956b-df94-46df-a074-ce6387e75b3a", + "Order": 1, + "DeletedAt": null, + "EntryId": "a250917f-f920-4f70-9f73-adf4916b0da0", + "Definition": {}, + "Gloss": { + "en": "wear out", + "pt": "envelhecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8dc1be56-7f70-4730-894d-3aa68957c827", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsa\u0301kala" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "02ebdfc0-2508-409a-9bec-019437e80fc0", + "Order": 1, + "DeletedAt": null, + "EntryId": "8dc1be56-7f70-4730-894d-3aa68957c827", + "Definition": { + "en": { + "Spans": [ + { + "Text": "torn cloth", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "farapo, pano rasgado", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "rag", + "pt": "farapo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5c5bc889-ec8b-4846-b7ac-c49a678df125", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "02ebdfc0-2508-409a-9bec-019437e80fc0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c85ca2c3-5367-4f52-b7ac-c5468d1f7ef3", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsalakan" + }, + "CitationForm": { + "seh": "tsalakana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2aedd60c-398c-4cf4-9b9e-24c9a0ac9d4c", + "Order": 1, + "DeletedAt": null, + "EntryId": "c85ca2c3-5367-4f52-b7ac-c5468d1f7ef3", + "Definition": {}, + "Gloss": { + "en": "think", + "pt": "pensar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f4c6dfc4-fce1-4285-ad5a-c4ce4d7ed022", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsam" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "106bb902-0085-4070-a820-3a6551f7b8a5", + "Order": 1, + "DeletedAt": null, + "EntryId": "f4c6dfc4-fce1-4285-ad5a-c4ce4d7ed022", + "Definition": {}, + "Gloss": { + "en": "disembark", + "pt": "desembarque " + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1bc4c289-7ca9-4837-be70-60408986b881", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsamba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cb4114f3-6b9c-4d10-83da-15aa3707622f", + "Order": 1, + "DeletedAt": null, + "EntryId": "1bc4c289-7ca9-4837-be70-60408986b881", + "Definition": {}, + "Gloss": { + "en": "leaf", + "pt": "folha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "61bf33e1-2041-4720-9308-b9837e7d6ecc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Wrth; Moreira:18; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "cb4114f3-6b9c-4d10-83da-15aa3707622f", + "DeletedAt": null + } + ] + }, + { + "Id": "8a1aab3b-5e70-4283-afd6-e169458cdf69", + "Order": 2, + "DeletedAt": null, + "EntryId": "1bc4c289-7ca9-4837-be70-60408986b881", + "Definition": {}, + "Gloss": { + "en": "sheet of paper", + "pt": "folha de papel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "18938887-46cf-45ca-b2c9-9d432d9de64a", + "Order": 3, + "DeletedAt": null, + "EntryId": "1bc4c289-7ca9-4837-be70-60408986b881", + "Definition": {}, + "Gloss": { + "en": "letter", + "pt": "carta" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a293d3ca-3546-4139-923b-07d682c34bf1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanga" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", + "Order": 1, + "DeletedAt": null, + "EntryId": "a293d3ca-3546-4139-923b-07d682c34bf1", + "Definition": { + "en": { + "Spans": [ + { + "Text": "savannah open grassland, desert, burned field, wilderness", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "savana sem muitos a\u0301rvores, deserto, mato queimado, sem capi\u0301m", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bushland", + "pt": "mato" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "7988974c-99fd-40dd-9b5e-2d81ec603ddc", + "Name": { + "en": "Forest, grassland, desert" + }, + "Code": "1.2.1.6", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "35f6bef0-6044-4df3-8f8e-dd923bce2274", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p28 says forest", + "Ws": "en" + } + ] + }, + "SenseId": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", + "DeletedAt": null + }, + { + "Id": "a67fc229-474e-4742-9967-6f1102042405", + "Order": 2, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "8fd66396-897a-4e1b-9bb5-bb52a87561c6", + "DeletedAt": null + } + ] + }, + { + "Id": "6b33c75b-bfe6-48e5-b698-7c2386f22c25", + "Order": 2, + "DeletedAt": null, + "EntryId": "a293d3ca-3546-4139-923b-07d682c34bf1", + "Definition": {}, + "Gloss": { + "en": "weeds", + "pt": "capim" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a1d04188-ee3b-40cc-a591-6a1bc8b99183", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsango" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4e1623b7-2320-48c6-a4d2-1d535a22a87f", + "Order": 1, + "DeletedAt": null, + "EntryId": "a1d04188-ee3b-40cc-a591-6a1bc8b99183", + "Definition": {}, + "Gloss": { + "en": "wasp", + "pt": "vespa" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0914468b-9c18-4b00-9c3a-76fec89da19e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,19", + "Ws": "en" + } + ] + }, + "SenseId": "4e1623b7-2320-48c6-a4d2-1d535a22a87f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "2614a9d9-5279-4b6e-9f33-1db67d2d0100", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanzay" + }, + "CitationForm": { + "seh": "tsanzaya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ce9787bb-6789-49f9-9981-27b1724cef66", + "Order": 1, + "DeletedAt": null, + "EntryId": "2614a9d9-5279-4b6e-9f33-1db67d2d0100", + "Definition": {}, + "Gloss": { + "en": "happy", + "pt": "feliz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6ccd1560-00cc-4757-9bbf-e29093335453", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwana wa kusanzaya", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Crianca feliz", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "komerwa = gostar, amar", + "Ws": "en" + } + ] + }, + "SenseId": "ce9787bb-6789-49f9-9981-27b1724cef66", + "DeletedAt": null + }, + { + "Id": "7571567b-f4b5-467e-83b1-a1a4547a3a1f", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mwana aenda kunyumba na kusanzaya.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "A crianca feliz foi a casa.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "ce9787bb-6789-49f9-9981-27b1724cef66", + "DeletedAt": null + } + ] + }, + { + "Id": "d8c5c5b8-9b61-4fea-95b3-7ec530fd4644", + "Order": 2, + "DeletedAt": null, + "EntryId": "2614a9d9-5279-4b6e-9f33-1db67d2d0100", + "Definition": {}, + "Gloss": { + "en": "satisfaction", + "pt": "satisfac\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "be4fbcf0-d232-4aac-bb85-ce9ba780b2dd", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsanzayis" + }, + "CitationForm": { + "seh": "tsanzayisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2ec29c07-952c-4c22-94e9-f18d655c3133", + "Order": 1, + "DeletedAt": null, + "EntryId": "be4fbcf0-d232-4aac-bb85-ce9ba780b2dd", + "Definition": {}, + "Gloss": { + "en": "make happy", + "pt": "causar ser feliz" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "77024558-c174-4747-873b-8c33fd5b35b3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "2ec29c07-952c-4c22-94e9-f18d655c3133", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "592cbddf-54f0-4f8f-a707-11b8f1ef28e1", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsato" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "9c28e583-c552-4275-9691-a5bf860a2578", + "Order": 1, + "DeletedAt": null, + "EntryId": "592cbddf-54f0-4f8f-a707-11b8f1ef28e1", + "Definition": {}, + "Gloss": { + "en": "boa constrictor", + "pt": "jibo\u0301ia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e69d4f94-7151-41f2-a772-cd0a685273d5", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsau" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3736a2ed-4afc-47be-98f0-c1fd28d42f84", + "Order": 1, + "DeletedAt": null, + "EntryId": "e69d4f94-7151-41f2-a772-cd0a685273d5", + "Definition": { + "en": { + "Spans": [ + { + "Text": "species of small apple", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "mac\u0327anica", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "apple", + "pt": "mac\u0327anica" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5f350568-3b62-4de9-b42f-347b886300aa", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "3736a2ed-4afc-47be-98f0-c1fd28d42f84", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4c01b16c-1a2d-4318-93be-8d4b6b2abbd7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsekwe" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "99872666-823a-445c-8f3a-0d5c8798ef7e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4c01b16c-1a2d-4318-93be-8d4b6b2abbd7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wild goose or duck", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ganso ou pato bravo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "goose", + "pt": "ganso" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "714decc8-6909-4408-b390-f908cf4e2e3b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Moreira:19", + "Ws": "en" + } + ] + }, + "SenseId": "99872666-823a-445c-8f3a-0d5c8798ef7e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aabd71a3-95d5-495d-bdbc-92176795563a", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsinde" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c4f3e215-8ab4-4bd0-ad3c-1347ecccfbc4", + "Order": 1, + "DeletedAt": null, + "EntryId": "aabd71a3-95d5-495d-bdbc-92176795563a", + "Definition": {}, + "Gloss": { + "en": "at the foot of", + "pt": "em baixo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "134a1867-cda7-43bc-ab0c-417725e82010", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c4f3e215-8ab4-4bd0-ad3c-1347ecccfbc4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e4f12e40-8553-4b37-b8c5-5b54388ee389", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsisi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "236decb1-bb94-472b-8a02-4b46e83fcd67", + "Order": 1, + "DeletedAt": null, + "EntryId": "e4f12e40-8553-4b37-b8c5-5b54388ee389", + "Definition": {}, + "Gloss": { + "en": "hair", + "pt": "cabelo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9bd5cdd6-5d34-42a6-b959-fb3d7415216f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:5,19 tshisi; Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "236decb1-bb94-472b-8a02-4b46e83fcd67", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "40925010-195e-428a-a1a1-1dc97506192e", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsogol" + }, + "CitationForm": { + "seh": "tsogola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "035b3bfa-5694-4c35-9c0d-2f8d70250156", + "Order": 1, + "DeletedAt": null, + "EntryId": "40925010-195e-428a-a1a1-1dc97506192e", + "Definition": {}, + "Gloss": { + "en": "go ahead of", + "pt": "adiantar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d3a5f891-5261-4967-b531-1441bb88ad3c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "035b3bfa-5694-4c35-9c0d-2f8d70250156", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "dd4b37fd-328f-44c4-88cf-d659cea94ded", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsoka" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8756ef8f-b016-4c53-ae52-ebe134672b80", + "Order": 1, + "DeletedAt": null, + "EntryId": "dd4b37fd-328f-44c4-88cf-d659cea94ded", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bad luck with a cause", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "curse", + "pt": "maldic\u0327a\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23befca5-f9a2-49f9-9c71-dfa4ec381f1c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8756ef8f-b016-4c53-ae52-ebe134672b80", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "13c40958-fac7-491a-95f6-8a2dbb15c77f", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsose" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6e95dee1-8398-4fa4-ada9-0bfebb343542", + "Order": 1, + "DeletedAt": null, + "EntryId": "13c40958-fac7-491a-95f6-8a2dbb15c77f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "covering with reeds \u0026 etc", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cobertura de colmo", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "thatching", + "pt": "cobertura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "eec72226-106c-4825-b245-6e18110ee917", + "Name": { + "en": "Roof" + }, + "Code": "6.5.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "2c12be60-b3a0-4a05-ac87-37af36e5ebb9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:4,19(pl:masose)", + "Ws": "en" + } + ] + }, + "SenseId": "6e95dee1-8398-4fa4-ada9-0bfebb343542", + "DeletedAt": null + } + ] + }, + { + "Id": "59373346-8f5d-4d04-bfda-f4aa384c0c81", + "Order": 2, + "DeletedAt": null, + "EntryId": "13c40958-fac7-491a-95f6-8a2dbb15c77f", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small gate", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "porta\u0303o pequena", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "gate", + "pt": "porta\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e0213ba-f932-4584-9081-6c5e01d6bab7", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsuk" + }, + "CitationForm": { + "seh": "tsuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "807fc0c7-a3db-40ac-b74b-2f32418f3715", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e0213ba-f932-4584-9081-6c5e01d6bab7", + "Definition": {}, + "Gloss": { + "en": "wash dishes", + "pt": "lavar loica" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c0fee9e9-5211-4b21-a795-7e97856c5edb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "807fc0c7-a3db-40ac-b74b-2f32418f3715", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4d9edf5a-78cc-457c-8a36-abe3cb88d037", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsukwal" + }, + "CitationForm": { + "seh": "tsukwala" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3d7c131-2e6c-4715-a476-9cd2f74be96e", + "Order": 1, + "DeletedAt": null, + "EntryId": "4d9edf5a-78cc-457c-8a36-abe3cb88d037", + "Definition": {}, + "Gloss": { + "en": "become sad", + "pt": "entrestecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62c66c3b-a3b4-40ab-b5a3-91f957c9c8c9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b3d7c131-2e6c-4715-a476-9cd2f74be96e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "981126ae-62be-494d-a04b-4e86cea32cab", + "DeletedAt": null, + "LexemeForm": { + "seh": "tsuphu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "56055ad6-781e-40d4-bc90-a92ad2e6a316", + "Order": 1, + "DeletedAt": null, + "EntryId": "981126ae-62be-494d-a04b-4e86cea32cab", + "Definition": {}, + "Gloss": { + "en": "comb of a fowl", + "pt": "crista de galo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e1e0cfd2-a67d-46a4-a109-01a1a2d0d1c4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:19 (tshumphu); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "56055ad6-781e-40d4-bc90-a92ad2e6a316", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "839f64d5-0a73-4bc1-b96c-db9287142100", + "DeletedAt": null, + "LexemeForm": { + "seh": "tu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "4b5edab8-2284-4fba-8fa2-3c9c714de3b8", + "Order": 1, + "DeletedAt": null, + "EntryId": "839f64d5-0a73-4bc1-b96c-db9287142100", + "Definition": { + "en": { + "Spans": [ + { + "Text": "completly", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "INTENS", + "pt": "INTENS" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "6dcceea0-f2ec-4b90-8554-37342605fc1a", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kumwadzikiratu \u0022espelhar-se em contra partida\u0022 aenderatu athawiratu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "4b5edab8-2284-4fba-8fa2-3c9c714de3b8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ed069088-4f8e-4202-ad1c-030f8b7eff92", + "DeletedAt": null, + "LexemeForm": { + "seh": "tul" + }, + "CitationForm": { + "seh": "tula" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c28f868d-c826-40d1-934c-d591cdd190b7", + "Order": 1, + "DeletedAt": null, + "EntryId": "ed069088-4f8e-4202-ad1c-030f8b7eff92", + "Definition": {}, + "Gloss": { + "en": "leave something", + "pt": "deixar coisa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "756475fc-5bfc-4815-a28a-02723037cc2c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c28f868d-c826-40d1-934c-d591cdd190b7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a769ce59-d43a-47d4-937a-4f1792808bb9", + "DeletedAt": null, + "LexemeForm": { + "seh": "tum" + }, + "CitationForm": { + "seh": "tuma" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "83c39fed-42c6-446e-91d1-2b40af74eff5", + "Order": 1, + "DeletedAt": null, + "EntryId": "a769ce59-d43a-47d4-937a-4f1792808bb9", + "Definition": {}, + "Gloss": { + "en": "send", + "pt": "enviar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4c3ba88a-029e-4224-a64b-26671d63e513", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "83c39fed-42c6-446e-91d1-2b40af74eff5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3d329509-7cfa-4384-8ed1-b024fe1307b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "tumiz" + }, + "CitationForm": { + "seh": "tumiza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "006ee802-ec4c-40b5-81f4-1f22c2b23613", + "Order": 1, + "DeletedAt": null, + "EntryId": "3d329509-7cfa-4384-8ed1-b024fe1307b2", + "Definition": {}, + "Gloss": { + "en": "send", + "pt": "mandar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fa0092c3-dcd0-4f9d-96cb-6bd77f837648", + "DeletedAt": null, + "LexemeForm": { + "seh": "tun" + }, + "CitationForm": { + "seh": "tuna" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bc0108a7-1dfb-483f-a67a-4882cad7e919", + "Order": 1, + "DeletedAt": null, + "EntryId": "fa0092c3-dcd0-4f9d-96cb-6bd77f837648", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lie, a knowing malicious lie", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "lie", + "pt": "mentir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0944fd98-c83e-4c48-94a5-84a73c9623df", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "bc0108a7-1dfb-483f-a67a-4882cad7e919", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "249034fa-490f-4743-a32d-1965fd07506e", + "DeletedAt": null, + "LexemeForm": { + "seh": "tunuzir" + }, + "CitationForm": { + "seh": "tunuzira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "41f653c0-8007-444f-9095-cc5af134f584", + "Order": 1, + "DeletedAt": null, + "EntryId": "249034fa-490f-4743-a32d-1965fd07506e", + "Definition": {}, + "Gloss": { + "en": "acuse", + "pt": "acusar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cb919e95-79e7-488f-92d2-b83e96195a32", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "41f653c0-8007-444f-9095-cc5af134f584", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c827e379-03b1-4f06-a737-6e0d9a62f3df", + "DeletedAt": null, + "LexemeForm": { + "seh": "tup" + }, + "CitationForm": { + "seh": "tupa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5647f2a9-9d0a-4599-9e48-cf98cd9624c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "c827e379-03b1-4f06-a737-6e0d9a62f3df", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to rise refering to the process of yeast causing dough to rise", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "rise dough", + "pt": "levantar massa" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c4e08950-6198-4bce-af09-e4c44083b165", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "5647f2a9-9d0a-4599-9e48-cf98cd9624c0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "15411cd2-1b38-44f3-b371-04f16fc05b59", + "DeletedAt": null, + "LexemeForm": { + "seh": "tutumuk" + }, + "CitationForm": { + "seh": "tutumuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "95b6047b-3637-4494-9779-6216b4014a80", + "Order": 1, + "DeletedAt": null, + "EntryId": "15411cd2-1b38-44f3-b371-04f16fc05b59", + "Definition": {}, + "Gloss": { + "en": "startle", + "pt": "ser assustado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "27abd531-0930-46e5-89bd-3c6276a6e8c6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Dioni\u0301sio", + "Ws": "en" + } + ] + }, + "SenseId": "95b6047b-3637-4494-9779-6216b4014a80", + "DeletedAt": null + } + ] + }, + { + "Id": "8a4af5f4-a71e-47c5-a292-630923ada7bf", + "Order": 2, + "DeletedAt": null, + "EntryId": "15411cd2-1b38-44f3-b371-04f16fc05b59", + "Definition": { + "en": { + "Spans": [ + { + "Text": "wake up from worrying dreams", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "acordar com preocupaco\u0303es", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "wake worried", + "pt": "acordar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "149ee2a3-6dee-4048-afe3-9341cb30b91c", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "dc001d5b-37e6-40c8-85e3-25830ac083f6", + "Order": 1, + "DeletedAt": null, + "EntryId": "149ee2a3-6dee-4048-afe3-9341cb30b91c", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "494f70ff-a22b-402a-a2b6-5a2d77f3fb84", + "Order": 1, + "DeletedAt": null, + "EntryId": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "bca44468-9d04-4f0d-9e65-38694978d312", + "Order": 2, + "DeletedAt": null, + "EntryId": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "d2b54291-bb8e-4645-b3f2-0d77890118b9", + "Order": 3, + "DeletedAt": null, + "EntryId": "615e9e33-bc35-4c2f-a080-c45c6315f520", + "Definition": {}, + "Gloss": { + "en": "1", + "pt": "1" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d0342d1-fc26-4408-bd1c-fc58abfe7956", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "8ae60e33-d745-4c84-8c51-43d8f51344b2", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d0342d1-fc26-4408-bd1c-fc58abfe7956", + "Definition": { + "en": { + "Spans": [ + { + "Text": "you, second person singular", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "tu, segunda pessoa singular", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "2S", + "pt": "2S" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "d9318a7f-f3ce-4454-8acd-1ab3b0dffd96", + "Order": 1, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "f4ae1775-b605-4604-8546-3cfcb6ca1c31", + "Order": 2, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "65b694cd-f545-4444-8763-fcfb46f3c401", + "Order": 3, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "7ec7b783-215f-442a-b660-d00b071a64d8", + "Order": 4, + "DeletedAt": null, + "EntryId": "9160838f-fec9-4297-9763-ebfb0e6a8ce8", + "Definition": {}, + "Gloss": { + "en": "3", + "pt": "3" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "DeletedAt": null, + "LexemeForm": { + "seh": "u" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "5edf6ba3-b791-4d37-878f-2a669e3b670f", + "Order": 1, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": { + "en": { + "Spans": [ + { + "Text": "-ness, -ity, the essence of, abstract", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "-idade", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "6b48f7a4-471f-4b15-8b03-17a83b9de0d3", + "Order": 2, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "af7ab1cc-2536-4251-bdde-ae723e46a105", + "Order": 3, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c3f8b8ee-f1ea-4a6b-b8a3-34b0ca297629", + "Order": 4, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "a0b813dc-f06c-41c9-9496-fdb656b331e0", + "Order": 5, + "DeletedAt": null, + "EntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "Definition": {}, + "Gloss": { + "en": "14", + "pt": "14" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [ + { + "Id": "094f020b-704b-4a56-911b-48f6428ae0be", + "MaybeId": "094f020b-704b-4a56-911b-48f6428ae0be", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "ComponentSenseId": null, + "ComponentHeadword": "u" + } + ], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47d2f97f-b376-4241-8312-620392869cfd", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubaba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "135250b8-31fa-4d05-b3dd-3422225a9006", + "Order": 1, + "DeletedAt": null, + "EntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "Definition": {}, + "Gloss": { + "en": "paternity", + "pt": "paternidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ee500084-db18-4500-b978-65445fbbed5d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "135250b8-31fa-4d05-b3dd-3422225a9006", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "2ca9f7fe-e0a4-4f81-a8d0-17c0e4adef19", + "MaybeId": "2ca9f7fe-e0a4-4f81-a8d0-17c0e4adef19", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "0d587ca3-12aa-467c-8d99-8ec13f6707b1", + "ComponentSenseId": null, + "ComponentHeadword": "baba" + }, + { + "Id": "094f020b-704b-4a56-911b-48f6428ae0be", + "MaybeId": "094f020b-704b-4a56-911b-48f6428ae0be", + "Order": 2, + "DeletedAt": null, + "ComplexFormEntryId": "47d2f97f-b376-4241-8312-620392869cfd", + "ComplexFormHeadword": "ubaba", + "ComponentEntryId": "f1c350fe-ebc2-41f0-9e5d-4e06bb47ccce", + "ComponentSenseId": null, + "ComponentHeadword": "u" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "7d3b1116-4489-4cc1-bc17-1734198e044f", + "Name": { + "en": "Abstract", + "pt": "Substantivo Abstrato" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "790f529d-28ed-4a50-af49-27de75aecc4f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubale" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9f8f51bf-aa51-4686-b839-fdbc9d17f1bc", + "Order": 1, + "DeletedAt": null, + "EntryId": "790f529d-28ed-4a50-af49-27de75aecc4f", + "Definition": {}, + "Gloss": { + "en": "brotherhood", + "pt": "irmandade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "39fec9e6-a965-49e5-88e0-4fee4748afa7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "9f8f51bf-aa51-4686-b839-fdbc9d17f1bc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "786ff878-6874-43be-806f-a3dadbd3998d", + "MaybeId": "786ff878-6874-43be-806f-a3dadbd3998d", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "790f529d-28ed-4a50-af49-27de75aecc4f", + "ComplexFormHeadword": "ubale", + "ComponentEntryId": "71ec314c-0446-4350-8d6f-b4fa657e21c2", + "ComponentSenseId": null, + "ComponentHeadword": "m\u0027bale" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "7d3b1116-4489-4cc1-bc17-1734198e044f", + "Name": { + "en": "Abstract", + "pt": "Substantivo Abstrato" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d8528b87-68fb-4bc1-ba87-20adc9341dfa", + "DeletedAt": null, + "LexemeForm": { + "seh": "bali" + }, + "CitationForm": { + "seh": "ubali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8f55e116-bffe-43cc-b63e-3fc7fb464906", + "Order": 1, + "DeletedAt": null, + "EntryId": "d8528b87-68fb-4bc1-ba87-20adc9341dfa", + "Definition": {}, + "Gloss": { + "en": "nature active", + "pt": "natureza activo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9cf9349b-a2a2-4ad3-8979-a777399426bc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "8f55e116-bffe-43cc-b63e-3fc7fb464906", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "662509e5-e556-4233-aca0-0527bbadeb04", + "DeletedAt": null, + "LexemeForm": { + "seh": "balwi" + }, + "CitationForm": { + "seh": "ubalwi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "194ed05c-dc3a-4cec-bda9-f913d397f4c4", + "Order": 1, + "DeletedAt": null, + "EntryId": "662509e5-e556-4233-aca0-0527bbadeb04", + "Definition": {}, + "Gloss": { + "en": "nature passive", + "pt": "natureza passivo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ea028b17-0942-4751-bebe-600555b1442b", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32", + "Ws": "en" + } + ] + }, + "SenseId": "194ed05c-dc3a-4cec-bda9-f913d397f4c4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "be41c370-e3a7-4cb3-a4cc-6fc32dbc9ffb", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "094f4d6a-81eb-4cc1-b0b8-34cf24c90da7", + "Order": 1, + "DeletedAt": null, + "EntryId": "be41c370-e3a7-4cb3-a4cc-6fc32dbc9ffb", + "Definition": {}, + "Gloss": { + "en": "unity", + "pt": "unidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c985333d-a23b-4b30-afcb-45b44e7b9688", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "094f4d6a-81eb-4cc1-b0b8-34cf24c90da7", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8f1bb766-6e22-44a4-aa81-b4bae718b4ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "ubodzi-bodzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "ea48f99d-9b4e-41b4-99b3-a70c040a881d", + "Order": 1, + "DeletedAt": null, + "EntryId": "8f1bb766-6e22-44a4-aa81-b4bae718b4ac", + "Definition": {}, + "Gloss": { + "en": "same", + "pt": "mesmo" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7c938b15-497a-4852-8b5e-6afb1b3cf8c7", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "ea48f99d-9b4e-41b4-99b3-a70c040a881d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a96600f-de8f-4e72-ad6d-3d10baf502a3", + "DeletedAt": null, + "LexemeForm": { + "seh": "ucenche" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "90e822b6-9c0a-4815-b20c-498954c79e55", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a96600f-de8f-4e72-ad6d-3d10baf502a3", + "Definition": {}, + "Gloss": { + "en": "termite", + "pt": "formiga branco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a53010f4-673a-4cb3-8a5e-612653f1d967", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21 (ucendje); Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "90e822b6-9c0a-4815-b20c-498954c79e55", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "DeletedAt": null, + "LexemeForm": { + "seh": "uceni" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "9171df95-1a24-41d1-9194-d61abfa19488", + "Order": 1, + "DeletedAt": null, + "EntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "Definition": {}, + "Gloss": { + "en": "purity", + "pt": "pureza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "62caa4d9-535a-478e-bfa6-b7ca04d91778", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "9171df95-1a24-41d1-9194-d61abfa19488", + "DeletedAt": null + } + ] + }, + { + "Id": "3e1edd79-92fa-4512-86a0-c4ba64c8cd07", + "Order": 2, + "DeletedAt": null, + "EntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "Definition": {}, + "Gloss": { + "en": "whiteness", + "pt": "blanqueza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [ + { + "Id": "6d43426c-aec7-4b78-8527-d92b24b4e909", + "MaybeId": "6d43426c-aec7-4b78-8527-d92b24b4e909", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "a9475722-6f16-4a9d-ac3e-a038942e7e50", + "ComplexFormHeadword": "uceni", + "ComponentEntryId": "72a67175-6d5f-4966-b5b2-f7163e776984", + "ComponentSenseId": null, + "ComponentHeadword": "cen" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b7f8efbf-0e3c-4957-8ddd-013d8166e5d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "uchi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4bfb0395-c6fc-4db5-8b04-cfe1c2bdcc8e", + "Order": 1, + "DeletedAt": null, + "EntryId": "b7f8efbf-0e3c-4957-8ddd-013d8166e5d2", + "Definition": {}, + "Gloss": { + "en": "smoke", + "pt": "fumo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "edbb277a-c76d-4ece-9d58-322128d59a12", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "uchi ukulu", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "4bfb0395-c6fc-4db5-8b04-cfe1c2bdcc8e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "826b9d62-744d-4d8e-976b-26b7f7f14266", + "DeletedAt": null, + "LexemeForm": { + "seh": "uci" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "136a7fae-16be-4f69-9cc1-783a5c5d074c", + "Order": 1, + "DeletedAt": null, + "EntryId": "826b9d62-744d-4d8e-976b-26b7f7f14266", + "Definition": {}, + "Gloss": { + "en": "honey", + "pt": "mel" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "328eac57-8663-4b33-97f1-56b2f340f798", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "uci wakutapira", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "mel doce", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "136a7fae-16be-4f69-9cc1-783a5c5d074c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "91c553cd-7924-474f-a91a-4320f264a792", + "DeletedAt": null, + "LexemeForm": { + "seh": "didi" + }, + "CitationForm": { + "seh": "udidi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "78c00a11-2e56-4697-b5bf-80904626cdf3", + "Order": 1, + "DeletedAt": null, + "EntryId": "91c553cd-7924-474f-a91a-4320f264a792", + "Definition": {}, + "Gloss": { + "en": "goodness", + "pt": "bondade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "ac7575a5-a5c0-4a9a-a63a-75e72b34f408", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "78c00a11-2e56-4697-b5bf-80904626cdf3", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e7bae7ed-1fa4-4659-9b43-02aac4761fdd", + "DeletedAt": null, + "LexemeForm": { + "seh": "udzakazi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4b976689-b5df-47fe-bec3-756897ca779e", + "Order": 1, + "DeletedAt": null, + "EntryId": "e7bae7ed-1fa4-4659-9b43-02aac4761fdd", + "Definition": {}, + "Gloss": { + "en": "slavery", + "pt": "escravida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "81d6ce11-bcaa-4c25-bbdd-79e607b48dd9", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "4b976689-b5df-47fe-bec3-756897ca779e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f82d76f5-e1c6-444c-b672-4fd2563781d0", + "DeletedAt": null, + "LexemeForm": { + "seh": "udzu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24295910-8cbe-4dfb-888c-798376ffc7fa", + "Order": 1, + "DeletedAt": null, + "EntryId": "f82d76f5-e1c6-444c-b672-4fd2563781d0", + "Definition": {}, + "Gloss": { + "en": "weed dry", + "pt": "capim seco" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f57bc36a-ad6e-4c17-a048-08bd8c3c0141", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth", + "Ws": "en" + } + ] + }, + "SenseId": "24295910-8cbe-4dfb-888c-798376ffc7fa", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "119b6841-465f-44ca-96bb-ce8d75a3c5b7", + "DeletedAt": null, + "LexemeForm": { + "seh": "ufa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6cecf1f9-7a8f-4595-bfc4-c217bf8b81f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "119b6841-465f-44ca-96bb-ce8d75a3c5b7", + "Definition": {}, + "Gloss": { + "en": "flour", + "pt": "farinha" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "1447278f-efff-4807-b9ea-c487dea1ba5e", + "Name": { + "en": "Food from seeds" + }, + "Code": "5.2.3.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "ebc9c111-dda4-4187-9261-0322fe14cabe", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira: ; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "6cecf1f9-7a8f-4595-bfc4-c217bf8b81f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "78e01f2d-c253-4207-b4f5-2731536ec071", + "DeletedAt": null, + "LexemeForm": { + "seh": "ipi" + }, + "CitationForm": { + "seh": "uipi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "eca2562a-400e-4845-af66-21b452a16723", + "Order": 1, + "DeletedAt": null, + "EntryId": "78e01f2d-c253-4207-b4f5-2731536ec071", + "Definition": {}, + "Gloss": { + "en": "bad", + "pt": "mal" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "77232534-ed80-40f9-b8e4-a1503fafd467", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "kudzindikira udidi na uipi", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "reconhecer bom e mal", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "eca2562a-400e-4845-af66-21b452a16723", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c7514277-299c-45eb-a1f8-2108e3085ba8", + "DeletedAt": null, + "LexemeForm": { + "seh": "uk" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "6b70c8c1-88b3-4130-b3a5-7affccc88c74", + "Order": 1, + "DeletedAt": null, + "EntryId": "c7514277-299c-45eb-a1f8-2108e3085ba8", + "Definition": {}, + "Gloss": { + "en": "apart", + "pt": "separado" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "57e0a581-d77a-4fbc-b072-a98398533f3d", + "DeletedAt": null, + "LexemeForm": { + "seh": "ukhali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e088214d-88f2-4594-8f98-1f4f7c29dc65", + "Order": 1, + "DeletedAt": null, + "EntryId": "57e0a581-d77a-4fbc-b072-a98398533f3d", + "Definition": {}, + "Gloss": { + "en": "entity", + "pt": "entidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7354f8c3-650f-455d-9fcf-5ca0bddc602f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "e088214d-88f2-4594-8f98-1f4f7c29dc65", + "DeletedAt": null + } + ] + }, + { + "Id": "c7ca7796-1ba2-4bdd-be82-40e4d3de066c", + "Order": 2, + "DeletedAt": null, + "EntryId": "57e0a581-d77a-4fbc-b072-a98398533f3d", + "Definition": {}, + "Gloss": { + "en": "essence", + "pt": "essencia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "45f03292-e15e-4f57-8a13-e1dbb27c4cb8", + "DeletedAt": null, + "LexemeForm": { + "seh": "uku" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "e923c04d-9f7d-4043-8212-a94c0d9ab8c0", + "Order": 1, + "DeletedAt": null, + "EntryId": "45f03292-e15e-4f57-8a13-e1dbb27c4cb8", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "aaba6577-61e7-4c33-8097-29224f716db2", + "DeletedAt": null, + "LexemeForm": { + "seh": "ukulu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "358f3141-e7ab-4c29-ad51-ca223360afe8", + "Order": 1, + "DeletedAt": null, + "EntryId": "aaba6577-61e7-4c33-8097-29224f716db2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "greatness, to have great responsibility", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "greatness", + "pt": "grandeza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b7b633d8-5938-4833-af62-c8d386d0b6cb", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "358f3141-e7ab-4c29-ad51-ca223360afe8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "41637a62-161c-43e2-a2c4-954b3fa6486a", + "DeletedAt": null, + "LexemeForm": { + "seh": "ul" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Suffix", + "Senses": [ + { + "Id": "a46c939f-bdbf-47b1-b167-1f2b8184bc36", + "Order": 1, + "DeletedAt": null, + "EntryId": "41637a62-161c-43e2-a2c4-954b3fa6486a", + "Definition": { + "en": { + "Spans": [ + { + "Text": "reversive also apart, separate", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "REV", + "pt": "REV" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "470b963b-756a-43b8-80f9-e3b914503470", + "DeletedAt": null, + "LexemeForm": { + "seh": "langi" + }, + "CitationForm": { + "seh": "ulangi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ea7ee9b7-19a6-42d5-b570-2275f5541b5e", + "Order": 1, + "DeletedAt": null, + "EntryId": "470b963b-756a-43b8-80f9-e3b914503470", + "Definition": {}, + "Gloss": { + "en": "moral of story", + "pt": "moral de conto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "69ba0985-7c6c-43ed-a305-12e167fffb44", + "DeletedAt": null, + "LexemeForm": { + "seh": "laphi" + }, + "CitationForm": { + "seh": "ulaphi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f99e2076-dadf-4143-99d7-1d5d173fcf7b", + "Order": 1, + "DeletedAt": null, + "EntryId": "69ba0985-7c6c-43ed-a305-12e167fffb44", + "Definition": {}, + "Gloss": { + "en": "width", + "pt": "comprimento" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d5206e32-4268-4a16-a007-9f57f467216e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "f99e2076-dadf-4143-99d7-1d5d173fcf7b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b220bb10-cb7b-4924-94e9-bf92273c9023", + "DeletedAt": null, + "LexemeForm": { + "seh": "ulawa" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ababeddc-08c3-4780-8012-7198cf761d05", + "Order": 1, + "DeletedAt": null, + "EntryId": "b220bb10-cb7b-4924-94e9-bf92273c9023", + "Definition": { + "en": { + "Spans": [ + { + "Text": "shoal of fish", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cardume de peixe", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "shoal", + "pt": "cardume" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "535bff6a-c343-41e9-9a61-b0e0d223d20e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21", + "Ws": "en" + } + ] + }, + "SenseId": "ababeddc-08c3-4780-8012-7198cf761d05", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "64e90cd8-644c-4650-be10-1f552aba693f", + "DeletedAt": null, + "LexemeForm": { + "seh": "ule" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "80432d6c-77a3-4a83-a225-fb47755c38c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "64e90cd8-644c-4650-be10-1f552aba693f", + "Definition": {}, + "Gloss": { + "en": "that one", + "pt": "aquele" + }, + "PartOfSpeech": { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a80c0309-9b86-4caa-854f-80b535b5493b", + "DeletedAt": null, + "LexemeForm": { + "seh": "lendo" + }, + "CitationForm": { + "seh": "ulendo" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "51aaf249-32a7-421b-87a3-3205be891797", + "Order": 1, + "DeletedAt": null, + "EntryId": "a80c0309-9b86-4caa-854f-80b535b5493b", + "Definition": {}, + "Gloss": { + "en": "trip", + "pt": "viagem" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "20d7e293-af37-4058-ba22-dea4c2bc526f", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "51aaf249-32a7-421b-87a3-3205be891797", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "62d799a1-87e6-413a-a57f-d68478b115bd", + "DeletedAt": null, + "LexemeForm": { + "seh": "umama" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "de3c9399-15af-4edf-8aaa-68f96d56637e", + "Order": 1, + "DeletedAt": null, + "EntryId": "62d799a1-87e6-413a-a57f-d68478b115bd", + "Definition": { + "pt": { + "Spans": [ + { + "Text": "estado de ser mai", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "maternity", + "pt": "maternidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dcf598d3-2ea7-4b0c-9c6a-c6ead09f8c7c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "de3c9399-15af-4edf-8aaa-68f96d56637e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c27cdd26-df99-44d4-9af1-6e2ad8edf66d", + "DeletedAt": null, + "LexemeForm": { + "seh": "umambo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "fc67e6a9-5387-43f2-91a3-216cfd5e65a8", + "Order": 1, + "DeletedAt": null, + "EntryId": "c27cdd26-df99-44d4-9af1-6e2ad8edf66d", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the extent of the authority of a king, the land and people governed by a king", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "kingdom", + "pt": "reino" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9", + "Name": { + "en": "Country" + }, + "Code": "4.6.7.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "473fbba6-0e1d-43f5-8001-b819ce5a0181", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "fc67e6a9-5387-43f2-91a3-216cfd5e65a8", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "84869a6c-24fa-4a41-b621-9d9720c2efaf", + "DeletedAt": null, + "LexemeForm": { + "seh": "mbirimi" + }, + "CitationForm": { + "seh": "umbirimi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "97a7c86c-6550-4e5c-a49f-a5a80330d9af", + "Order": 1, + "DeletedAt": null, + "EntryId": "84869a6c-24fa-4a41-b621-9d9720c2efaf", + "Definition": {}, + "Gloss": { + "en": "pride", + "pt": "ogulho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "74de137c-6a58-41ac-b30d-0b9529b95e8f", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Imwe anthu a umbirimi...", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Voce\u0302s homens de ogulho...", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "97a7c86c-6550-4e5c-a49f-a5a80330d9af", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "29b943ed-8640-4ace-8d88-eb2d3bc0bca9", + "DeletedAt": null, + "LexemeForm": { + "seh": "mboni" + }, + "CitationForm": { + "seh": "umboni" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "25b7c888-d2fe-4c54-ace2-9b299e7a899d", + "Order": 1, + "DeletedAt": null, + "EntryId": "29b943ed-8640-4ace-8d88-eb2d3bc0bca9", + "Definition": {}, + "Gloss": { + "en": "testimony", + "pt": "testimonio" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "c34cc0f3-2800-4704-b925-ae99b27f08ff", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "25b7c888-d2fe-4c54-ace2-9b299e7a899d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4e00e4a6-1aa4-473f-bf9d-5a6c77b6781f", + "DeletedAt": null, + "LexemeForm": { + "seh": "umbuya" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "42083ae6-df49-4ae6-bfc8-48aef6b280d0", + "Order": 1, + "DeletedAt": null, + "EntryId": "4e00e4a6-1aa4-473f-bf9d-5a6c77b6781f", + "Definition": {}, + "Gloss": { + "en": "lordship", + "pt": "senhoridade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "84b53cf0-9e32-4ddc-8b83-8519e95b495d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "42083ae6-df49-4ae6-bfc8-48aef6b280d0", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "db9ba81b-986d-42a4-bc1c-92ada161a70c", + "DeletedAt": null, + "LexemeForm": { + "seh": "mphandu" + }, + "CitationForm": { + "seh": "umphandu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4a4ca0ac-1ed7-4dd5-baa8-b61eaf61553e", + "Order": 1, + "DeletedAt": null, + "EntryId": "db9ba81b-986d-42a4-bc1c-92ada161a70c", + "Definition": {}, + "Gloss": { + "en": "criminality", + "pt": "criminalidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "81546036-9a1a-45a7-b4a6-e84116decdc3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "4a4ca0ac-1ed7-4dd5-baa8-b61eaf61553e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "39914391-d63c-4281-babb-b34704546c1a", + "DeletedAt": null, + "LexemeForm": { + "seh": "umu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "747b38ab-bfc8-4062-b430-2958e4d2490f", + "Order": 1, + "DeletedAt": null, + "EntryId": "39914391-d63c-4281-babb-b34704546c1a", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "feac681b-018d-42c6-8d9f-eb02a68621d2", + "DeletedAt": null, + "LexemeForm": { + "seh": "mulopa" + }, + "CitationForm": { + "seh": "umulopa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c5f58059-dd3b-4770-a432-4ac43c2a8668", + "Order": 1, + "DeletedAt": null, + "EntryId": "feac681b-018d-42c6-8d9f-eb02a68621d2", + "Definition": {}, + "Gloss": { + "en": "consanguinity", + "pt": "consanguinidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1be2de7e-12fd-4b56-b940-6d5ea9561392", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "c5f58059-dd3b-4770-a432-4ac43c2a8668", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8f676777-1560-484d-bbc8-ef872fb99b6e", + "DeletedAt": null, + "LexemeForm": { + "seh": "nai" + }, + "CitationForm": { + "seh": "unai" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1aa877de-615f-46be-a264-9b91635662f2", + "Order": 1, + "DeletedAt": null, + "EntryId": "8f676777-1560-484d-bbc8-ef872fb99b6e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "to have the quality of four", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ter qualidade de quarto", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "quartette", + "pt": "quarteto" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "979c143c-e829-4692-91ca-f678beb48288", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "1aa877de-615f-46be-a264-9b91635662f2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "de836ca8-f975-4b40-835a-6a798cf1ecd6", + "DeletedAt": null, + "LexemeForm": { + "seh": "ungui" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "09aabb85-a312-493f-8800-86735acf18fb", + "Order": 1, + "DeletedAt": null, + "EntryId": "de836ca8-f975-4b40-835a-6a798cf1ecd6", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fowl louse (species)", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "louse", + "pt": "piolho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4e921377-358e-4586-877b-6d7986671a7a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "09aabb85-a312-493f-8800-86735acf18fb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6274f082-272f-4360-921e-8e5d2db837c0", + "DeletedAt": null, + "LexemeForm": { + "seh": "unowu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "7f5d1092-935d-4df3-9956-68fbbd6fee2a", + "Order": 1, + "DeletedAt": null, + "EntryId": "6274f082-272f-4360-921e-8e5d2db837c0", + "Definition": {}, + "Gloss": { + "en": "this very one", + "pt": "este mesmo" + }, + "PartOfSpeech": { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1e93e722-8246-4a90-91e5-93aafc129c11", + "DeletedAt": null, + "LexemeForm": { + "seh": "nthaka" + }, + "CitationForm": { + "seh": "unthaka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ee0c1ccb-2141-41f8-aeea-f2830dba0dfb", + "Order": 1, + "DeletedAt": null, + "EntryId": "1e93e722-8246-4a90-91e5-93aafc129c11", + "Definition": {}, + "Gloss": { + "en": "inheritance", + "pt": "heranc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a9b8c787-1658-488f-a370-954a0fe3f349", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ee0c1ccb-2141-41f8-aeea-f2830dba0dfb", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d862954f-aafe-487d-9223-853733ee1d88", + "DeletedAt": null, + "LexemeForm": { + "seh": "upfumi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bf71bf48-b8d3-455b-bc29-4a7b4ce04870", + "Order": 1, + "DeletedAt": null, + "EntryId": "d862954f-aafe-487d-9223-853733ee1d88", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riquezas" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f883fff8-9eee-4c7d-a8b3-0daa0da028de", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "bf71bf48-b8d3-455b-bc29-4a7b4ce04870", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "58b7555d-9b6f-4606-8a23-b33199a7e329", + "DeletedAt": null, + "LexemeForm": { + "seh": "phale" + }, + "CitationForm": { + "seh": "uphale" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "24ed647a-dafd-4897-bd4a-1914c517f2c8", + "Order": 1, + "DeletedAt": null, + "EntryId": "58b7555d-9b6f-4606-8a23-b33199a7e329", + "Definition": {}, + "Gloss": { + "en": "youth", + "pt": "juventude" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "69d12281-08e0-445c-8d46-8780af67dcb5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "24ed647a-dafd-4897-bd4a-1914c517f2c8", + "DeletedAt": null + } + ] + }, + { + "Id": "5deb9301-9b9c-4e6a-8f46-aa6653c0e987", + "Order": 2, + "DeletedAt": null, + "EntryId": "58b7555d-9b6f-4606-8a23-b33199a7e329", + "Definition": { + "en": { + "Spans": [ + { + "Text": "child\u0027s play", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "brincadieras de crianc\u0327a", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "child\u0027s play", + "pt": "brincos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9750c1ad-3434-4b63-876e-f62bcadb8f62", + "DeletedAt": null, + "LexemeForm": { + "seh": "upsipi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bbb4c1c3-fa11-47cd-8150-e0d73818da0c", + "Order": 1, + "DeletedAt": null, + "EntryId": "9750c1ad-3434-4b63-876e-f62bcadb8f62", + "Definition": {}, + "Gloss": { + "en": "blackness", + "pt": "cor escura" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "4c064139-a757-499e-9b43-45d1c373f9f0", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "bbb4c1c3-fa11-47cd-8150-e0d73818da0c", + "DeletedAt": null + } + ] + }, + { + "Id": "2ab4c07f-c6c3-400a-bf12-4bdede2672ff", + "Order": 2, + "DeletedAt": null, + "EntryId": "9750c1ad-3434-4b63-876e-f62bcadb8f62", + "Definition": { + "en": { + "Spans": [ + { + "Text": "state or quality of darkness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "darkness", + "pt": "escurida\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "72eee253-6013-448a-a7c8-0719aa95ef2c", + "DeletedAt": null, + "LexemeForm": { + "seh": "upumbuzi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c658fc3b-450b-4488-a2b7-fcefd7d38652", + "Order": 1, + "DeletedAt": null, + "EntryId": "72eee253-6013-448a-a7c8-0719aa95ef2c", + "Definition": { + "en": { + "Spans": [ + { + "Text": "a type of small flying insect that likes to get into one\u0027s eyes", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "um ti\u0301po de bichinho pequeno, voador, que gosta de entrar nos olhos", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "gnat", + "pt": "bichinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "23946911-57e8-4420-8eb6-acad95203dab", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p26; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "c658fc3b-450b-4488-a2b7-fcefd7d38652", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "bdb4c77c-55a2-4da1-9d66-5d3ba82579ed", + "DeletedAt": null, + "LexemeForm": { + "seh": "usimbu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c63b0bac-a53f-4029-8fb1-6fc0af61f894", + "Order": 1, + "DeletedAt": null, + "EntryId": "bdb4c77c-55a2-4da1-9d66-5d3ba82579ed", + "Definition": { + "en": { + "Spans": [ + { + "Text": "shoal of small fish", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "cardum de peixe pequeno", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "shoal", + "pt": "cardum" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5dc7c0ad-5cff-4730-b034-99b012ed0d82", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "c63b0bac-a53f-4029-8fb1-6fc0af61f894", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "47a68b80-fae0-479b-89f5-4da609f5037e", + "DeletedAt": null, + "LexemeForm": { + "seh": "ut" + }, + "CitationForm": { + "seh": "uta" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "718eb928-04fd-4cd9-862e-9fd86ee62a56", + "Order": 1, + "DeletedAt": null, + "EntryId": "47a68b80-fae0-479b-89f5-4da609f5037e", + "Definition": { + "en": { + "Spans": [ + { + "Text": "dog bark", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "ladrar de ca\u0303o", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "bark", + "pt": "ladrar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "720e1fa4-3660-4325-947a-4e1d4e984315", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist", + "Ws": "en" + } + ] + }, + "SenseId": "718eb928-04fd-4cd9-862e-9fd86ee62a56", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9a65be28-75e0-4d24-bdde-2aca37ca0e68", + "DeletedAt": null, + "LexemeForm": { + "seh": "utali" + }, + "CitationForm": { + "seh": "utali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "e81c7af1-aa5c-4fcd-8971-36e4bfc4500d", + "Order": 1, + "DeletedAt": null, + "EntryId": "9a65be28-75e0-4d24-bdde-2aca37ca0e68", + "Definition": {}, + "Gloss": { + "en": "iron", + "pt": "ferro" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f8c5ff6b-4b63-4c85-9784-502123de8de3", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "e81c7af1-aa5c-4fcd-8971-36e4bfc4500d", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ea419f67-0441-402a-ab00-f420657b9167", + "DeletedAt": null, + "LexemeForm": { + "seh": "tatu" + }, + "CitationForm": { + "seh": "utatu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae460c9e-400a-4e70-b9e1-cd27313bf09f", + "Order": 1, + "DeletedAt": null, + "EntryId": "ea419f67-0441-402a-ab00-f420657b9167", + "Definition": {}, + "Gloss": { + "en": "trinity", + "pt": "trinidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "300c759c-f2d9-4a5f-9add-ab498713fa9e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "ae460c9e-400a-4e70-b9e1-cd27313bf09f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "8c411483-e3ea-4192-bb66-b609e7f93818", + "DeletedAt": null, + "LexemeForm": { + "seh": "utenda" + }, + "CitationForm": { + "seh": "utenda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "509975b3-3a61-48be-b929-d47adaf4a2ec", + "Order": 1, + "DeletedAt": null, + "EntryId": "8c411483-e3ea-4192-bb66-b609e7f93818", + "Definition": {}, + "Gloss": { + "en": "illness", + "pt": "doenc\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "3f784a7b-6915-489d-b15f-b3063dfbd572", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21", + "Ws": "en" + } + ] + }, + "SenseId": "509975b3-3a61-48be-b929-d47adaf4a2ec", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c8086036-6530-45ab-82ef-034f7fad0a95", + "DeletedAt": null, + "LexemeForm": { + "seh": "utende" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0c68f1e7-423b-4ba3-93e4-f2748477abca", + "Order": 1, + "DeletedAt": null, + "EntryId": "c8086036-6530-45ab-82ef-034f7fad0a95", + "Definition": {}, + "Gloss": { + "en": "riches", + "pt": "riqueza" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f4edf555-95df-4f38-957a-9744e9d2bd9d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21", + "Ws": "en" + } + ] + }, + "SenseId": "0c68f1e7-423b-4ba3-93e4-f2748477abca", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6a14de2b-f757-4aa1-91b4-0e7090976dd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "thambi" + }, + "CitationForm": { + "seh": "uthambi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0ca24aef-ba6a-4288-903a-66d7bf45158c", + "Order": 1, + "DeletedAt": null, + "EntryId": "6a14de2b-f757-4aa1-91b4-0e7090976dd8", + "Definition": {}, + "Gloss": { + "en": "lie", + "pt": "mentira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "f0b1f6ff-580d-4678-8e9c-f8fe02999725", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0ca24aef-ba6a-4288-903a-66d7bf45158c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "DeletedAt": null, + "LexemeForm": { + "seh": "utongi" + }, + "CitationForm": { + "seh": "utongi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "8bad9278-024a-46c0-b0b9-8fed75472d38", + "Order": 1, + "DeletedAt": null, + "EntryId": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "Definition": {}, + "Gloss": { + "en": "justice", + "pt": "jutic\u0327a" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "17eee64f-d7b4-4ad2-b735-1edb1275acdc", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "8bad9278-024a-46c0-b0b9-8fed75472d38", + "DeletedAt": null + } + ] + }, + { + "Id": "16e9b698-06c4-49a8-bd83-b8d5a36f8589", + "Order": 2, + "DeletedAt": null, + "EntryId": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "Definition": {}, + "Gloss": { + "en": "authority", + "pt": "authoridade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "db214e78-7505-4899-b49a-0637749e2d13", + "Order": 3, + "DeletedAt": null, + "EntryId": "08245621-a1d0-45e1-ad24-7681ff6c0b22", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the area adminstrated by an appointed official", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "province", + "pt": "provi\u0301nicia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9", + "Name": { + "en": "Country" + }, + "Code": "4.6.7.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "efcdc82b-d042-46a8-9909-4692313ac0b2", + "DeletedAt": null, + "LexemeForm": { + "seh": "utumbo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "5179d490-ee47-45a5-b49d-cdb783960229", + "Order": 1, + "DeletedAt": null, + "EntryId": "efcdc82b-d042-46a8-9909-4692313ac0b2", + "Definition": {}, + "Gloss": { + "en": "intestine", + "pt": "intestinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "5ebf2130-71fa-4933-bc62-503835360965", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "5179d490-ee47-45a5-b49d-cdb783960229", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6d435ed1-1b08-4c71-a5ea-e45f859d2838", + "DeletedAt": null, + "LexemeForm": { + "seh": "wana" + }, + "CitationForm": { + "seh": "uwana" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "177fe980-b229-4630-aaf9-8522bc6e3d8b", + "Order": 1, + "DeletedAt": null, + "EntryId": "6d435ed1-1b08-4c71-a5ea-e45f859d2838", + "Definition": {}, + "Gloss": { + "en": "childhood", + "pt": "infa\u0302ncia" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "933fb486-3798-473d-92f6-1b5a87dd222e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21,32", + "Ws": "en" + } + ] + }, + "SenseId": "177fe980-b229-4630-aaf9-8522bc6e3d8b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "096e696f-e0c9-46d5-a6d5-e92c076331c3", + "DeletedAt": null, + "LexemeForm": { + "seh": "weya" + }, + "CitationForm": { + "seh": "uweya" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "b3b3016f-337d-4ea6-a6d2-9bc3ebc9a2ba", + "Order": 1, + "DeletedAt": null, + "EntryId": "096e696f-e0c9-46d5-a6d5-e92c076331c3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "animal hair", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "pelos dos animais", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "hair", + "pt": "pelos" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [ + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "933886bf-ec65-4946-b80e-a904b437cd38", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:21; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "b3b3016f-337d-4ea6-a6d2-9bc3ebc9a2ba", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f1ef0bc6-a6e9-4a05-97c1-bddc54e495b1", + "DeletedAt": null, + "LexemeForm": { + "seh": "wiri" + }, + "CitationForm": { + "seh": "uwiri" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5918398-1bfb-4cfb-85b3-c0b6972fac0d", + "Order": 1, + "DeletedAt": null, + "EntryId": "f1ef0bc6-a6e9-4a05-97c1-bddc54e495b1", + "Definition": {}, + "Gloss": { + "en": "duality", + "pt": "dualidade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "0943cb26-7b85-4514-b8e8-d932cd60714e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "a5918398-1bfb-4cfb-85b3-c0b6972fac0d", + "DeletedAt": null + } + ] + }, + { + "Id": "8780309e-9d9a-4afe-9424-c239c3b77b09", + "Order": 2, + "DeletedAt": null, + "EntryId": "f1ef0bc6-a6e9-4a05-97c1-bddc54e495b1", + "Definition": {}, + "Gloss": { + "en": "dual", + "pt": "dual" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "842e978a-f6a7-40ed-960d-d5170f4b3218", + "DeletedAt": null, + "LexemeForm": { + "seh": "uwu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "35b071f9-e0b1-4612-a43c-bf8d8a236be3", + "Order": 1, + "DeletedAt": null, + "EntryId": "842e978a-f6a7-40ed-960d-d5170f4b3218", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c8b716ec-f5fa-4c95-9c1b-8596be5b9925", + "DeletedAt": null, + "LexemeForm": { + "seh": "xamwali" + }, + "CitationForm": { + "seh": "uxamwali" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a1062067-0b74-4f5b-b8a0-df0698229773", + "Order": 1, + "DeletedAt": null, + "EntryId": "c8b716ec-f5fa-4c95-9c1b-8596be5b9925", + "Definition": {}, + "Gloss": { + "en": "friendship", + "pt": "amizade" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "932674de-1016-4788-8d16-add26eae81b2", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Sulo2:43", + "Ws": "en" + } + ] + }, + "SenseId": "a1062067-0b74-4f5b-b8a0-df0698229773", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "58db3e6a-dd24-4b91-afcd-d3cf3e4dba57", + "DeletedAt": null, + "LexemeForm": { + "seh": "xanu" + }, + "CitationForm": { + "seh": "uxanu" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "2f75bf8c-4b92-46fd-a51f-b2cf2f60c732", + "Order": 1, + "DeletedAt": null, + "EntryId": "58db3e6a-dd24-4b91-afcd-d3cf3e4dba57", + "Definition": { + "en": { + "Spans": [ + { + "Text": "quintette; quality of fiveness", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "quintette", + "pt": "quintete" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "33d30770-2844-4eb8-8653-760eff42f19d", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p33", + "Ws": "en" + } + ] + }, + "SenseId": "2f75bf8c-4b92-46fd-a51f-b2cf2f60c732", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a1095120-e054-40ba-abe0-ec85c7446242", + "DeletedAt": null, + "LexemeForm": { + "seh": "yetimi" + }, + "CitationForm": { + "seh": "uyetimi" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ae62dd24-2425-4d9c-bf98-12f9af6e7573", + "Order": 1, + "DeletedAt": null, + "EntryId": "a1095120-e054-40ba-abe0-ec85c7446242", + "Definition": {}, + "Gloss": { + "en": "brilliancy", + "pt": "brilho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9bd565ae-a790-4457-b064-cff805eb8b7a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "ae62dd24-2425-4d9c-bf98-12f9af6e7573", + "DeletedAt": null + } + ] + }, + { + "Id": "56914d82-0650-4b31-bb28-a77197eca5ac", + "Order": 2, + "DeletedAt": null, + "EntryId": "a1095120-e054-40ba-abe0-ec85c7446242", + "Definition": {}, + "Gloss": { + "en": "splendour", + "pt": "esplendor" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b86b15a7-c37f-4dfd-954f-3c499b713fd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "uyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "a97dad97-0fe4-46d7-aaa4-d2f892439cf1", + "Order": 1, + "DeletedAt": null, + "EntryId": "b86b15a7-c37f-4dfd-954f-3c499b713fd8", + "Definition": {}, + "Gloss": { + "en": "this", + "pt": "este" + }, + "PartOfSpeech": { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "37bfd451-1c70-4a94-8f9b-2561363a54c2", + "DeletedAt": null, + "LexemeForm": { + "seh": "vik" + }, + "CitationForm": { + "seh": "vika" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "a5cec45e-99e3-4c49-82f9-08602426527b", + "Order": 1, + "DeletedAt": null, + "EntryId": "37bfd451-1c70-4a94-8f9b-2561363a54c2", + "Definition": {}, + "Gloss": { + "en": "dip in liquid", + "pt": "mergulhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "40ea6907-8962-49d5-9526-e910b271cd6a", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "a5cec45e-99e3-4c49-82f9-08602426527b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "b763ec45-38bd-449b-bb9f-a76eda4fd5ac", + "DeletedAt": null, + "LexemeForm": { + "seh": "vinyu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "435e2d57-8d6f-4c27-97a1-12affa2d82a9", + "Order": 1, + "DeletedAt": null, + "EntryId": "b763ec45-38bd-449b-bb9f-a76eda4fd5ac", + "Definition": {}, + "Gloss": { + "en": "wine", + "pt": "vinho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d4883351-21b2-4594-910b-4f597ccf0b3c", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "435e2d57-8d6f-4c27-97a1-12affa2d82a9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3a22f840-67a6-4210-86f4-c1cb5d89acd8", + "DeletedAt": null, + "LexemeForm": { + "seh": "vund" + }, + "CitationForm": { + "seh": "vunda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "f93f82cc-9b40-4c81-b3c7-3001a88166e5", + "Order": 1, + "DeletedAt": null, + "EntryId": "3a22f840-67a6-4210-86f4-c1cb5d89acd8", + "Definition": {}, + "Gloss": { + "en": "rot", + "pt": "podrecer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "dacf2ec5-def6-48dc-a4d3-b376982b8f63", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "f93f82cc-9b40-4c81-b3c7-3001a88166e5", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "fc6f6883-38a9-434c-b87a-1176e733aa09", + "DeletedAt": null, + "LexemeForm": { + "seh": "wadz" + }, + "CitationForm": { + "seh": "wadza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1ebd1836-16c2-4bc8-a232-5785ffb40d66", + "Order": 1, + "DeletedAt": null, + "EntryId": "fc6f6883-38a9-434c-b87a-1176e733aa09", + "Definition": { + "en": { + "Spans": [ + { + "Text": "throw seeds", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "lanc\u0327ar semente", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "plant", + "pt": "semear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7b5b1d96-9ab9-4de8-b209-f9a8dfc88261", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1ebd1836-16c2-4bc8-a232-5785ffb40d66", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a0b0cd3e-9564-42a5-b7d4-56e7e2a36118", + "DeletedAt": null, + "LexemeForm": { + "seh": "akudza" + }, + "CitationForm": { + "seh": "wakudza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "552b7e9b-d424-47a8-866c-82f290bd2c7c", + "Order": 1, + "DeletedAt": null, + "EntryId": "a0b0cd3e-9564-42a5-b7d4-56e7e2a36118", + "Definition": {}, + "Gloss": { + "en": "foreigner", + "pt": "estrangeira" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "cef46d47-6a30-4ed9-85e2-64dccd641918", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "552b7e9b-d424-47a8-866c-82f290bd2c7c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ee0fa68b-7be0-4df4-b9f2-25209beff25b", + "DeletedAt": null, + "LexemeForm": { + "seh": "wang" + }, + "CitationForm": { + "seh": "wanga" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4145d3ff-05ab-40d4-9211-ab3874f5aeb9", + "Order": 1, + "DeletedAt": null, + "EntryId": "ee0fa68b-7be0-4df4-b9f2-25209beff25b", + "Definition": {}, + "Gloss": { + "en": "be healthy", + "pt": "ter sau\u0301de" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "21cbdf88-7ca0-4bc5-a3ab-27eb57b0decf", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Munawangisa kunyumba.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Seja que todos tem sau\u0301de em casa.", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "4145d3ff-05ab-40d4-9211-ab3874f5aeb9", + "DeletedAt": null + } + ] + }, + { + "Id": "3db9a9fe-2081-41be-9949-3c7789ccff52", + "Order": 2, + "DeletedAt": null, + "EntryId": "ee0fa68b-7be0-4df4-b9f2-25209beff25b", + "Definition": {}, + "Gloss": { + "en": "be strong", + "pt": "estar forte" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f39516b0-70eb-44b3-9e5b-c501be0a14ea", + "DeletedAt": null, + "LexemeForm": { + "seh": "waw" + }, + "CitationForm": { + "seh": "wawa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "cf11d0dd-67c4-4564-a4d4-c05dd5bbd1a1", + "Order": 1, + "DeletedAt": null, + "EntryId": "f39516b0-70eb-44b3-9e5b-c501be0a14ea", + "Definition": { + "en": { + "Spans": [ + { + "Text": "bitter, sour, spicy, salty", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "strong taste", + "pt": "sabor forte" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9622d6a9-f3f0-48df-b609-09e794304c87", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "cf11d0dd-67c4-4564-a4d4-c05dd5bbd1a1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9b91a29f-7033-4c72-a032-540b171619f0", + "DeletedAt": null, + "LexemeForm": { + "seh": "waz" + }, + "CitationForm": { + "seh": "waza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "bdc37e88-cc8d-40eb-b8a7-d41715ff2201", + "Order": 1, + "DeletedAt": null, + "EntryId": "9b91a29f-7033-4c72-a032-540b171619f0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "drizzle, a light rairn", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "drizzle", + "pt": "chuviscar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "2a03812c-144d-4c4c-aee8-c4916bd8f1e2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Mulungu asawadza", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Est chuviscar (chuva).", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "bdc37e88-cc8d-40eb-b8a7-d41715ff2201", + "DeletedAt": null + } + ] + }, + { + "Id": "5f0ee744-8b92-46cb-8fee-0cd0fa449a5f", + "Order": 2, + "DeletedAt": null, + "EntryId": "9b91a29f-7033-4c72-a032-540b171619f0", + "Definition": { + "en": { + "Spans": [ + { + "Text": "the action of spreading seed, sand etc with a throwing action", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "spread", + "pt": "espalhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "ebc5126a-9d84-4460-84df-c0586287322f", + "DeletedAt": null, + "LexemeForm": { + "seh": "wiri" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "610bd39c-d07d-4f3a-8dcf-6a1c45858f94", + "Order": 1, + "DeletedAt": null, + "EntryId": "ebc5126a-9d84-4460-84df-c0586287322f", + "Definition": {}, + "Gloss": { + "en": "two", + "pt": "dois" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "50eb916e-8dee-4309-8ce9-6cee8601fcac", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Wordlist; Moreira:33", + "Ws": "en" + } + ] + }, + "SenseId": "610bd39c-d07d-4f3a-8dcf-6a1c45858f94", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "d0fa817f-c0ca-4ccc-9920-16a99ee014bb", + "DeletedAt": null, + "LexemeForm": { + "seh": "wo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "94d56b46-19b2-4ecb-aa89-c971ff0e51cc", + "Order": 1, + "DeletedAt": null, + "EntryId": "d0fa817f-c0ca-4ccc-9920-16a99ee014bb", + "Definition": {}, + "Gloss": { + "en": "theirs", + "pt": "d\u0027eles" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "a91df117-0fcb-41b4-82a0-dcabee2cac31", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "wawayo", + "Ws": "seh" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "94d56b46-19b2-4ecb-aa89-c971ff0e51cc", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "90021413-9eb7-478a-9285-e75872f730bc", + "DeletedAt": null, + "LexemeForm": { + "seh": "xamwali" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "896de921-857b-416f-9b2f-2530d6878a3e", + "Order": 1, + "DeletedAt": null, + "EntryId": "90021413-9eb7-478a-9285-e75872f730bc", + "Definition": {}, + "Gloss": { + "en": "friend", + "pt": "amigo" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7205294e-d580-4f19-8fbe-04c815ddfcb4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Barb\u0027s notebook; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "896de921-857b-416f-9b2f-2530d6878a3e", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "7e46646e-47d0-4bac-8ef8-290beacd8090", + "DeletedAt": null, + "LexemeForm": { + "seh": "xanu" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "6582a79f-77d9-498b-9d3d-13aefb6c2187", + "Order": 1, + "DeletedAt": null, + "EntryId": "7e46646e-47d0-4bac-8ef8-290beacd8090", + "Definition": {}, + "Gloss": { + "en": "five", + "pt": "cinco" + }, + "PartOfSpeech": { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "44caec78-e079-4329-ab85-9e9fb96af30a", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "198b7aea-c6eb-40a6-811c-1adee9c5fd32", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:33; Wordlist; Nyacinco", + "Ws": "en" + } + ] + }, + "SenseId": "6582a79f-77d9-498b-9d3d-13aefb6c2187", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "eeadb656-6249-46b5-8f2d-afc6decfc42c", + "DeletedAt": null, + "LexemeForm": { + "seh": "xii" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "12fb344a-78ae-4185-96d8-448329aaac16", + "Order": 1, + "DeletedAt": null, + "EntryId": "eeadb656-6249-46b5-8f2d-afc6decfc42c", + "Definition": {}, + "Gloss": { + "en": "wow!", + "pt": "irra!" + }, + "PartOfSpeech": { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "527d95ec-f83a-430d-bbd1-d8f3805c8605", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "12fb344a-78ae-4185-96d8-448329aaac16", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "806a16e8-d471-4719-ab4c-12944facc995", + "DeletedAt": null, + "LexemeForm": { + "seh": "xikola" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "3659edd6-3d10-4629-8da4-8c9a9555e552", + "Order": 1, + "DeletedAt": null, + "EntryId": "806a16e8-d471-4719-ab4c-12944facc995", + "Definition": {}, + "Gloss": { + "en": "school", + "pt": "escola" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "f50d9bb1-056f-4ff1-80f5-a83c216ececc", + "DeletedAt": null, + "LexemeForm": { + "seh": "xoko" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "c19b8053-71d1-4d12-ae64-ba1e3e5725c2", + "Order": 1, + "DeletedAt": null, + "EntryId": "f50d9bb1-056f-4ff1-80f5-a83c216ececc", + "Definition": {}, + "Gloss": { + "en": "fist", + "pt": "punho" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "686eb994-5789-4762-86d8-8ab7eff1ee4e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "c19b8053-71d1-4d12-ae64-ba1e3e5725c2", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "909fdc18-b099-4ce2-82fd-594ef6d0ce19", + "DeletedAt": null, + "LexemeForm": { + "seh": "xol" + }, + "CitationForm": { + "seh": "xola" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1e636329-5e53-4a16-8383-d26a31811711", + "Order": 1, + "DeletedAt": null, + "EntryId": "909fdc18-b099-4ce2-82fd-594ef6d0ce19", + "Definition": { + "en": { + "Spans": [ + { + "Text": "lack of respect", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "falta de respeito", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "disrespectful", + "pt": "falta de respeito" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "088a2ec2-efd3-479f-8416-b35891f030c4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1e636329-5e53-4a16-8383-d26a31811711", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6a3d7c1c-c699-4274-a2cf-f1d70be82345", + "DeletedAt": null, + "LexemeForm": { + "seh": "yemba" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "6de663de-116b-405f-b3a2-3415c5f276f9", + "Order": 1, + "DeletedAt": null, + "EntryId": "6a3d7c1c-c699-4274-a2cf-f1d70be82345", + "Definition": {}, + "Gloss": { + "en": "bean", + "pt": "feija\u0303o" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "68c4d977-1eeb-4e7d-96b6-f89aee7594f1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira:16 (says type of); Nyazeze; Rogerio", + "Ws": "en" + } + ] + }, + "SenseId": "6de663de-116b-405f-b3a2-3415c5f276f9", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "564fffa0-0aec-46ab-8d41-cbd30be82be1", + "DeletedAt": null, + "LexemeForm": { + "seh": "yenda" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "46cc0a0a-9f6e-4b00-9674-998b9238f32a", + "Order": 1, + "DeletedAt": null, + "EntryId": "564fffa0-0aec-46ab-8d41-cbd30be82be1", + "Definition": {}, + "Gloss": { + "en": "go", + "pt": "ir" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "3dcf17de-6e0b-48c3-9046-b5e28bdaddae", + "DeletedAt": null, + "LexemeForm": { + "seh": "yetim" + }, + "CitationForm": { + "seh": "yetima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "586ad21a-8694-415b-afb2-5843bcb03885", + "Order": 1, + "DeletedAt": null, + "EntryId": "3dcf17de-6e0b-48c3-9046-b5e28bdaddae", + "Definition": {}, + "Gloss": { + "en": "shine", + "pt": "brilhar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "18061ba3-78e0-469b-8556-4ee06155ea48", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Moreira p32; Nyazeze", + "Ws": "en" + } + ] + }, + "SenseId": "586ad21a-8694-415b-afb2-5843bcb03885", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "48c206c1-8d09-41ee-82a1-43a9bb3d19a4", + "DeletedAt": null, + "LexemeForm": { + "seh": "yo" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "4040429d-129b-4421-8325-f3ac51270407", + "Order": 1, + "DeletedAt": null, + "EntryId": "48c206c1-8d09-41ee-82a1-43a9bb3d19a4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "his", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "d\u0027ele", + "Ws": "pt" + } + ] + } + }, + "Gloss": { + "en": "9", + "pt": "9" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9ad41f63-c5f6-4a34-8e7c-7160d30f206d", + "DeletedAt": null, + "LexemeForm": { + "seh": "yokha" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1b7e5eae-e787-4201-bd5d-54355fe1da19", + "Order": 1, + "DeletedAt": null, + "EntryId": "9ad41f63-c5f6-4a34-8e7c-7160d30f206d", + "Definition": {}, + "Gloss": { + "en": "only", + "pt": "somente" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "b5dfcbbe-cb44-46a8-b8e8-db77276782b2", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "ini ndinena kuloja ndikheni", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Eu vou a loja sozinho", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "1b7e5eae-e787-4201-bd5d-54355fe1da19", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "c6c48809-7c78-4abb-b8a6-154c03d809f3", + "DeletedAt": null, + "LexemeForm": { + "seh": "zaz" + }, + "CitationForm": { + "seh": "zaza" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "d79e67f4-9836-4e45-a2cb-02574110442f", + "Order": 1, + "DeletedAt": null, + "EntryId": "c6c48809-7c78-4abb-b8a6-154c03d809f3", + "Definition": {}, + "Gloss": { + "en": "complete", + "pt": "completar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1a07460f-4699-4e4a-8d58-fa960b2d2c45", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "d79e67f4-9836-4e45-a2cb-02574110442f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "09406061-101b-43d3-9ffa-3e5211d2f90b", + "DeletedAt": null, + "LexemeForm": { + "seh": "zazamir" + }, + "CitationForm": { + "seh": "zazamira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "ada56c3e-c584-4f09-8914-978ad628ecbe", + "Order": 1, + "DeletedAt": null, + "EntryId": "09406061-101b-43d3-9ffa-3e5211d2f90b", + "Definition": {}, + "Gloss": { + "en": "shake", + "pt": "tremer" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "52974907-a11a-4693-8ddf-5836eb2047e1", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "ada56c3e-c584-4f09-8914-978ad628ecbe", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1fbdd15b-3107-40f1-a970-7be1c116c622", + "DeletedAt": null, + "LexemeForm": { + "seh": "zazis" + }, + "CitationForm": { + "seh": "zazisa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "38c76c00-9ab7-487d-bb63-2e355f82f7c1", + "Order": 1, + "DeletedAt": null, + "EntryId": "1fbdd15b-3107-40f1-a970-7be1c116c622", + "Definition": {}, + "Gloss": { + "en": "complete", + "pt": "completar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "8f8ac27c-b2f7-4582-a11c-5f5e856c3ae4", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "38c76c00-9ab7-487d-bb63-2e355f82f7c1", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "DeletedAt": null, + "LexemeForm": { + "seh": "zi" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Prefix", + "Senses": [ + { + "Id": "33361573-23f9-41c6-8038-ef5b11e85460", + "Order": 1, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "098fb96c-aaff-447e-9620-7463d45a2a2b", + "Order": 2, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "c86e5e35-bb32-40b6-aaae-d17dea00c907", + "Order": 3, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "098bb9a9-ead5-4fdb-80d9-41054d1151f8", + "Order": 4, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [] + }, + { + "Id": "1e72e29e-1e83-4754-a073-e5edbf7da6bb", + "Order": 5, + "DeletedAt": null, + "EntryId": "1a7fb82e-c260-43d4-af2f-e36631b05d66", + "Definition": {}, + "Gloss": { + "en": "10", + "pt": "10" + }, + "PartOfSpeech": { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "4031c181-7952-47b5-82f2-3322f080ee8e", + "DeletedAt": null, + "LexemeForm": { + "seh": "zinji" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [ + { + "Id": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", + "Order": 1, + "DeletedAt": null, + "EntryId": "4031c181-7952-47b5-82f2-3322f080ee8e", + "Definition": {}, + "Gloss": { + "en": "many", + "pt": "muito" + }, + "PartOfSpeech": { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + "PartOfSpeechId": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "af6a4f9e-68ea-4f53-a16a-4570f7391df9", + "Order": 1, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Pinthu pizinji", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "Many things", + "Ws": "en" + } + ] + }, + "pt": { + "Spans": [ + { + "Text": "Muitas coisas", + "Ws": "pt" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "sulo2; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", + "DeletedAt": null + }, + { + "Id": "82e1dce1-539b-4ee4-a321-fc4eccbd3656", + "Order": 2, + "Sentence": { + "seh": { + "Spans": [ + { + "Text": "Nyama yanga njii.", + "Ws": "seh" + } + ] + } + }, + "Translation": { + "pt": { + "Spans": [ + { + "Text": "Minha carne e\u0301 esta.", + "Ws": "pt" + } + ] + } + }, + "Reference": null, + "SenseId": "f0e9d8bd-0e19-4510-aae0-288ef6845e6c", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "e101f5ba-1812-4c89-b69a-c05d2b931d56", + "DeletedAt": null, + "LexemeForm": { + "seh": "zirim" + }, + "CitationForm": { + "seh": "zirima" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0383e271-64d7-43ef-93c0-bd43385dfa6f", + "Order": 1, + "DeletedAt": null, + "EntryId": "e101f5ba-1812-4c89-b69a-c05d2b931d56", + "Definition": { + "en": { + "Spans": [ + { + "Text": "smooth a clay floor by putting fresh wet clay down and rubbing it", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "smooth", + "pt": "alisar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "1bd8dfa1-bb72-42b4-8edb-f0d4c2a552b6", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Orth; Nya", + "Ws": "en" + } + ] + }, + "SenseId": "0383e271-64d7-43ef-93c0-bd43385dfa6f", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "31b94a4a-5224-4bf3-af8b-50e1a41dc437", + "DeletedAt": null, + "LexemeForm": { + "seh": "zond" + }, + "CitationForm": { + "seh": "zonda" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "0be25da3-89e3-4991-a1fa-318fcdf6d736", + "Order": 1, + "DeletedAt": null, + "EntryId": "31b94a4a-5224-4bf3-af8b-50e1a41dc437", + "Definition": {}, + "Gloss": { + "en": "hate", + "pt": "odiar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "78dc54c1-942e-4ef9-be29-da5f16544ce5", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "0be25da3-89e3-4991-a1fa-318fcdf6d736", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "a705b51e-e8c6-48cd-9d93-6b191ce9f7af", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungulir" + }, + "CitationForm": { + "seh": "zungulira" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "88ea6f68-239a-43d3-a2fc-3cd209661132", + "Order": 1, + "DeletedAt": null, + "EntryId": "a705b51e-e8c6-48cd-9d93-6b191ce9f7af", + "Definition": {}, + "Gloss": { + "en": "surround", + "pt": "rodear" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "e0e33aac-269a-4fc1-8ec6-28ebba45e219", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "88ea6f68-239a-43d3-a2fc-3cd209661132", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "9bd1dbad-08ca-4993-bdda-d568fb93b7eb", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungunuk" + }, + "CitationForm": { + "seh": "zungunuka" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "86618e0a-35d0-4abd-b1ef-3bccb313c9b4", + "Order": 1, + "DeletedAt": null, + "EntryId": "9bd1dbad-08ca-4993-bdda-d568fb93b7eb", + "Definition": {}, + "Gloss": { + "en": "turn", + "pt": "virar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "7ab96245-1872-4068-abdf-2a1beeb73b2e", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": { + "Spans": [ + { + "Text": "Nya", + "Ws": "en" + } + ] + }, + "SenseId": "86618e0a-35d0-4abd-b1ef-3bccb313c9b4", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + }, + { + "Id": "6fac4249-4a72-47d2-b767-9d677530a59e", + "DeletedAt": null, + "LexemeForm": { + "seh": "zungunus" + }, + "CitationForm": { + "seh": "zungunusa" + }, + "LiteralMeaning": {}, + "MorphType": "Root", + "Senses": [ + { + "Id": "1458ae34-3a2e-45f5-b334-391ba0448c43", + "Order": 1, + "DeletedAt": null, + "EntryId": "6fac4249-4a72-47d2-b767-9d677530a59e", + "Definition": {}, + "Gloss": { + "en": "turn", + "pt": "virar" + }, + "PartOfSpeech": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "533915a2-3831-42c4-a48d-b28d1e997153", + "Order": 1, + "Sentence": {}, + "Translation": {}, + "Reference": null, + "SenseId": "1458ae34-3a2e-45f5-b334-391ba0448c43", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ] + } + ], + "PartsOfSpeech": [ + { + "Id": "b460265b-9132-4e52-bb51-64b5a2aa7f69", + "Name": { + "en": "Adjective", + "pt": "Adjectivo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "7fbf785b-73d5-4827-b102-f8d33d9ecf98", + "Name": { + "en": "Derived Adjective", + "pt": "Adjectivo derivado" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb", + "pt": "Adve\u0301rbio" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d0461bd-2b2e-4d65-9f17-0ab5b99d0736", + "Name": { + "en": "Associative", + "pt": "Associativo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "b1bcdc90-4ee0-44f5-9c2d-3043b84394a7", + "Name": { + "en": "Auxiliary Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "a5311f3b-ff98-47d2-8ece-b1aca03a8bbd", + "Name": { + "en": "Cardinal numeral" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e0682a7-efd4-43c9-b083-22c4ce245419", + "Name": { + "en": "Conjunction", + "pt": "Conjunc\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "748af620-8cd0-4364-a951-c234306f5b9f", + "Name": { + "en": "Copula Verb" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "093264d7-06c3-42e1-bc4d-5a965ce63887", + "Name": { + "en": "Demonstrative", + "pt": "Demonstrativo" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40b0ad55-5b3e-4e4f-acf8-e3a060dc21b1", + "Name": { + "en": "Demonstrative1", + "pt": "Demonstrativo1" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "730528ca-6a9b-4424-9839-a58bf66db779", + "Name": { + "en": "Demonstrative2", + "pt": "Demonstrativo2" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "6eb02b74-d776-4c26-987e-bd99dd3520ca", + "Name": { + "en": "Demonstrative3", + "pt": "Demonstrativo3" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "3a3b7275-3bbd-4f24-b584-2c9b2a068b62", + "Name": { + "en": "Demonstrative4", + "pt": "Demonstrativo4" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "b6ad792c-1067-4e8c-bc84-207a26784bb7", + "Name": { + "en": "Demonstrative5", + "pt": "Demonstrativo5" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "4b013c5c-12a5-4bfe-aec3-248b8e3847f0", + "Name": { + "en": "Demonstrative6", + "pt": "Demonstrativo6" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "6df1c8ee-5530-4180-99e8-be2afab0f60d", + "Name": { + "en": "Determiner" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "54dfc4de-7b9f-4840-89bc-b9fd4d8a5a19", + "Name": { + "en": "Interjection", + "pt": "Interjeic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "c4a797ae-3129-457a-9a5c-8c1c62eb4474", + "Name": { + "en": "Interrogative", + "pt": "Interrogativo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "92b78ed5-a9d0-440a-bf0c-b6168c6b4d4e", + "Name": { + "en": "Irregular Verb - Kukhala" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "cf4b95e5-2362-412d-92a1-24846a4bab59", + "Name": { + "en": "Irregular Verb - li" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "dbf8cf00-ef63-466a-bfb1-472e1fdae57d", + "Name": { + "en": "Irregular Verb - na" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "ae52e28d-f653-4f8e-821a-04940a1d7074", + "Name": { + "en": "Irregular Verb - ti" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "1c030229-affa-4729-9773-878100c1fd28", + "Name": { + "en": "Multiplicative numeral" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "Name": { + "en": "Noun", + "pt": "Nome" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c99beb3a-995d-4156-a66c-9b7d0860c332", + "Name": { + "en": "Nominalizer", + "pt": "Nominalizador" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "44caec78-e079-4329-ab85-9e9fb96af30a", + "Name": { + "en": "Numeral", + "pt": "Numeral" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "3d9d43d6-527c-4e79-be00-82cf2d0fd9bd", + "Name": { + "en": "Ordinal numeral" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8aa1f669-4dad-411e-adeb-6ef50ce9aa0a", + "Name": { + "en": "Orienter", + "pt": "Orientador" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "61b871bd-293d-4144-9c36-4ffe3d3d078f", + "Name": { + "en": "Possessive", + "pt": "Possessivo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "24f4134f-0530-449c-b809-8a633ced440d", + "Name": { + "en": "Preposition", + "pt": "Preposic\u0327a\u0303o" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "a511495e-48fa-46fe-a9db-fd5d31e585b3", + "Name": { + "en": "Prepositional phrase" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "a4fc78d6-7591-4fb3-8edd-82f10ae3739d", + "Name": { + "en": "Pro-form" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Independent Pronoun", + "pt": "Pronome Independente" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d35c60bd-e436-4769-a6c6-96770a849831", + "Name": { + "en": "Personal Pronoun", + "pt": "Pronome Pessoal" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb", + "pt": "Verbo" + }, + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c90d669-cc98-49ea-8c9c-a739253336ed", + "Name": { + "en": "Subjunctive Verb", + "pt": "Verbo Conjuntivo" + }, + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "c36e1ddc-d24b-42d5-9660-49766bda6555", + "Name": { + "en": "Relative Verb", + "pt": "Verbo Relativo" + }, + "DeletedAt": null, + "Predefined": false + } + ], + "Publications": [ + { + "Id": "70c0a758-5901-4884-b992-94ca31087607", + "DeletedAt": null, + "Name": { + "en": "Main Dictionary" + } + } + ], + "SemanticDomains": [ + { + "Id": "00041516-72d1-4e56-9ed8-fe235a9b1a68", + "Name": { + "en": "Series" + }, + "Code": "8.4.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "00269021-e1c4-474d-9dba-341d296bdac7", + "Name": { + "en": "Order, sequence" + }, + "Code": "8.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "00364f0c-9a3a-4910-a82e-1ffbc4d4137f", + "Name": { + "en": "Excited" + }, + "Code": "3.4.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0037693a-ae42-4e5c-85f5-10a05482d4ee", + "Name": { + "en": "Thing" + }, + "Code": "9.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0049664f-0931-487b-ab3c-ce11e134ce7a", + "Name": { + "en": "Verb affixes" + }, + "Code": "9.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0066f0f7-02dd-4f8e-afa5-59b8cb5a434a", + "Name": { + "en": "Betray" + }, + "Code": "4.8.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "00dde3be-e53d-42c3-b3ff-717e25cbffb6", + "Name": { + "en": "Pray" + }, + "Code": "4.9.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0105615f-0a96-4d08-ab00-ca4b4473de39", + "Name": { + "en": "Stingy" + }, + "Code": "6.8.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "01441207-4935-49a5-a192-16d949f5606c", + "Name": { + "en": "Sports" + }, + "Code": "4.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "01459db0-bf2a-422b-8d55-0ab505aea2b4", + "Name": { + "en": "Trouble" + }, + "Code": "4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "016e3f5b-b527-446e-9da6-49af34870001", + "Name": { + "en": "Expose falsehood" + }, + "Code": "3.5.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "019e3b64-c68a-4b19-bec5-a22f4eb88f48", + "Name": { + "en": "Weaving baskets and mats" + }, + "Code": "6.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0205145d-23b6-4c3c-bf2d-bf866bb010e7", + "Name": { + "en": "Conveying water" + }, + "Code": "6.6.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "025da6f4-b1b6-423a-8c0f-b324f531a6f1", + "Name": { + "en": "Plant" + }, + "Code": "1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0281fb1d-ab12-41b9-a3dc-09ef6b1e4733", + "Name": { + "en": "Life after death" + }, + "Code": "2.6.6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0296465a-25de-4af6-a122-376956b4b452", + "Name": { + "en": "Pronouns" + }, + "Code": "9.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "029e0760-3306-41cc-b032-40befb22303e", + "Name": { + "en": "Stimulant" + }, + "Code": "5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "02b6da2b-fae3-49f4-83f0-fd014024e117", + "Name": { + "en": "Contradict" + }, + "Code": "3.5.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "02d404d7-f3d7-492c-92a0-c6c9ff1a1908", + "Name": { + "en": "Meal" + }, + "Code": "5.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "03352940-c220-4a32-a9a5-fc08d1d0dc71", + "Name": { + "en": "Garbage" + }, + "Code": "8.3.7.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "03d65d0c-aafb-40c0-9cd2-3e5ced66ad03", + "Name": { + "en": "All the time" + }, + "Code": "8.4.6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "03e22b05-8505-442d-9c3b-7e691bd525e0", + "Name": { + "en": "Anoint the body" + }, + "Code": "5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "040e4b3e-2f36-430a-ab09-1917f96a09de", + "Name": { + "en": "Animal products" + }, + "Code": "6.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "041b5ac9-99be-4281-a17e-654eff33d793", + "Name": { + "en": "Hairstyle" + }, + "Code": "5.4.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04370e1f-25aa-4d9e-97c5-de9b59156666", + "Name": { + "en": "Widow, widower" + }, + "Code": "4.1.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "043d12ac-c76d-4b4c-813b-4ef7758c8085", + "Name": { + "en": "Hide" + }, + "Code": "7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0448c78b-dbb7-417c-afc5-b227a1475825", + "Name": { + "en": "Arrest" + }, + "Code": "4.6.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "044f740b-94f3-4096-aa3a-c07f5e708346", + "Name": { + "en": "Collect" + }, + "Code": "6.8.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04543543-4c3d-4d71-aa87-53191ef3b7b0", + "Name": { + "en": "Immediately" + }, + "Code": "8.4.6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04582a28-b94a-4e7f-8cc4-5cdefa8a39f0", + "Name": { + "en": "Man" + }, + "Code": "2.6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "04752883-aa3e-42a2-bd42-454e9cd99b11", + "Name": { + "en": "Evidentials" + }, + "Code": "9.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05371057-2fe4-49ef-b203-f5bd6727645e", + "Name": { + "en": "Shake" + }, + "Code": "7.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0539de86-f407-4b3d-b1b8-028822fb9f26", + "Name": { + "en": "Repeat" + }, + "Code": "3.5.1.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05472990-3f51-40b3-bca8-df3cf383328b", + "Name": { + "en": "Make speech" + }, + "Code": "3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "054e81ce-abd8-4069-989d-13e2fa58851c", + "Name": { + "en": "Show off" + }, + "Code": "4.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05811fbe-2361-4219-a5d3-be3dc487f6fa", + "Name": { + "en": "Solve a problem" + }, + "Code": "4.4.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05a7bbdc-7cf5-47d3-830b-84e1591b11cc", + "Name": { + "en": "Pass laws" + }, + "Code": "4.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05e20a72-9496-4bba-8097-5605692e83a1", + "Name": { + "en": "Limitation of topic" + }, + "Code": "9.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "05f95abb-163a-4927-83c5-8c81ef7b769c", + "Name": { + "en": "Tendency" + }, + "Code": "3.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "061749a8-e28a-461c-bf2d-052ab3e157d5", + "Name": { + "en": "Interval, space" + }, + "Code": "8.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0622d3f7-1ab2-482b-9f9c-9c101cd35182", + "Name": { + "en": "Season" + }, + "Code": "8.4.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06341e45-c407-49d0-98d8-74ecc303fb02", + "Name": { + "en": "End a relationship" + }, + "Code": "4.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "063e0810-8e49-44ef-aa8f-bb9e63bb66dd", + "Name": { + "en": "Buy" + }, + "Code": "6.8.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0644f4da-c9fe-4239-bbe5-6efc85f98968", + "Name": { + "en": "Working with land" + }, + "Code": "6.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0656cd5e-641f-46f3-bcad-6f643727a344", + "Name": { + "en": "Recently" + }, + "Code": "8.4.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0656f6a7-9a88-4c03-a8ab-ace8c0f52ebf", + "Name": { + "en": "Illegitimate child" + }, + "Code": "4.1.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06905a7e-47f4-4c86-afea-a4175295b566", + "Name": { + "en": "Knock over" + }, + "Code": "7.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0698b0f4-0a31-4a70-9262-8d36677d8faa", + "Name": { + "en": "Neglect plants" + }, + "Code": "6.2.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06a44085-cbcf-4217-ae5e-56c51899c99a", + "Name": { + "en": "Common" + }, + "Code": "8.3.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06a89652-70e0-40ac-b929-ed42f011c9fc", + "Name": { + "en": "Dead things" + }, + "Code": "1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06ac577a-4d61-4898-ac9d-e3f18b7504af", + "Name": { + "en": "Save from trouble" + }, + "Code": "4.4.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06b23bcd-69df-471a-b5a5-4ca8cab7f0d9", + "Name": { + "en": "Be about, subject" + }, + "Code": "3.5.1.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06be473e-c2f3-45fe-8522-3a0c033b5067", + "Name": { + "en": "Mark" + }, + "Code": "7.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "06cb2024-5f7b-467c-b32c-ef4c56030ac0", + "Name": { + "en": "Telling time" + }, + "Code": "8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "07476166-c5e5-4701-97d3-d97de8b5be6f", + "Name": { + "en": "Know" + }, + "Code": "3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0772919e-eb4c-45e3-b705-73007f5e5583", + "Name": { + "en": "Monetary units" + }, + "Code": "6.8.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "07cf5182-d090-4432-817b-037895b5cd1d", + "Name": { + "en": "Lose wealth" + }, + "Code": "6.8.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "07e97f87-68ca-4d18-9f86-a326e0400947", + "Name": { + "en": "Line" + }, + "Code": "8.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "080bf07b-e58b-4a75-bb97-84d980a143f0", + "Name": { + "en": "Shape" + }, + "Code": "8.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08239f53-daa5-47a6-9f39-29a9064b0c27", + "Name": { + "en": "Join, attach" + }, + "Code": "7.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08244b88-bfba-487a-96bc-ca3771d1fa7c", + "Name": { + "en": "Start again" + }, + "Code": "8.4.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "084e2568-3f54-4eab-b436-8a87fb466659", + "Name": { + "en": "Working with stone" + }, + "Code": "6.6.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08788e9a-93b8-4a2e-ab01-dea177f061e8", + "Name": { + "en": "Feast" + }, + "Code": "5.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08c05e00-9660-4491-af2f-a05fab27ef39", + "Name": { + "en": "Thin person" + }, + "Code": "8.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "08d5e632-0aed-4924-b3bb-d43de3420385", + "Name": { + "en": "Funeral" + }, + "Code": "2.6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "093eeea2-4ff6-4ee8-ad05-8af1702b7246", + "Name": { + "en": "Become, change state" + }, + "Code": "9.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "095c36bd-b74a-44f5-987b-85909e3f4c1d", + "Name": { + "en": "Forward" + }, + "Code": "8.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "09ac3709-0b0e-4046-b6b2-7869d574aa0d", + "Name": { + "en": "Names of continents" + }, + "Code": "9.7.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a1ad4c9-8bf3-448b-a27f-611813b305de", + "Name": { + "en": "Under, below" + }, + "Code": "8.5.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a1b26b2-2152-45e2-9b63-4a68fca73a90", + "Name": { + "en": "Musician" + }, + "Code": "4.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a27d9d1-0f1f-475a-92a2-bbccf5b15f41", + "Name": { + "en": "Hungry, thirsty" + }, + "Code": "5.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a37e7d5-b10e-4f1d-baf0-e71668425b3e", + "Name": { + "en": "Parts of an insect" + }, + "Code": "1.6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a42fd83-3b30-4c85-bb68-f5132e9ffeee", + "Name": { + "en": "Protect" + }, + "Code": "4.4.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0a85ee64-e466-4295-8e2c-5b06c8e3054f", + "Name": { + "en": "Press" + }, + "Code": "7.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0aaacffe-9b6c-49a7-bf68-c0f9ff3e120e", + "Name": { + "en": "Most, least" + }, + "Code": "8.1.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0aae0254-dc06-4906-8ecf-2d8450fb83f1", + "Name": { + "en": "Lie down" + }, + "Code": "7.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0aae1951-4d5b-45a0-853c-1839764c9862", + "Name": { + "en": "Short, not tall" + }, + "Code": "8.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ac5e5f9-e7fe-4d37-a631-eab1ceb1f8ae", + "Name": { + "en": "Mountain" + }, + "Code": "1.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ac81210-20ff-4a89-948f-5d154668f05c", + "Name": { + "en": "Independent person" + }, + "Code": "4.1.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0add0775-0ed0-46be-ba4a-76310e63a036", + "Name": { + "en": "Leaning, sloping" + }, + "Code": "8.3.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b0801a3-8a0c-40ea-bf41-07df80bd0d5f", + "Name": { + "en": "Dry" + }, + "Code": "1.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b7b9a1c-588b-475a-ac14-00f0999cbfe9", + "Name": { + "en": "Peace" + }, + "Code": "4.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b7bfd0a-249c-45b6-9427-2c17ae00bf37", + "Name": { + "en": "Cordage" + }, + "Code": "6.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0b98fb79-222f-418c-8107-5d4e791d329c", + "Name": { + "en": "Management" + }, + "Code": "6.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0bbe1739-e0b4-442e-b69c-02a0ea20d790", + "Name": { + "en": "Dive" + }, + "Code": "7.2.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0bc02285-8e70-442a-8d08-e04d922507c8", + "Name": { + "en": "Art" + }, + "Code": "6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0c1bcc98-9bc3-4da0-8eac-ff8a6eecbf84", + "Name": { + "en": "Acquit" + }, + "Code": "4.7.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0c21ae3d-10b1-481f-8d8f-66e2590c4578", + "Name": { + "en": "Lazy" + }, + "Code": "6.1.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0c7c33f2-4cfa-42df-84bb-19fc915a72bd", + "Name": { + "en": "Copy" + }, + "Code": "8.3.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ca05184-08b9-4dc7-a4c7-ff762380b111", + "Name": { + "en": "Pay" + }, + "Code": "6.8.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0cc62b4a-d5ff-4f45-83d1-e2b46e5d159a", + "Name": { + "en": "Time of the day" + }, + "Code": "8.4.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ce61f27-9de8-49b2-9189-6f6efe488f6d", + "Name": { + "en": "Search" + }, + "Code": "7.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d38c343-9c51-47fe-a367-ffadfc92c507", + "Name": { + "en": "Young" + }, + "Code": "8.4.6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d427d55-d63e-4a35-a66a-5e4dce0a963e", + "Name": { + "en": "Different" + }, + "Code": "8.3.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d63adce-41dd-4873-b0bf-331d0205e65d", + "Name": { + "en": "Exist" + }, + "Code": "9.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d7409ab-fc1f-4680-b040-d91d7004084f", + "Name": { + "en": "Interrupt" + }, + "Code": "8.4.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d935e77-e437-426f-acff-dccfb516ec8c", + "Name": { + "en": "Busy" + }, + "Code": "6.1.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0d972590-5947-4983-a092-443697baec24", + "Name": { + "en": "Agricultural tool" + }, + "Code": "6.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0db5817e-05bf-4703-a6b9-e239ac44f857", + "Name": { + "en": "Male, female" + }, + "Code": "2.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0de28f92-c851-413c-bb6c-3ad21f5e267f", + "Name": { + "en": "Listen" + }, + "Code": "2.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e250e72-6c3f-424f-9e62-2dcc9729d817", + "Name": { + "en": "Number series" + }, + "Code": "8.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e590da7-c027-42e0-b580-f65686cee461", + "Name": { + "en": "Surprise" + }, + "Code": "3.4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e5a6bd0-470f-4231-9f57-a73b725807f4", + "Name": { + "en": "First fruits" + }, + "Code": "6.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0e79435b-f5ff-4061-81ff-49557ba2aed4", + "Name": { + "en": "Relationships" + }, + "Code": "4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ebf9fcc-ee38-4f5f-ab5e-c76e199ef7ae", + "Name": { + "en": "Plural" + }, + "Code": "8.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0eda983b-633e-4b11-b5c8-28be60067782", + "Name": { + "en": "Risk" + }, + "Code": "4.4.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ede51d2-69bd-411e-97f9-da0d5118bbff", + "Name": { + "en": "Condemn, find guilty" + }, + "Code": "4.7.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0ee5b933-f1ab-485f-894a-51fe239cb726", + "Name": { + "en": "Tree" + }, + "Code": "1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0eefa07a-e0a3-49e3-aeb4-62f1eafd8e23", + "Name": { + "en": "Semantically similar events" + }, + "Code": "9.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0efe342d-4969-4bd1-95be-556f6c62adfc", + "Name": { + "en": "Conform" + }, + "Code": "4.3.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f07adb7-4387-4723-9800-8362e825ad45", + "Name": { + "en": "Rock" + }, + "Code": "1.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f323bee-0d8a-4564-9691-87880f55d910", + "Name": { + "en": "Provide for, support" + }, + "Code": "4.3.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f46cb61-7bb5-410d-abc5-4a75dc80a24f", + "Name": { + "en": "Disbelief" + }, + "Code": "3.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f568473-880d-43bd-b5ce-590100fdcaf6", + "Name": { + "en": "Eat" + }, + "Code": "5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f7c4d2f-ed94-49ba-a91c-fba36193f35a", + "Name": { + "en": "Price" + }, + "Code": "6.8.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f883eb0-00a1-44cc-b719-97fb6ec145d4", + "Name": { + "en": "Daily life" + }, + "Code": "5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0f983449-1c43-4974-b388-7695b1af4bfa", + "Name": { + "en": "Countryside" + }, + "Code": "4.6.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0fa0be21-2246-40b2-86b1-ca572fe8c16c", + "Name": { + "en": "Uninterested, bored" + }, + "Code": "3.4.1.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0fabc72a-ce97-41f3-8a2d-2f27eae09499", + "Name": { + "en": "Square" + }, + "Code": "8.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "0fef044a-c822-450d-b54a-eac8621e50c2", + "Name": { + "en": "Wood" + }, + "Code": "6.6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "100e62a6-b6f4-4b30-b317-0517d6b102a9", + "Name": { + "en": "Shy, timid" + }, + "Code": "3.4.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1017cbc3-0dfb-4930-9881-28f96784035c", + "Name": { + "en": "Move quickly" + }, + "Code": "7.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "101c16f8-ec76-4ec7-895a-fd814fef51dd", + "Name": { + "en": "Treat disease" + }, + "Code": "2.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "104d40c9-2a4f-4696-ad99-5cf0eb86ab2e", + "Name": { + "en": "Recover from sickness" + }, + "Code": "2.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "106c2c42-36fd-4b0a-94f7-e998f6eae6f5", + "Name": { + "en": "Curse" + }, + "Code": "4.9.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1082c52b-490a-4eec-acf1-7016796dafd9", + "Name": { + "en": "To a small degree" + }, + "Code": "9.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1088cc2f-83ae-4911-8018-401a745dcfd5", + "Name": { + "en": "Night" + }, + "Code": "8.4.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "10a82711-8829-461a-b172-fc8fff3d555c", + "Name": { + "en": "Dog" + }, + "Code": "6.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "10b6c417-d020-4318-a44a-ae69ea3eec5a", + "Name": { + "en": "Change something" + }, + "Code": "9.1.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1133ad78-9ce9-46aa-b181-bb6f7a84a07b", + "Name": { + "en": "Near" + }, + "Code": "8.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1137590c-6f2f-4b69-b04e-f6a890a335a2", + "Name": { + "en": "Refuse to do something" + }, + "Code": "3.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1148684a-0f44-4b5a-9e3e-3823163cd4a1", + "Name": { + "en": "Announce" + }, + "Code": "3.5.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "11665f1d-aca9-4699-afb2-bcdea69c6645", + "Name": { + "en": "Important" + }, + "Code": "8.3.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "116bef13-e80f-4a15-bb0a-bb7b3794ffac", + "Name": { + "en": "Patient-related cases" + }, + "Code": "9.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "11cf45ec-f9d6-4c99-8782-738e26a342c8", + "Name": { + "en": "Take something from somewhere" + }, + "Code": "7.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1229dd8f-5cfc-4644-93c3-d256fc34d054", + "Name": { + "en": "Christianity" + }, + "Code": "4.9.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12781062-ee36-4703-9bc0-cee4ed467ee5", + "Name": { + "en": "Newspaper" + }, + "Code": "3.5.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12a028d1-d910-4011-ab9d-59be69daaf65", + "Name": { + "en": "React, respond" + }, + "Code": "9.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12b6934d-3a4a-4623-995f-865f401349ab", + "Name": { + "en": "Manner of eating" + }, + "Code": "5.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12d752d5-53a9-46f6-9e81-3153401cc760", + "Name": { + "en": "Plan a time" + }, + "Code": "8.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12f12bf3-f232-4477-bf39-d91b7f55c2c3", + "Name": { + "en": "Often" + }, + "Code": "8.4.6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "12fe5f6c-7f98-47ba-936a-bcd1065c2db3", + "Name": { + "en": "Move in a direction" + }, + "Code": "7.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "130e2cbb-7e51-4f6f-a1cf-7a053a44c9b7", + "Name": { + "en": "Decorated" + }, + "Code": "8.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "134c68a9-ac3f-4b7e-8fca-63642d796a75", + "Name": { + "en": "Citizen" + }, + "Code": "4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "139409c3-7860-4586-897f-85ba3226046c", + "Name": { + "en": "Without result " + }, + "Code": "9.6.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "139cd00c-429c-465a-a227-512af0c48039", + "Name": { + "en": "Growing cassava" + }, + "Code": "6.2.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13df6ee2-4189-4faa-b54d-768588d03978", + "Name": { + "en": "Reflexive pronouns" + }, + "Code": "9.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13e67cc9-055b-4f9b-9217-a16b18db0329", + "Name": { + "en": "Think so" + }, + "Code": "9.4.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13edbeff-8913-49ef-8f02-777f86fb512d", + "Name": { + "en": "Association" + }, + "Code": "9.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "13f62fa1-589c-4a46-9bbc-b0fd1001e21f", + "Name": { + "en": "Imprison" + }, + "Code": "4.7.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1438c623-c4ce-4559-b71b-cfb86a71e6d7", + "Name": { + "en": "Light a fire" + }, + "Code": "5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1447278f-efff-4807-b9ea-c487dea1ba5e", + "Name": { + "en": "Food from seeds" + }, + "Code": "5.2.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1461c106-d9e0-417d-9487-a57e6d0cced0", + "Name": { + "en": "Below standard" + }, + "Code": "4.3.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "147c2e58-9ae8-460f-8cab-bf04a668945d", + "Name": { + "en": "Prophecy" + }, + "Code": "4.9.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14954a0f-5c8a-4680-90b0-53398bd3a2a7", + "Name": { + "en": "Known, unknown" + }, + "Code": "3.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14a32765-81b0-411e-89fa-91e092a70818", + "Name": { + "en": "Call" + }, + "Code": "3.5.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14ad95ad-50fc-450f-b44d-4273df0b1e8b", + "Name": { + "en": "Period of time" + }, + "Code": "8.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "14e9c20c-6eb5-49a4-a03f-3be26a934500", + "Name": { + "en": "Ocean, lake" + }, + "Code": "1.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "15947464-997a-4f44-9a4b-ac4916e7e19b", + "Name": { + "en": "Adornment" + }, + "Code": "5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "15e0b54b-bb7c-4900-b048-20b718d05f79", + "Name": { + "en": "Markers of focus" + }, + "Code": "9.6.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "15fb022e-1b45-41e9-bd8a-09ddc9dc6acd", + "Name": { + "en": "Determined" + }, + "Code": "3.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16081dd6-72e5-4826-b86d-958dd82a01c0", + "Name": { + "en": "Move down" + }, + "Code": "7.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "161cae07-d1cb-467c-920f-62ba9039584c", + "Name": { + "en": "Travel in space" + }, + "Code": "7.2.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1621aac3-4ea9-4373-bf1b-40fce0ca7b5e", + "Name": { + "en": "Lack" + }, + "Code": "8.1.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "167a5bae-f06f-424c-bfcb-ec547a076c8d", + "Name": { + "en": "Tend herds in fields" + }, + "Code": "6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "167bfba5-0785-4bb5-a083-3ffbefa57897", + "Name": { + "en": "Evaluate, test" + }, + "Code": "3.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1688280e-27c4-47a8-87b7-8fe31b174ab8", + "Name": { + "en": "Test" + }, + "Code": "3.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1689ac96-1159-4575-bf5f-d16345f9496c", + "Name": { + "en": "Era" + }, + "Code": "8.4.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16d2c60a-52d7-4ec5-a5b1-c559dc078bf3", + "Name": { + "en": "Police" + }, + "Code": "4.6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16dbd62c-f60d-4530-ba4e-0e74221e4681", + "Name": { + "en": "Hide your thoughts" + }, + "Code": "3.5.1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16de6eab-afab-4ba4-a279-cf0ba4d7c9e6", + "Name": { + "en": "Animal color, marking" + }, + "Code": "8.3.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "16ee1e09-27ad-48c5-aa07-6933ecbbc716", + "Name": { + "en": "Hard, firm" + }, + "Code": "8.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "17102138-b97a-4f1d-81bc-9be4af90889e", + "Name": { + "en": "Lose a fight" + }, + "Code": "4.8.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "17851b86-f8fb-4850-9b33-c1a9fcb0aec1", + "Name": { + "en": "Show hospitality" + }, + "Code": "4.2.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "17d5f429-6550-4a3a-a755-5ac3c3d7e04f", + "Name": { + "en": "Animal home" + }, + "Code": "1.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18043b8c-3ff0-46a5-87cc-626f62f967cc", + "Name": { + "en": "Growing coconuts" + }, + "Code": "6.2.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "180a2220-942c-4e17-96ee-cd4f63a4c715", + "Name": { + "en": "Soil, dirt" + }, + "Code": "1.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18595df7-1c69-40db-a7c1-74d490115c0c", + "Name": { + "en": "Blow air" + }, + "Code": "1.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1886ffc9-0a18-41ea-b2f6-c17c297f1681", + "Name": { + "en": "Science" + }, + "Code": "3.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "189f8c29-f0ff-44b6-a0db-5b287c412a75", + "Name": { + "en": "Hostility" + }, + "Code": "4.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18a6684f-d324-45ee-855c-44d473916b14", + "Name": { + "en": "Aspectual time" + }, + "Code": "8.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18b3ca02-18fe-4ab5-8709-c20957a0a2fb", + "Name": { + "en": "Proud" + }, + "Code": "4.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "18bf6c79-6399-4977-be3d-93135302d8c4", + "Name": { + "en": "Purpose " + }, + "Code": "9.6.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "191ca5a5-0a67-426e-adfc-6fdf7c2aaa2c", + "Name": { + "en": "House" + }, + "Code": "6.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "196bf7b1-54a1-4a78-8d10-c61585849c63", + "Name": { + "en": "Accompany" + }, + "Code": "7.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "196f81d0-6a1a-4cc0-936a-367423ff485c", + "Name": { + "en": "Trap" + }, + "Code": "6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "198436ae-c3c6-4f3c-8fe0-ea10c867f1c6", + "Name": { + "en": "Growing grass" + }, + "Code": "6.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "19d54c2f-ae03-4cbc-9b7e-57292f92fbc1", + "Name": { + "en": "Pursue" + }, + "Code": "7.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "19fea936-30d1-482f-a103-1c5549b19745", + "Name": { + "en": "Twist, wring" + }, + "Code": "8.3.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1a28d255-8f58-428c-9641-59f17f8b1e08", + "Name": { + "en": "Tear down" + }, + "Code": "7.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1a635032-6e13-4a56-aa03-6c6a015c502e", + "Name": { + "en": "Unsure" + }, + "Code": "9.4.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1a8322d7-cda9-41e5-a14b-f41274cb7157", + "Name": { + "en": "Right, left" + }, + "Code": "8.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b0270a5-babf-4151-99f5-279ba5a4b044", + "Name": { + "en": "Body" + }, + "Code": "2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b399fa1-e4f7-4d7b-a33e-3972b8b556e2", + "Name": { + "en": "Food storage" + }, + "Code": "5.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b3dccfe-29e4-478e-8443-17be9454a05a", + "Name": { + "en": "Leave something" + }, + "Code": "7.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b4f987d-3eaa-46dd-95ee-e0cb1f30cfbb", + "Name": { + "en": "In general" + }, + "Code": "9.6.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b6b0c12-9ecd-45cb-bb0e-0dadb435eddf", + "Name": { + "en": "Many, much" + }, + "Code": "8.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1b73b2bf-9582-4f8a-822a-e0d020272c7c", + "Name": { + "en": "Follow" + }, + "Code": "7.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1bd42665-0610-4442-8d8d-7c666fee3a6d", + "Name": { + "en": "Moon" + }, + "Code": "1.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c0c4951-03b6-49b8-8a8e-724397cfd5a7", + "Name": { + "en": "Obsessed" + }, + "Code": "3.4.1.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c3c8af0-56b9-4617-862e-21f39b388606", + "Name": { + "en": "Die" + }, + "Code": "2.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c3f8996-362e-4ee0-af02-0dd02887f6aa", + "Name": { + "en": "Heaven, hell" + }, + "Code": "4.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c512719-6ecb-48cb-980e-4ff20e8b5f9b", + "Name": { + "en": "Spirits of things" + }, + "Code": "1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1c8da3aa-3c74-4188-8949-5ab82fc1f99c", + "Name": { + "en": "Every time" + }, + "Code": "8.4.6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1ca26512-75f6-4a7a-a7cc-07d08aa799d9", + "Name": { + "en": "Repent" + }, + "Code": "4.8.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1cb79293-d4f7-4990-9f50-3bb595744f61", + "Name": { + "en": "Soul, spirit" + }, + "Code": "3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1d34380d-61bf-4247-9145-ba318a14a97e", + "Name": { + "en": "Piece" + }, + "Code": "8.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1d5c798b-0f2d-49f2-bde6-cbcf2ef8fd02", + "Name": { + "en": "Disagree" + }, + "Code": "3.2.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1d8633e0-4279-4ddc-826e-16aa08a977e5", + "Name": { + "en": "Bone, joint" + }, + "Code": "2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1da9c4f4-8ae2-47d9-8068-ff65fa3848a9", + "Name": { + "en": "Repay debt" + }, + "Code": "6.8.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1dc717b9-c5e8-4482-b076-22102da9d553", + "Name": { + "en": "Break the law" + }, + "Code": "4.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1de2cef5-3a2d-45c1-8cb6-06b2ac087907", + "Name": { + "en": "Subordinating particles" + }, + "Code": "9.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1e102423-6167-486a-bfef-dad1c9cdf1eb", + "Name": { + "en": "Vehicle" + }, + "Code": "7.2.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1e419f7a-7363-46bc-8044-157ed0b40ccd", + "Name": { + "en": "Hold" + }, + "Code": "7.3.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1e9a0881-f715-4057-9af8-251cb8eec9da", + "Name": { + "en": "Voice" + }, + "Code": "3.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1ec85151-eba0-48f4-b56d-4f8040602a4b", + "Name": { + "en": "Inherit" + }, + "Code": "2.6.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1f3519f8-d946-4857-a1fd-553d98dddf6d", + "Name": { + "en": "Stupid" + }, + "Code": "3.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1f4efae7-1029-4b66-80ee-802459a7baf5", + "Name": { + "en": "Relative time" + }, + "Code": "8.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1f608e18-958e-4bb3-a977-04879fb5acd5", + "Name": { + "en": "Food from animals" + }, + "Code": "5.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1fa683b9-78fd-4feb-9978-55d5953f38ec", + "Name": { + "en": "Subject of teaching" + }, + "Code": "3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1fd8a8d6-6795-4a5b-90e0-342e8b0975a1", + "Name": { + "en": "Explode" + }, + "Code": "6.6.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1fda68d4-5941-4695-b656-090d603a3344", + "Name": { + "en": "Food preparation" + }, + "Code": "5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "1ff743cb-49e0-483d-8a1d-4603a7d6c395", + "Name": { + "en": "Decrease" + }, + "Code": "8.1.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "203f46d2-f0d0-4dda-8d1a-ddc15065b005", + "Name": { + "en": "Parts of a reptile" + }, + "Code": "1.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "20baa5e7-4f02-4782-a292-c6281d7b5f3a", + "Name": { + "en": "Push" + }, + "Code": "7.3.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "20e7d987-0d55-46d4-ab69-0b0cce2f1e24", + "Name": { + "en": "Leave" + }, + "Code": "7.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "20fadd54-6cec-4bb3-a47c-66c29aaff227", + "Name": { + "en": "Avoid" + }, + "Code": "4.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21167445-f1b1-49b4-b147-bc792616c432", + "Name": { + "en": "Time" + }, + "Code": "8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21461d78-02f9-4be6-80e3-6a4498ce8f4c", + "Name": { + "en": "Prisoner of war" + }, + "Code": "4.8.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2158eb7d-eb59-4740-9628-9080d7f51a97", + "Name": { + "en": "Wake up" + }, + "Code": "5.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "218c1d59-0ebb-4936-b9cf-0a93e88aa729", + "Name": { + "en": "Hopeless" + }, + "Code": "3.2.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21a284ab-b9a3-42c8-8fb9-96aff1e1fe8f", + "Name": { + "en": "Towards" + }, + "Code": "8.5.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21bcc306-13cb-4162-98b3-2ba319ba14ea", + "Name": { + "en": "Jewel" + }, + "Code": "1.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21ebc64a-a1b8-45bd-b7f6-143a053f1d31", + "Name": { + "en": "Basketball" + }, + "Code": "4.2.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "21f21658-a69a-491c-a37b-156a8f4ad3fb", + "Name": { + "en": "Wrong, unsuitable" + }, + "Code": "8.3.7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "22300e2c-3d7d-4c36-a2b7-e2bbb247f793", + "Name": { + "en": "Growing coffee" + }, + "Code": "6.2.1.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "225c48dd-9fc2-4467-944f-16a098b4e518", + "Name": { + "en": "Defeat" + }, + "Code": "4.8.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2265a4bd-379d-4a9d-80d5-2318e6c8c683", + "Name": { + "en": "Inside" + }, + "Code": "8.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "22acd714-b11e-462a-bd8e-6ff50843c103", + "Name": { + "en": "Parts of a building" + }, + "Code": "6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "22e8f542-0ab1-4f25-af50-fd0d02917fda", + "Name": { + "en": "Figurative" + }, + "Code": "3.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23190f9e-2db2-4ef9-8c0e-495dbef05571", + "Name": { + "en": "Attract sexually" + }, + "Code": "2.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2330813b-7413-41a8-8eb2-ae138511c953", + "Name": { + "en": "Bright" + }, + "Code": "8.3.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2351f52a-8822-46ad-99c4-7ef526e94a6f", + "Name": { + "en": "Again" + }, + "Code": "8.4.6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23b1a6b4-8d91-425c-b8c2-52d06b1c1d23", + "Name": { + "en": "Break" + }, + "Code": "7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23bc906d-c15a-4368-b0ca-7443d5e37b83", + "Name": { + "en": "Cause" + }, + "Code": "9.6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23fa2115-3979-472c-8939-4db8d54e4c98", + "Name": { + "en": "Opposite" + }, + "Code": "8.3.5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "23fb1571-c04e-4850-b499-f170bc45247f", + "Name": { + "en": "Poor eyesight" + }, + "Code": "2.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "24361be2-49be-4860-bb56-4e46dd1e8b0c", + "Name": { + "en": "Taboo" + }, + "Code": "4.9.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "24398eec-edd1-449a-ad36-d609be24a79e", + "Name": { + "en": "Have, be with" + }, + "Code": "7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "243d8a57-d5ed-4d7f-bd5e-f2605634f0fc", + "Name": { + "en": "Defend" + }, + "Code": "4.8.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2470ad05-636e-4c85-96ab-cd880da58741", + "Name": { + "en": "Religious organization" + }, + "Code": "4.9.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "24d3d7f9-0fda-4759-930b-6b721d3e9115", + "Name": { + "en": "Adverbs" + }, + "Code": "9.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "250a52e4-ede0-427d-8382-46a5742d4f96", + "Name": { + "en": "Hospital" + }, + "Code": "2.5.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "250baab9-5a31-493c-95ea-9fee8baf9fd5", + "Name": { + "en": "Graceful" + }, + "Code": "7.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "251b17bd-5796-43ce-ba10-54140a99a1e0", + "Name": { + "en": "Equivalence" + }, + "Code": "9.6.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "252886c4-9317-4c6b-a69e-13520eb89736", + "Name": { + "en": "Welcome, receive" + }, + "Code": "4.2.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "25763563-5ad6-4b4d-9073-3fc88f6dd44e", + "Name": { + "en": "Nature, character" + }, + "Code": "8.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2594fe01-4d20-4a20-b093-2df70bced18f", + "Name": { + "en": "Stretch" + }, + "Code": "8.3.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "25bf6690-6ed1-42e9-8a4a-3518f9cf382c", + "Name": { + "en": "Theology" + }, + "Code": "4.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2608bcf8-ed20-4501-8510-4ecacf922dd4", + "Name": { + "en": "Wrap" + }, + "Code": "7.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2621e605-3ecc-4f3d-b28c-f8c92b3c4584", + "Name": { + "en": "Texture" + }, + "Code": "8.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2629943b-3a69-4c6b-9956-2aa59ebd03d3", + "Name": { + "en": "History" + }, + "Code": "3.5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "262fc4ae-7735-465b-934b-2125d95de147", + "Name": { + "en": "Jealous" + }, + "Code": "3.4.2.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "265f5645-94cb-485c-8bf9-0a3ab2354f63", + "Name": { + "en": "Coordinate relations" + }, + "Code": "9.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "267b98aa-e17c-4ebb-a752-ed4210701867", + "Name": { + "en": "Notice" + }, + "Code": "3.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26b97047-edb1-44e9-8c7b-463de9cfbe78", + "Name": { + "en": "Sheep" + }, + "Code": "6.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26bc089a-a989-4763-be6c-05d127d1c0e8", + "Name": { + "en": "Deliberately" + }, + "Code": "3.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26d32f3e-ced6-45fc-afd0-7e017fa252c6", + "Name": { + "en": "Riddle" + }, + "Code": "3.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "26fb2e94-b8fe-4216-9057-ca17a71df83b", + "Name": { + "en": "Relaxed" + }, + "Code": "3.4.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "27048124-c204-4585-9997-c51728f085d6", + "Name": { + "en": "Thank" + }, + "Code": "3.5.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "273f4956-f79f-4b1e-b552-466280a65e60", + "Name": { + "en": "Show, let someone see" + }, + "Code": "2.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2810998c-d6cc-47a3-a946-66d0986a2767", + "Name": { + "en": "Move something" + }, + "Code": "7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "284433df-7b37-4e63-a614-78520c483213", + "Name": { + "en": "Animal movement" + }, + "Code": "1.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2854734e-834a-42cb-8812-d9e7028916dc", + "Name": { + "en": "Growing vegetables" + }, + "Code": "6.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2855cda6-a031-46aa-bf3f-718d94374d46", + "Name": { + "en": "Protest" + }, + "Code": "3.2.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "286ee16c-a218-43d5-bbac-ab15f80c3fcf", + "Name": { + "en": "Enough" + }, + "Code": "8.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28a37d39-8347-4254-99bf-8e3c37dbf8a8", + "Name": { + "en": "Set upright" + }, + "Code": "7.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28a68cea-9128-4d5c-8542-8df38c907310", + "Name": { + "en": "Set free" + }, + "Code": "7.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28ba8f5c-5baa-4500-a6f5-be292caa673f", + "Name": { + "en": "Disobey" + }, + "Code": "4.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "28e874fb-b2e7-4afa-a4d7-600306ad2583", + "Name": { + "en": "Exercise" + }, + "Code": "4.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "290f0994-ce8e-4922-975f-fa091f566823", + "Name": { + "en": "Relief" + }, + "Code": "4.4.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2933a9c1-aa62-46fb-a03c-68aed7fae9b7", + "Name": { + "en": "Burn" + }, + "Code": "5.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "295dc021-5b50-47b3-8340-1631c6d6fadc", + "Name": { + "en": "Comfortable" + }, + "Code": "2.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "29a8ebbe-ebc4-4295-b6af-84331d019361", + "Name": { + "en": "Word" + }, + "Code": "3.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "29d131d2-5e52-49e3-83b1-c872d331cf03", + "Name": { + "en": "Useless" + }, + "Code": "6.1.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2a2af155-9db9-41c5-860a-fe0a3a09d6de", + "Name": { + "en": "Think about" + }, + "Code": "3.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2a62f8e4-7da3-4f37-bf44-e24033c99c00", + "Name": { + "en": "Angry" + }, + "Code": "3.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2aabd548-5ee2-4962-8f10-84d1b0427c41", + "Name": { + "en": "Endure" + }, + "Code": "4.4.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b27b8ca-188e-44ad-aa86-ffa1f99106e3", + "Name": { + "en": "Add to something" + }, + "Code": "7.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b2bedd5-3f9c-4c18-a256-aa65ee19f15c", + "Name": { + "en": "Compatible" + }, + "Code": "8.3.7.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b6f9af7-04ee-4030-a2cd-87d55959caa8", + "Name": { + "en": "Afraid" + }, + "Code": "3.4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b846476-00cf-4d82-97a1-26e1eda880ca", + "Name": { + "en": "Immature in behavior" + }, + "Code": "4.3.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2b893d04-3450-4862-b046-7df6f87272f6", + "Name": { + "en": "Finance" + }, + "Code": "6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c04fa05-eebf-4331-b392-23f795c32382", + "Name": { + "en": "One" + }, + "Code": "8.1.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c143278-3ea0-49c6-9e50-e0bf7c8cf4e2", + "Name": { + "en": "Indefinite location" + }, + "Code": "8.5.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c322d8b-d762-43ce-b905-aab41f9c7bbb", + "Name": { + "en": "Bat" + }, + "Code": "1.6.1.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c401e7f-6ce9-470f-b6b6-fadf7a798536", + "Name": { + "en": "Rest" + }, + "Code": "2.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c42f822-2079-440c-b3b7-7725b6a8db8b", + "Name": { + "en": "Stop something" + }, + "Code": "8.4.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2c576c40-17ae-45a7-9ec8-6c16e02ab9c3", + "Name": { + "en": "Clause conjunctions" + }, + "Code": "9.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2cc624fa-76cb-46ab-87c8-c13c6adb1c72", + "Name": { + "en": "Go" + }, + "Code": "7.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2ccab97a-fb98-4054-a29b-e5ceac8ca1b4", + "Name": { + "en": "Worship" + }, + "Code": "4.9.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2cccfd92-de45-42c2-83f7-1e0ef7dfddc1", + "Name": { + "en": "Unique" + }, + "Code": "8.3.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2cd48908-8f12-4e0f-a22e-87237618ce9f", + "Name": { + "en": "Vindicate" + }, + "Code": "4.7.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d0b3058-d8bb-4110-a54a-e507b0d3a0e4", + "Name": { + "en": "Heart" + }, + "Code": "2.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d563d27-8ac3-41c9-b326-856c9e1f6401", + "Name": { + "en": "Concave" + }, + "Code": "8.3.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d5d634e-75b5-4921-922e-573a809a49f8", + "Name": { + "en": "Make" + }, + "Code": "9.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d894eca-8f6c-4b63-b265-0914a65d9be9", + "Name": { + "en": "Alcoholic beverage" + }, + "Code": "5.2.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2d92e248-1512-4e89-b886-425814c6dd32", + "Name": { + "en": "Chess" + }, + "Code": "4.2.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2daede19-ce5f-46b6-ae68-32d6092441f1", + "Name": { + "en": "Energetic" + }, + "Code": "2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2dca9338-85cb-4f58-b40d-d2d759e8edd6", + "Name": { + "en": "Location" + }, + "Code": "8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e09535f-f61f-4ff5-8d56-23c2916cbb7f", + "Name": { + "en": "Rough" + }, + "Code": "8.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e2a17ba-9d81-4a3d-8af5-96c8f0e39e7e", + "Name": { + "en": "Store wealth" + }, + "Code": "6.8.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e30f02d-d1e6-489c-a1fb-8b9fb6ecd819", + "Name": { + "en": "Disappointed" + }, + "Code": "3.4.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e5a80f9-35ae-4850-9627-be530832a781", + "Name": { + "en": "Honorifics " + }, + "Code": "9.6.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e5acfd2-3009-4496-9cc2-58d2a0088994", + "Name": { + "en": "Hair" + }, + "Code": "2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e95bd1e-82f0-461d-8ca6-b5f1ce1fb180", + "Name": { + "en": "Arrange a marriage" + }, + "Code": "2.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e97b83d-1152-473f-9cbe-347f0655041a", + "Name": { + "en": "Ear" + }, + "Code": "2.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2e9f06f3-c986-43da-a035-e3cc9aef13d4", + "Name": { + "en": "Job satisfaction" + }, + "Code": "6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2eba12c6-7817-4dfd-9e7c-94c8b8b389ef", + "Name": { + "en": "Prohibited food" + }, + "Code": "5.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2f151c35-72e1-4665-bc05-6fc70a3ecff2", + "Name": { + "en": "Ugly" + }, + "Code": "2.3.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2f28f1ab-476e-4317-8787-124d95d6b9d2", + "Name": { + "en": "Concession" + }, + "Code": "9.6.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2f98291a-47a7-4b7b-9256-2c0249105be1", + "Name": { + "en": "Various" + }, + "Code": "8.3.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "2fc69f71-e9f1-45f9-b88e-bdaf97457fc3", + "Name": { + "en": "Quick" + }, + "Code": "8.4.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3005971d-de4d-401f-8400-b25de5e052ad", + "Name": { + "en": "Middle" + }, + "Code": "8.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3014de03-88e5-4330-9682-51963a41ca50", + "Name": { + "en": "Shark, ray" + }, + "Code": "1.6.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3022c764-ba88-41d0-94db-393312214f4e", + "Name": { + "en": "Possession, property" + }, + "Code": "6.8.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "303539ba-7253-4590-b8c4-7751caa52c65", + "Name": { + "en": "Power, force" + }, + "Code": "6.1.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30b3faa8-747e-465f-833a-a9957a259be2", + "Name": { + "en": "Separate, scatter" + }, + "Code": "7.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30e6b42c-6bbf-4659-99e7-aa4b8e68c9ce", + "Name": { + "en": "Good, moral" + }, + "Code": "4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30ea3057-753d-4c4c-9b1f-ed30e569feea", + "Name": { + "en": "Court of law" + }, + "Code": "4.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "30fff450-1aa5-4993-9c14-c8019a5f072e", + "Name": { + "en": "But" + }, + "Code": "9.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31171aa9-e243-4b46-abd8-f3e52843cdfc", + "Name": { + "en": "Marsupial" + }, + "Code": "1.6.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "312ce7a7-8c7c-416d-bf93-73376f1f16d8", + "Name": { + "en": "Glory" + }, + "Code": "8.3.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "313a65bf-450f-48da-8903-a43247f1a5f8", + "Name": { + "en": "Make hole, opening" + }, + "Code": "7.8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "313ca832-ce91-44c9-bb35-bd130c39d924", + "Name": { + "en": "Sharp" + }, + "Code": "8.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31426c31-9439-406c-9867-bc98c6ca0565", + "Name": { + "en": "Growing sugarcane" + }, + "Code": "6.2.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "314c8fea-4bdb-4bc8-ab67-a26a9c5abbd4", + "Name": { + "en": "Stiff, flexible" + }, + "Code": "8.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3160b7ad-e4e8-4a46-8e2e-d5e601969547", + "Name": { + "en": "Story" + }, + "Code": "3.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "316f27aa-ed6d-4bc3-9d14-840946a6f4e9", + "Name": { + "en": "General adjectives" + }, + "Code": "9.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31777669-e37b-4b77-9cce-0d8c33f6ebb9", + "Name": { + "en": "Swamp" + }, + "Code": "1.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3180b6aa-3ad9-4bd3-96f7-ae72264406fb", + "Name": { + "en": "Return something" + }, + "Code": "7.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31ccb9e3-d434-4430-ac84-486cc5a1c53d", + "Name": { + "en": "Difficult, impossible" + }, + "Code": "6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31dc3d15-c6f8-4405-a33b-8f3a52f8671a", + "Name": { + "en": "Beverage" + }, + "Code": "5.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31debfe3-91da-4588-b433-21b0e14a101b", + "Name": { + "en": "Road" + }, + "Code": "6.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "31e0fde8-b3ab-47ae-b791-54309e6ed0bd", + "Name": { + "en": "Modern" + }, + "Code": "8.4.6.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32125c5f-d69a-442f-ba66-6277ec0a3b15", + "Name": { + "en": "Food from plants" + }, + "Code": "5.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "321d0a74-705f-40bf-8d24-809f65bee895", + "Name": { + "en": "Aspect--stative verbs" + }, + "Code": "9.4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32bebe7e-bdcc-4e40-8f0a-894cd6b26f25", + "Name": { + "en": "Healthy" + }, + "Code": "2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32bf055a-d666-4d6e-a3c6-6c984e2c9868", + "Name": { + "en": "Telephone" + }, + "Code": "3.5.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32cf3835-bced-4ea1-9c7a-f7ff653e59fe", + "Name": { + "en": "Grave" + }, + "Code": "2.6.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32d5b3de-0500-4ad6-b94e-20b8001d0a91", + "Name": { + "en": "Move noisily" + }, + "Code": "7.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32f868e0-54a7-4d04-8689-ac10e13396e5", + "Name": { + "en": "Cut grass" + }, + "Code": "6.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "32fc19fd-a04e-4b69-9442-f7d57348ec55", + "Name": { + "en": "Cattle" + }, + "Code": "6.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "33037a4d-3454-4c59-9a61-c5fb747f107a", + "Name": { + "en": "Working with bricks" + }, + "Code": "6.6.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3389561c-f264-48b9-b94c-86c33fc3c423", + "Name": { + "en": "Average" + }, + "Code": "8.1.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3393b3b2-b324-408d-9c59-057a0de9c3bd", + "Name": { + "en": "Try, attempt" + }, + "Code": "6.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "339ee46b-d69a-4f2e-8fba-d1b2adff763b", + "Name": { + "en": "Generous" + }, + "Code": "6.8.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "339f54a5-125b-435f-bf37-cfc2a2bd26d3", + "Name": { + "en": "Facial expression" + }, + "Code": "3.5.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3420b36a-a033-4af9-a8c4-53f8221ee56e", + "Name": { + "en": "Away from" + }, + "Code": "8.5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3445e61b-61a3-4ede-93f5-402ebe9ca51c", + "Name": { + "en": "Warn" + }, + "Code": "3.3.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "345e019f-87d2-415d-ba37-9fb85460f7e1", + "Name": { + "en": "Lumbering" + }, + "Code": "6.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "349937e3-a2fd-41f8-b7c4-bd6fa106add4", + "Name": { + "en": "Flood" + }, + "Code": "1.1.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "349f0278-7998-422a-9c3b-6053989cbb20", + "Name": { + "en": "Grammar" + }, + "Code": "9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34a02a17-23fb-4260-9f97-c125842a3594", + "Name": { + "en": "Birth ceremony" + }, + "Code": "2.6.3.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34c3edad-a158-44e7-989b-5b74401e6945", + "Name": { + "en": "Gas" + }, + "Code": "1.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34c9408c-c3f7-49db-8bce-de7fa7da03d7", + "Name": { + "en": "Catch, capture" + }, + "Code": "7.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34dd26b6-d081-42f5-8be9-c5fe7a7253b2", + "Name": { + "en": "Available" + }, + "Code": "6.1.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34e92ff1-32aa-49c7-b4da-d161bedc5adc", + "Name": { + "en": "Working with minerals" + }, + "Code": "6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "34fe8676-7bda-493d-a012-bc5748e87823", + "Name": { + "en": "Pointed" + }, + "Code": "8.3.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "350667ee-592b-47af-adca-14e820ec58cf", + "Name": { + "en": "No, not" + }, + "Code": "9.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35624f3a-2029-43b3-b70a-83e63ac9052f", + "Name": { + "en": "Affixes" + }, + "Code": "9.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35a9da32-53ee-44fa-9c65-5a15f88ad283", + "Name": { + "en": "Names of streets" + }, + "Code": "9.7.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35e61ec4-0542-4583-b5da-0aa5e31a35aa", + "Name": { + "en": "Birth" + }, + "Code": "2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "35faefb3-7498-4735-9b05-e7035dd368fc", + "Name": { + "en": "Crop failure" + }, + "Code": "6.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36123ffe-14d8-4198-b32c-eabd0b23e0dd", + "Name": { + "en": "Bargain" + }, + "Code": "6.8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3615c3d1-fd5b-40c5-80ad-80bfd6451d56", + "Name": { + "en": "Plunder" + }, + "Code": "4.8.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36176d59-171b-4a0a-a0f7-a8f9857536a1", + "Name": { + "en": "Move straight without turning" + }, + "Code": "7.2.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "362a2bdd-985e-4bc0-a41c-358bd1babb12", + "Name": { + "en": "Spy" + }, + "Code": "4.8.3.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36934fab-c0ed-4f25-a387-e1cca26b2401", + "Name": { + "en": "Few, little" + }, + "Code": "8.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36a2c83f-f7aa-41b0-9b17-f801f3720e4f", + "Name": { + "en": "Growing grain" + }, + "Code": "6.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36ad58e3-ade7-49b9-9922-de0b5c3f13c3", + "Name": { + "en": "Cooking ingredients" + }, + "Code": "5.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36b3cfb6-0fea-4628-aa8d-f9b7af48f436", + "Name": { + "en": "Lizard" + }, + "Code": "1.6.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "36e8f1df-1798-4ae6-904d-600ca6eb4145", + "Name": { + "en": "Escape" + }, + "Code": "7.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3710e019-46c9-44db-a0aa-9054d3126161", + "Name": { + "en": "Narcotic" + }, + "Code": "5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3759bdda-2b52-43dc-8995-8379e3129dce", + "Name": { + "en": "Relations involving correspondences" + }, + "Code": "9.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3785d9f3-0922-4d79-a0fa-b97c4a26fe17", + "Name": { + "en": "Spatial relations" + }, + "Code": "8.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "37a08f65-5a79-4e17-8e19-0975d6531d64", + "Name": { + "en": "Serious" + }, + "Code": "4.2.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "37e6c8b5-f63c-4f5b-8c16-eccd727d6618", + "Name": { + "en": "Fight against something bad" + }, + "Code": "4.8.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "37f6a1d9-985d-465e-b62d-37c1f9bf855b", + "Name": { + "en": "Growing maize" + }, + "Code": "6.2.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "380b0d15-77a1-49ba-ad83-a508e7ffb83d", + "Name": { + "en": "Storm" + }, + "Code": "1.1.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38473463-4b92-4681-8fd0-0aca0342e88a", + "Name": { + "en": "Small animals" + }, + "Code": "1.6.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3885231e-8b18-4da3-af76-c75e8b731ed8", + "Name": { + "en": "Pick up" + }, + "Code": "7.3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38ab2681-fcc7-4a75-bb0b-29c5cd2e3a8f", + "Name": { + "en": "Send someone" + }, + "Code": "7.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38bbb33a-90bf-4a2c-a0e5-4bde7e134bd9", + "Name": { + "en": "Sense, perceive" + }, + "Code": "2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38bdff04-c7a9-41fa-a6a2-7aa214de308c", + "Name": { + "en": "Impartial" + }, + "Code": "4.7.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "38d1a6fe-0811-4eb0-a1d8-f69b6ad978e0", + "Name": { + "en": "Bless" + }, + "Code": "4.9.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "390ad7fc-8360-4eae-8736-3aedc15ae659", + "Name": { + "en": "Map" + }, + "Code": "7.2.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "39611e8d-cc67-4c84-977c-094c5cbe9dbc", + "Name": { + "en": "Lonely" + }, + "Code": "3.4.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "396a2a1b-832f-4180-b26a-c606550541d7", + "Name": { + "en": "Blunt" + }, + "Code": "8.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "398ffed0-bfa7-452c-8521-7d37b3082dcf", + "Name": { + "en": "Work hard" + }, + "Code": "6.1.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "39dcb6b9-94df-45be-a128-c14c7a9dcdbd", + "Name": { + "en": "Stomach illness" + }, + "Code": "2.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a0dc521-f028-4c17-945c-b121e2d3dc0b", + "Name": { + "en": "Yesterday, today, tomorrow" + }, + "Code": "8.4.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a28ab73-2847-44a4-97ed-7129269f1366", + "Name": { + "en": "Kneel" + }, + "Code": "7.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a2c0773-6b3e-4f8b-909d-c8f84d66d4f4", + "Name": { + "en": "General words" + }, + "Code": "9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a545732-145a-4034-8f72-e08d752cb4d4", + "Name": { + "en": "With, be with" + }, + "Code": "9.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3a568f98-8446-4327-876b-7c5ec78d9084", + "Name": { + "en": "Floor" + }, + "Code": "6.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3aab9c42-b696-4440-8e28-8380f5d25199", + "Name": { + "en": "Extreme belief" + }, + "Code": "3.2.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3acf5e20-b626-4f0a-a582-d386a0e30792", + "Name": { + "en": "Sheath" + }, + "Code": "6.7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ae3a1be-cfb5-4953-b65b-68f0c51b1d40", + "Name": { + "en": "Sculpture" + }, + "Code": "6.6.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3aec74e5-6cfd-46d2-b26f-503fad761583", + "Name": { + "en": "Parts of tools" + }, + "Code": "6.7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3b4b947a-f223-4c87-8839-9f6237cda9f6", + "Name": { + "en": "Handle something" + }, + "Code": "7.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3b69f6b6-d64a-43aa-99dc-05e34f81e07f", + "Name": { + "en": "Hire, rent" + }, + "Code": "6.8.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3bc961d1-9f4f-4f1b-ada7-b1e9a2928ea4", + "Name": { + "en": "Tell the truth" + }, + "Code": "3.5.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3be7e3fe-89d4-471a-92bd-8c70fcb146bb", + "Name": { + "en": "Deaf" + }, + "Code": "2.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3c9fe647-2647-4f43-8bac-7facc054f7ff", + "Name": { + "en": "Move back and forth" + }, + "Code": "7.2.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3cb4c07c-8760-4ff9-8d45-1c0bed80ffb3", + "Name": { + "en": "Pregnancy" + }, + "Code": "2.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ccc3a21-07c8-4983-a044-e3c74b538135", + "Name": { + "en": "Short, not long" + }, + "Code": "8.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3d10e03a-7902-458d-9c45-938da103d639", + "Name": { + "en": "Hollow" + }, + "Code": "8.3.1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3d5d93ce-00e0-46ff-b220-553c12c38381", + "Name": { + "en": "Female organs" + }, + "Code": "2.1.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3dba39bc-48f2-4bcb-9357-c8fbed6922ca", + "Name": { + "en": "Promise" + }, + "Code": "3.5.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3dd684e6-75d9-41f4-aaa3-fb0cb3c7d400", + "Name": { + "en": "Respond to someone in trouble" + }, + "Code": "4.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3df7d174-83d1-4e17-890e-1272e171ca41", + "Name": { + "en": "Metal" + }, + "Code": "1.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3e546c11-bcb6-4024-b2f3-c15be40e257f", + "Name": { + "en": "Lack self-control" + }, + "Code": "4.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ea4c495-b837-4310-8741-38d89fa63e0b", + "Name": { + "en": "Epistemic moods" + }, + "Code": "9.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3ea52505-aa6c-4f28-b475-f15ac1820ec1", + "Name": { + "en": "Demon possession" + }, + "Code": "4.9.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3edb307f-be46-40b6-a6a4-ae075b40258c", + "Name": { + "en": "Since, from" + }, + "Code": "8.4.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f069313-4827-4fc5-b73b-b9fbd42ca38c", + "Name": { + "en": "Reconcile" + }, + "Code": "4.8.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f37bb6f-cd32-4430-aa35-700acabbee15", + "Name": { + "en": "Start something" + }, + "Code": "8.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f4c559f-ab4f-411f-a23b-d2396c977005", + "Name": { + "en": "Visible" + }, + "Code": "2.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f535689-944a-4e9c-8f64-ec6395b7c8d7", + "Name": { + "en": "Slip, slide" + }, + "Code": "7.2.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3f6dc9af-0c50-44d5-99f0-4aa67c668186", + "Name": { + "en": "Working with oil and gas" + }, + "Code": "6.6.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fae9066-eb66-444e-bd41-818b9f7b3bae", + "Name": { + "en": "Put" + }, + "Code": "7.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fbe3ea6-3ad3-430f-ab67-2d9c9f852c61", + "Name": { + "en": "Now" + }, + "Code": "8.4.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fd34185-19a1-44bd-8555-bc76e2847bee", + "Name": { + "en": "Instinct" + }, + "Code": "3.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "3fdba5e5-eb24-4b2f-a6fc-d1ed7397c39c", + "Name": { + "en": "School" + }, + "Code": "3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "400d318e-a9ef-40b4-92be-0d7e96e51d8a", + "Name": { + "en": "Source (of movement)" + }, + "Code": "9.5.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "401bbbe4-a33a-4a1e-b26a-18a756e002c4", + "Name": { + "en": "Cowardice" + }, + "Code": "4.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40248a12-1809-4561-b786-e4e274c14d82", + "Name": { + "en": "Primate" + }, + "Code": "1.6.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40516af2-d413-418e-8b68-8443847ee169", + "Name": { + "en": "Parts of clothing" + }, + "Code": "5.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40590157-9412-4558-b0f7-311867b649cc", + "Name": { + "en": "Turn something" + }, + "Code": "7.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4068488f-59e9-47d1-8884-a1d6dcc10c36", + "Name": { + "en": "Load, pile" + }, + "Code": "7.5.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4093bfe8-54b3-4ffc-bfe3-3999279840b5", + "Name": { + "en": "Show, explain" + }, + "Code": "3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4098899a-0ad0-4d71-9f9f-b99d5ba2e0d5", + "Name": { + "en": "Food" + }, + "Code": "5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "40ff5cee-31d8-4c89-a212-877347212a0e", + "Name": { + "en": "Satiated, full" + }, + "Code": "5.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "410a3d81-290f-416b-8012-3aa16eaa9e55", + "Name": { + "en": "Women\u0027s clothing" + }, + "Code": "5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4153416a-784d-4f7c-a664-2640f7979a14", + "Name": { + "en": "River" + }, + "Code": "1.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "41837400-bdc5-4cbc-a1dc-d793f713f883", + "Name": { + "en": "Hesitation fillers" + }, + "Code": "9.6.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "41b80f5d-0298-4d3c-b1a3-6d5e6c3985b1", + "Name": { + "en": "Lust" + }, + "Code": "3.3.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "41cac849-613d-4be4-a3bc-389412b7f653", + "Name": { + "en": "Repair" + }, + "Code": "7.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "42133f78-9860-4bb7-8083-5559083f0714", + "Name": { + "en": "Gambling" + }, + "Code": "4.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4223d3ba-5560-4c30-b013-4e31fee36329", + "Name": { + "en": "Names of buildings" + }, + "Code": "9.7.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "424ced39-d801-419a-86fe-265942a9b74b", + "Name": { + "en": "Take care of something" + }, + "Code": "6.1.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4260e110-7b04-4d40-9391-486a57aa3031", + "Name": { + "en": "Mature in behavior" + }, + "Code": "4.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4275df2e-d4f6-461a-9279-39e0712dc082", + "Name": { + "en": "Appearance" + }, + "Code": "2.3.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "42b21a6e-e2f3-4468-9e92-49ee4de6909a", + "Name": { + "en": "Together" + }, + "Code": "9.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "42be1634-72ca-4a20-80a1-ba726e5cd1d2", + "Name": { + "en": "Cut" + }, + "Code": "7.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "430ce279-1464-4d55-8483-5525a3c3094d", + "Name": { + "en": "Serve" + }, + "Code": "4.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "43282de6-51e1-4e52-99fc-d54e2043fb6c", + "Name": { + "en": "Money" + }, + "Code": "6.8.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "434ec34f-e7ca-44f8-9252-dff5b9b2b62f", + "Name": { + "en": "Better" + }, + "Code": "8.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "43cb3488-711b-4d9d-9d0e-03d0c1f6eb8b", + "Name": { + "en": "Ashamed" + }, + "Code": "3.4.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4405e74c-f64c-4609-8f7b-99ba563d659a", + "Name": { + "en": "Adopt" + }, + "Code": "4.1.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "440608df-3c98-4dc8-9fd3-fad08afe7aef", + "Name": { + "en": "Limit" + }, + "Code": "7.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4415aff1-4d74-463e-a25d-9832c7477329", + "Name": { + "en": "Instrument" + }, + "Code": "9.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "444407f2-0c75-4bb9-a84c-cbd52d0fa9c9", + "Name": { + "en": "Stage of life" + }, + "Code": "2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4445cccd-e9b9-4f25-9e8c-2ef58408297d", + "Name": { + "en": "Wear clothing" + }, + "Code": "5.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "445f3084-f250-40fa-87ba-ebd233f9018f", + "Name": { + "en": "Anteater, aardvark" + }, + "Code": "1.6.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "447f258b-2160-42c7-9431-ffeeb86edcb8", + "Name": { + "en": "Fertile, infertile" + }, + "Code": "2.6.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "44bf22fd-3725-4c49-bd3c-434402c33493", + "Name": { + "en": "Furniture" + }, + "Code": "5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "44dc42e4-e9c7-4aa9-ac9b-1008385244b1", + "Name": { + "en": "Father, mother" + }, + "Code": "4.1.9.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4526b41d-6f3c-494f-93a2-ea3e9705269d", + "Name": { + "en": "Delay" + }, + "Code": "8.4.5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "457231c8-4eb6-4460-aa45-3e9f2c4e8975", + "Name": { + "en": "Once" + }, + "Code": "8.4.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45993c48-3893-4d9e-96a3-b6b1ad160538", + "Name": { + "en": "Poor" + }, + "Code": "6.8.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45b7dcce-21d5-4738-a64d-e8b0be8a1824", + "Name": { + "en": "Symmetrical" + }, + "Code": "8.3.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45b9bf61-3138-4206-9478-b4d3f082358b", + "Name": { + "en": "Speak in unison" + }, + "Code": "3.5.1.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45d867c7-8496-4c92-bb41-b7db5db47717", + "Name": { + "en": "Fat person" + }, + "Code": "8.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45e90d41-a462-4671-968f-92166378b3f0", + "Name": { + "en": "Remind" + }, + "Code": "3.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "45f7b003-ade3-4efc-8dee-259dcbf80a4a", + "Name": { + "en": "Request" + }, + "Code": "3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "462f5606-5bd8-4543-aa35-26b0cffd7163", + "Name": { + "en": "Food from roots" + }, + "Code": "5.2.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4651aef1-e18f-481e-9c3e-d9dfff4a6b51", + "Name": { + "en": "Alone" + }, + "Code": "4.1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "467dd680-ac64-4dc4-8a17-1cfe297d3392", + "Name": { + "en": "Simple, complicated" + }, + "Code": "7.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "469b0a30-3c26-4cfd-b948-7bb952eeff41", + "Name": { + "en": "Know someone" + }, + "Code": "4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46ad1505-9049-41d8-831b-768f46f12500", + "Name": { + "en": "Clean, dirty" + }, + "Code": "5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46b13a77-fe12-49fb-afbe-826480ec97f4", + "Name": { + "en": "Pleased with" + }, + "Code": "3.4.1.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46dbda42-fe21-4e52-8eeb-4263ded7031b", + "Name": { + "en": "Months of the year" + }, + "Code": "8.4.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "474aa982-8350-47e2-a983-e1e2bce9d928", + "Name": { + "en": "Feel good" + }, + "Code": "3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "47ed6c39-b728-4ae7-be7c-c45c714c3153", + "Name": { + "en": "Thresh" + }, + "Code": "6.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "47f170eb-5f1d-49a5-85bb-240047f392c0", + "Name": { + "en": "Soft, flimsy" + }, + "Code": "8.3.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "47feee3e-80e1-469a-911c-0c550b37a2f8", + "Name": { + "en": "Necessary " + }, + "Code": "9.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "48380d5d-bd54-48a9-92bc-7c8a93de0567", + "Name": { + "en": "Lend" + }, + "Code": "6.8.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "48ac206f-2706-4500-bb63-2e499b790259", + "Name": { + "en": "Intelligent" + }, + "Code": "3.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "48d3de9f-3619-4785-b50b-6921ba7eecd6", + "Name": { + "en": "Result" + }, + "Code": "9.6.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49471924-2458-4cb0-9430-f38cfc2fb63b", + "Name": { + "en": "Working with bone" + }, + "Code": "6.6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49aa89f2-2022-4213-845e-dbbb4b53476c", + "Name": { + "en": "Last" + }, + "Code": "8.4.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49bc0d75-4f07-44b4-a50f-bc9a557dc15e", + "Name": { + "en": "Related by marriage" + }, + "Code": "4.1.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49c525b3-2163-48e1-b3bd-57e5cdc486a4", + "Name": { + "en": "Flesh" + }, + "Code": "2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49c878dd-277f-4bc9-b8ad-9ba192709108", + "Name": { + "en": "Cat" + }, + "Code": "6.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49cd2c20-098a-46d9-9e47-6bf109308793", + "Name": { + "en": "Emphasize" + }, + "Code": "3.5.1.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49ee84ff-eb2b-4ba3-b193-3018d34599c2", + "Name": { + "en": "Borrow" + }, + "Code": "6.8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "49f45f97-95f8-4a53-8952-f90147af2ba9", + "Name": { + "en": "Except" + }, + "Code": "9.6.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a388000-d5c6-4127-91cd-f4e0c9fac6f1", + "Name": { + "en": "Information" + }, + "Code": "3.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a44ac87-5ad5-44de-8170-9fd88b056010", + "Name": { + "en": "Building equipment and maintenance" + }, + "Code": "6.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a5c8fdb-c8a0-49d2-a0d6-342428682d65", + "Name": { + "en": "Birth defect" + }, + "Code": "2.5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4a8c6c2e-7a8f-4dd6-97d3-20a35d7d10e9", + "Name": { + "en": "Honor" + }, + "Code": "4.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4acc430b-9c98-4a49-a8b4-15edc0f6d19b", + "Name": { + "en": "Tidy" + }, + "Code": "4.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4aedd6d3-8f4b-4986-8d51-b0ace0137bf0", + "Name": { + "en": "Happy for" + }, + "Code": "3.4.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4b3a9b5a-df7d-4ec2-9576-2c07fe396021", + "Name": { + "en": "Dance" + }, + "Code": "4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4b669bed-ba46-41cc-bcba-c2ef8e129c85", + "Name": { + "en": "Request forgiveness" + }, + "Code": "4.8.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4bedae6a-1df4-40e5-8a2f-ab0a1f41997e", + "Name": { + "en": "Plant product" + }, + "Code": "6.2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4bf411b7-2b5b-4673-b116-0e6c31fbd08a", + "Name": { + "en": "Light" + }, + "Code": "8.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4bfe53d2-fb85-4397-98a8-97d59b907064", + "Name": { + "en": "Boat" + }, + "Code": "7.2.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c31ac6a-3197-4762-9937-2fdea90784b7", + "Name": { + "en": "Sudden" + }, + "Code": "8.4.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c823e93-3966-461f-bd64-3a9303966338", + "Name": { + "en": "Problem" + }, + "Code": "4.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4c862416-f7c4-4a3c-82ac-fe81e1efb879", + "Name": { + "en": "Internal organs" + }, + "Code": "2.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4cb8b433-4efa-4698-8ebd-0f00f8fc3f66", + "Name": { + "en": "Devout" + }, + "Code": "4.9.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4ce22ed0-6fe3-47ae-83e4-e7c7310cb1d4", + "Name": { + "en": "Hinduism" + }, + "Code": "4.9.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d19f09f-035b-477e-862c-a4157acdfe81", + "Name": { + "en": "Water quality" + }, + "Code": "1.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d1ac5e6-dfe3-4643-b6e5-21649a01cce9", + "Name": { + "en": "Railroad" + }, + "Code": "7.2.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d2a247e-4925-4750-8c39-e2d78665d33c", + "Name": { + "en": "Inner part" + }, + "Code": "8.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d2a67fb-91c8-4436-87f4-f4eab6cb0828", + "Name": { + "en": "Skin disease" + }, + "Code": "2.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d3412e3-85a0-4f81-9dad-efd6101b4945", + "Name": { + "en": "Bag" + }, + "Code": "6.7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4d61f524-7213-4c2c-8c14-f8eff3aed813", + "Name": { + "en": "Tight" + }, + "Code": "8.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e0992cd-c04c-4b55-beab-6b0a3c98a994", + "Name": { + "en": "Hunting birds" + }, + "Code": "6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e23b037-0547-4650-89c3-2b259b637fb6", + "Name": { + "en": "Month" + }, + "Code": "8.4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e2adaed-145e-45fc-8448-81c0bd47c414", + "Name": { + "en": "Never" + }, + "Code": "8.4.6.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e791773-94c8-4667-93f8-92dc0100ddfe", + "Name": { + "en": "Holiday" + }, + "Code": "4.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4e7a6dfe-3654-4ca1-874d-02424581b774", + "Name": { + "en": "Deep, shallow" + }, + "Code": "8.2.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4eb41e40-4115-435a-934a-5d91022a29dc", + "Name": { + "en": "Owe" + }, + "Code": "6.8.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f19ab95-428a-4a0b-a069-ca8be6b72b08", + "Name": { + "en": "Visit" + }, + "Code": "4.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f22ebdb-01db-432a-9d7a-41cd44010265", + "Name": { + "en": "Accumulate wealth" + }, + "Code": "6.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f485a60-e3ba-42e6-9d59-185305c5d1f2", + "Name": { + "en": "Direction" + }, + "Code": "8.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f516445-e044-4d9c-ac9b-a3178f72b405", + "Name": { + "en": "Movie" + }, + "Code": "3.5.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f587b2b-60a6-4ea0-9fe5-89e5a502d380", + "Name": { + "en": "Means" + }, + "Code": "9.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4f80a620-30db-4529-94e8-f0cd9d0b0e96", + "Name": { + "en": "Castrate animal" + }, + "Code": "6.3.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4fb79b12-3bd1-46ed-8698-7d27052a5dc7", + "Name": { + "en": "Plain, plateau" + }, + "Code": "1.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4fc734f2-a91d-4693-8caf-e7fe51a2df8a", + "Name": { + "en": "Chair" + }, + "Code": "5.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "4fdf3cf1-0808-4f11-acdd-9db71550baab", + "Name": { + "en": "Without purpose " + }, + "Code": "9.6.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50903b35-5606-4727-8474-01c06bf588da", + "Name": { + "en": "Wall" + }, + "Code": "6.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50ab3705-a81e-4fcc-b3ae-95c075966f69", + "Name": { + "en": "Movement of water" + }, + "Code": "1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50ac28ab-7385-408f-b5eb-3e27b191fcf4", + "Name": { + "en": "Publish" + }, + "Code": "3.5.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50c1a392-2928-407a-8306-3c70141e375e", + "Name": { + "en": "Future" + }, + "Code": "8.4.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50db27b5-89eb-4ffb-af82-566f51c8ec0b", + "Name": { + "en": "Life" + }, + "Code": "2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50dfffe4-dfe8-445f-bdde-4cc8d83ebd6b", + "Name": { + "en": "Cooperate with" + }, + "Code": "4.3.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50e28fa7-f6c3-45bc-871d-12ef771d532c", + "Name": { + "en": "Care for" + }, + "Code": "4.3.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "50eb32a2-6dbb-4b7c-b370-aacdcfeaf5fc", + "Name": { + "en": "Enjoy doing something" + }, + "Code": "3.4.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "513771eb-8467-468a-8bc8-e52567e66df9", + "Name": { + "en": "Working relationship" + }, + "Code": "4.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "514974a2-c2fd-4b25-a24d-2ff52fa3d798", + "Name": { + "en": "Extinguish a fire" + }, + "Code": "5.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "515f9b40-0637-4ce3-b343-2d99de3f723b", + "Name": { + "en": "Plumber" + }, + "Code": "6.6.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "51c2e2e4-438c-414b-bd15-773b664dd289", + "Name": { + "en": "Mercy" + }, + "Code": "4.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "51d4e258-430c-4032-94e3-ee53095e7045", + "Name": { + "en": "Answer in a test" + }, + "Code": "3.6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "51d9d243-35cc-4a1e-bcdd-f2749975f5fd", + "Name": { + "en": "Real" + }, + "Code": "3.5.1.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5238fe9c-4bbe-444c-b5f6-18f946b3d6aa", + "Name": { + "en": "Fever" + }, + "Code": "2.5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5261497b-6beb-4db1-9de2-10b5f6f8ec69", + "Name": { + "en": "Beginning" + }, + "Code": "8.4.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "529140d1-6e8e-44fe-99f0-95289e933607", + "Name": { + "en": "Related by birth" + }, + "Code": "4.1.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "52b04e15-7062-4fb2-9eaa-4fe8726f302a", + "Name": { + "en": "Greet" + }, + "Code": "3.5.1.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "52f9a8f0-d97d-4aa1-8c2c-d907d7cb83fc", + "Name": { + "en": "In groups" + }, + "Code": "9.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "530ff7e0-e3cb-4dc3-9c1c-3034969e1ce8", + "Name": { + "en": "Revenge" + }, + "Code": "4.8.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "531af868-b5fb-41c2-ba50-764458f9102f", + "Name": { + "en": "Bush, shrub" + }, + "Code": "1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "532245e7-8f46-4394-9045-240475ee62e8", + "Name": { + "en": "Indefinite time" + }, + "Code": "8.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "536a2d3e-2303-43bc-bf53-379131eb5730", + "Name": { + "en": "Colors of the spectrum" + }, + "Code": "8.3.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "538a4c20-01d7-40b9-b462-ae279ff3dc27", + "Name": { + "en": "Gray" + }, + "Code": "8.3.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "53ba3b61-4f4e-4749-8a7f-0d2b327a113d", + "Name": { + "en": "Plan" + }, + "Code": "6.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "53d34f16-2f94-4afa-9530-7ac75e05b8d4", + "Name": { + "en": "Flatter" + }, + "Code": "3.5.1.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "541dfa10-bf97-4713-a534-9cbcc7f66bc9", + "Name": { + "en": "Opinion" + }, + "Code": "3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5422d4ba-8af4-4767-912e-43b60ef28eab", + "Name": { + "en": "Very" + }, + "Code": "9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5446b5cf-f05a-4bb2-89eb-ce63e27040f3", + "Name": { + "en": "Music" + }, + "Code": "4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5450043d-907b-4884-a9e5-35cfd5935947", + "Name": { + "en": "Naked" + }, + "Code": "5.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "547f1151-5816-4d89-b0bc-ece2a86c92eb", + "Name": { + "en": "Move to a new house" + }, + "Code": "7.2.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5489f4ae-34a7-4f8b-9086-4247b0d8b3de", + "Name": { + "en": "Ambush" + }, + "Code": "4.8.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "54b6dff4-a21d-490d-8279-69f36a179c93", + "Name": { + "en": "Meeting, assembly" + }, + "Code": "4.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "54f59b23-a2e8-4bfc-9da2-7dd7c37d2a47", + "Name": { + "en": "Relational tenses" + }, + "Code": "9.4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "55201761-fe2e-40d5-a2a7-8079e00a2c32", + "Name": { + "en": "Fight" + }, + "Code": "4.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "55a7b809-4196-4c5a-a6d6-09b586ce71e7", + "Name": { + "en": "Ostracize" + }, + "Code": "4.7.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "55b93f1c-6ce0-4d13-ae1e-f06360e4689c", + "Name": { + "en": "With (a patient)" + }, + "Code": "9.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5627904e-59c7-4dd5-aeb5-c6fe0c0a0571", + "Name": { + "en": "Frugal" + }, + "Code": "6.8.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "562f55de-efc7-41a7-b450-6f9dea2813e2", + "Name": { + "en": "Government organization" + }, + "Code": "4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5658ae3d-ea15-44db-bae4-47df792da12e", + "Name": { + "en": "Dishonest" + }, + "Code": "4.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "566be8c1-3e42-4f8b-87eb-e70e8c13c6f8", + "Name": { + "en": "Lean" + }, + "Code": "7.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56984b2b-3417-49b4-a082-1a383551a9e9", + "Name": { + "en": "Labor and birth pains" + }, + "Code": "2.6.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56c9c38c-728a-42fe-b93c-6ca67fdf2a9a", + "Name": { + "en": "Mineral" + }, + "Code": "1.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56d1a950-8798-45fb-bccd-d8b1eb37c071", + "Name": { + "en": "Give, hand to" + }, + "Code": "7.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "56ef3f06-7fb9-462e-a7d0-517f3ce1623f", + "Name": { + "en": "Carnivore" + }, + "Code": "1.6.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5718fcc8-1eba-4b8d-9b6b-0c8349f53f80", + "Name": { + "en": "Aim at a target" + }, + "Code": "7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57225f57-ba51-45d7-b6d2-b22052877ea4", + "Name": { + "en": "Social activity" + }, + "Code": "4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57237095-23cf-43ba-aa6c-89cecdd35ff8", + "Name": { + "en": "Orphan" + }, + "Code": "4.1.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5737714d-49e4-4eb4-8e46-03203ee5340b", + "Name": { + "en": "Deserve" + }, + "Code": "4.7.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "573bf23a-3fde-4552-9263-62b7c71cad02", + "Name": { + "en": "Fish with net" + }, + "Code": "6.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "577017b0-ae87-4fa2-a51b-4f430497be75", + "Name": { + "en": "Exercise authority" + }, + "Code": "4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5771f3a1-fda3-4111-9abc-7a0d76c60a79", + "Name": { + "en": "Tribal names" + }, + "Code": "9.7.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "577a9f51-263a-4c80-a439-84ce45b9c7cc", + "Name": { + "en": "Markers of direct address " + }, + "Code": "9.6.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57c9a370-0f46-4475-98fd-c7a8b3f5074c", + "Name": { + "en": "Spoil" + }, + "Code": "4.3.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57e367f4-7029-4916-a700-791db32b4745", + "Name": { + "en": "Spend" + }, + "Code": "6.8.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57ed66ee-f82b-4e80-955f-7492d85372b0", + "Name": { + "en": "Represent" + }, + "Code": "4.6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "57f07b5f-75bf-4565-b969-ce0adc0b50d4", + "Name": { + "en": "Multiply numbers" + }, + "Code": "8.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5832eb32-8a90-42a7-b2bc-a9bb575b1b7c", + "Name": { + "en": "Move away" + }, + "Code": "7.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "583c98ff-1cc8-4b05-9086-974d13a78894", + "Name": { + "en": "Disorganized" + }, + "Code": "7.5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "58be5db0-c648-4522-bad0-02cd9cc15f37", + "Name": { + "en": "Foundation" + }, + "Code": "6.5.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "58de3766-8729-48e2-97fe-937a441eb722", + "Name": { + "en": "Fertilize a field" + }, + "Code": "6.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "58eeb55b-c57d-4f59-a7d6-9bf663fbf831", + "Name": { + "en": "Succeed" + }, + "Code": "6.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "590570c5-3267-4966-b0db-2af7a5105c83", + "Name": { + "en": "Until" + }, + "Code": "8.4.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "591fd489-36e6-4ffd-a976-58876d851829", + "Name": { + "en": "Mucus" + }, + "Code": "2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "593073d6-9893-4670-98fb-c485406a950b", + "Name": { + "en": "Intercede" + }, + "Code": "3.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "596ab399-e442-4afe-8796-633a49de65a7", + "Name": { + "en": "Justice" + }, + "Code": "4.7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "59a95939-44d7-4396-9ef7-3a80c17e9fb1", + "Name": { + "en": "Obscenity" + }, + "Code": "3.5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "59d19623-0f3b-484d-96eb-a9093b020c8d", + "Name": { + "en": "Take oath" + }, + "Code": "4.7.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "59d936f3-dffb-4585-80e0-eaf6cd6a8026", + "Name": { + "en": "Can" + }, + "Code": "9.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a021f98-2efb-4baf-9384-a553dc3df86c", + "Name": { + "en": "Return" + }, + "Code": "7.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a2355b4-c295-4b94-86da-6ac18198bae4", + "Name": { + "en": "Credit" + }, + "Code": "6.8.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a39edae-1ace-4889-b636-1dfd2a1bcc3c", + "Name": { + "en": "Take something out of something" + }, + "Code": "7.3.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a4a8ae5-a209-4946-8fa1-3c3bd5083e0d", + "Name": { + "en": "Religious ceremony" + }, + "Code": "4.9.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5a585789-2ef6-42c5-9c5a-34ff716059b7", + "Name": { + "en": "Working with glass" + }, + "Code": "6.6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5abd1270-261a-4980-93e5-e10eacea99ad", + "Name": { + "en": "Jump" + }, + "Code": "7.2.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b12ea7b-790f-4f3e-8d07-893fc267773e", + "Name": { + "en": "Cloud" + }, + "Code": "1.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b3c7b4d-d5bb-488e-8f3f-fe8206fb0e55", + "Name": { + "en": "Careful" + }, + "Code": "6.1.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b41c1ed-95bb-4cca-8cff-87361acb5683", + "Name": { + "en": "Traditional clothing" + }, + "Code": "5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b5bcd42-09bb-4c2f-a2da-569cfa69b6ac", + "Name": { + "en": "Attention" + }, + "Code": "3.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b7666bd-c6c1-45e7-aa2e-1799fcb16d97", + "Name": { + "en": "Name" + }, + "Code": "9.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5b925ee1-82ef-4692-bba2-9ce3cb41c7bb", + "Name": { + "en": "Uncover" + }, + "Code": "7.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bb29704-fe0f-4594-9622-ce0aa42b93c8", + "Name": { + "en": "Agriculture" + }, + "Code": "6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bb495a5-ab5b-4409-8cd1-e48b56401fad", + "Name": { + "en": "A short time" + }, + "Code": "8.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bcd08a6-cb46-41bb-a732-0d690b5ea596", + "Name": { + "en": "Types of food" + }, + "Code": "5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5bdb3c06-fbee-4f5f-991a-e2128f65bb86", + "Name": { + "en": "Cosmetics" + }, + "Code": "5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c091d8d-5bc4-40c3-8a30-2a08fb0794b8", + "Name": { + "en": "Vision, hallucination" + }, + "Code": "2.5.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c31bdf6-901f-4f14-ab64-7a99524710fc", + "Name": { + "en": "Indifferent" + }, + "Code": "3.4.1.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c348090-12f4-4c83-8331-e10971bbc8d3", + "Name": { + "en": "Meat" + }, + "Code": "5.2.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c35c2f8-d17c-42a3-aa12-a4c29b6603e8", + "Name": { + "en": "Bend" + }, + "Code": "8.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c468a85-e45f-4ea0-a3ba-68feda7e85a1", + "Name": { + "en": "Help to give birth" + }, + "Code": "2.6.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5c770098-2c91-4a9c-bfa0-a7ffaa871a7f", + "Name": { + "en": "Work for someone" + }, + "Code": "6.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5cc64831-c14a-4dbe-beba-214e725ad041", + "Name": { + "en": "Manner of movement" + }, + "Code": "7.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5cd2f365-2d84-451e-9f2d-bc2561eff909", + "Name": { + "en": "Fastening tool" + }, + "Code": "6.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d21b3f1-85d5-4999-af64-c4d0101050c0", + "Name": { + "en": "Humble" + }, + "Code": "4.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d72af95-facd-4be2-80e9-37528f0f34b5", + "Name": { + "en": "Parts of small animals" + }, + "Code": "1.6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d92b4a7-baf7-495e-bb43-4f733cc55935", + "Name": { + "en": "Experienced" + }, + "Code": "6.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5d9ef67a-e4ba-47ca-8c8c-ea0f512a66cd", + "Name": { + "en": "Entrust to the care of" + }, + "Code": "4.3.4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5db1b502-7c36-44fb-a7b4-50744e9ec286", + "Name": { + "en": "Actions of the hand" + }, + "Code": "7.3.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5dcf3ce8-aa00-4478-b00e-691549fa29e8", + "Name": { + "en": "Selfish" + }, + "Code": "4.3.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5df53b87-7f59-4f5c-991e-5ae007b68fa9", + "Name": { + "en": "Names of animals" + }, + "Code": "9.7.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5e3bb9e5-fd70-4c5a-95a0-938bc4876a47", + "Name": { + "en": "Expect" + }, + "Code": "3.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5e7a5899-df78-4aa7-bec9-b354acfe087f", + "Name": { + "en": "Government functions" + }, + "Code": "4.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5e9f361d-17dc-4ada-a312-8da269d22a64", + "Name": { + "en": "Mammal" + }, + "Code": "1.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5ea9301a-9906-4e81-97cf-48ee95a54c63", + "Name": { + "en": "Influence" + }, + "Code": "3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5ee64d88-c462-4505-b14a-5d36e357a024", + "Name": { + "en": "Top" + }, + "Code": "8.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5f3e44b8-e94c-49b4-9e2d-1acd93dddf75", + "Name": { + "en": "Government official" + }, + "Code": "4.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5f63805f-1c8e-440a-a13c-222c5d81eb9c", + "Name": { + "en": "Ambitious" + }, + "Code": "6.1.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5f791daf-98a2-4787-93cc-8813aea93c4d", + "Name": { + "en": "Tangle" + }, + "Code": "7.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5fcadae4-b4a8-4600-8d30-c4f67986d619", + "Name": { + "en": "Amputate" + }, + "Code": "2.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "5fdf3946-7e47-4fd2-906f-4da7ce5fa490", + "Name": { + "en": "Answer" + }, + "Code": "3.5.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60364974-a005-4567-82e9-7aaeff894ab0", + "Name": { + "en": "Water" + }, + "Code": "1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6045c6eb-efea-4586-95f8-840d32578d66", + "Name": { + "en": "Arrange" + }, + "Code": "7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60595d09-4a15-4499-b6e1-d36a704bcbe9", + "Name": { + "en": "Flow" + }, + "Code": "1.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60a5fa58-45b1-41ae-9430-5200e8bfbcb8", + "Name": { + "en": "Turn" + }, + "Code": "7.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60b8dcfd-49a0-4ab4-82a7-2c5058b325ae", + "Name": { + "en": "Remain, remainder" + }, + "Code": "8.1.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60dc7cf6-0a41-4cd3-99a6-0b7a71488e7e", + "Name": { + "en": "Feel bad" + }, + "Code": "3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "60e63d4a-702e-4238-a42b-d97f6be09c29", + "Name": { + "en": "Hinder" + }, + "Code": "4.3.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6105a207-4311-4920-8c19-63259424bfaf", + "Name": { + "en": "Salvation" + }, + "Code": "4.9.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "611aa361-4ddd-450b-a152-94984a274575", + "Name": { + "en": "Abandon" + }, + "Code": "4.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "612424b8-997e-4661-a452-772e14a3c4a0", + "Name": { + "en": "Reject" + }, + "Code": "3.3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6137239a-b469-46be-b7cb-b9ac22fcc195", + "Name": { + "en": "Teach" + }, + "Code": "3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6142c173-161a-47d5-bdec-c827518fd67c", + "Name": { + "en": "Sad" + }, + "Code": "3.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "615674ac-8158-4089-ae70-b55472fd279b", + "Name": { + "en": "Age" + }, + "Code": "8.4.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6187e620-89bd-4b9d-9896-0c0c788e7740", + "Name": { + "en": "Football, soccer" + }, + "Code": "4.2.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "61a28bdc-c05c-49d8-b47e-d54a9082156c", + "Name": { + "en": "Semantic constituents related to verbs" + }, + "Code": "9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "61f40376-729d-4d99-894f-06c5689a06ac", + "Name": { + "en": "Flat" + }, + "Code": "8.3.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "61f52196-a8b2-496d-96ea-8c15dc7d377a", + "Name": { + "en": "Miracle, supernatural power" + }, + "Code": "4.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62030451-c0f2-4e80-8085-05c6400fc914", + "Name": { + "en": "Plow a field" + }, + "Code": "6.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "627280f0-4f98-4b31-ad23-eabe37b002ad", + "Name": { + "en": "Thin thing" + }, + "Code": "8.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62964baf-fea6-4d8e-8509-d312bff8761a", + "Name": { + "en": "Carrying tool" + }, + "Code": "6.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62b40326-f74c-4d80-9b1c-4dae0fc07026", + "Name": { + "en": "Track an animal" + }, + "Code": "6.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62b4ae33-f3c2-447a-9ef7-7e41805b6a02", + "Name": { + "en": "Social behavior" + }, + "Code": "4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62ed8254-e53a-4781-935e-79869619e40a", + "Name": { + "en": "Dedicate to religious use" + }, + "Code": "4.9.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "62efa729-0920-4933-93f3-b6a48519a5c7", + "Name": { + "en": "Atone, restitution" + }, + "Code": "4.7.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6330871b-6008-490e-bfff-e28e17ebce7e", + "Name": { + "en": "Not moving" + }, + "Code": "7.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "63403699-07c1-43f3-a47c-069d6e4316e5", + "Name": { + "en": "Universe, creation" + }, + "Code": "1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6342c8bf-55b5-400f-af7e-63055fe6813b", + "Name": { + "en": "Tool" + }, + "Code": "6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "638679c7-1c7c-41da-ab60-0ac7e98fcd72", + "Name": { + "en": "Markers of transition " + }, + "Code": "9.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "63b18261-faf3-4ab2-bcb4-7c3ac4d6d6ba", + "Name": { + "en": "Dishonest financial practices" + }, + "Code": "6.8.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "63c69d11-1101-4870-aeb8-43ee364381b0", + "Name": { + "en": "Lightning, thunder" + }, + "Code": "1.1.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "642ff468-e6c8-4fd0-8f52-262efa8f7774", + "Name": { + "en": "Hate, ill will" + }, + "Code": "4.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6430b89c-7077-418a-a558-51f0e3f2c1a6", + "Name": { + "en": "Carry" + }, + "Code": "7.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "643cc712-b3b3-42d0-971e-7a4c8a6cbf1e", + "Name": { + "en": "Walk" + }, + "Code": "7.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64493789-1c2c-4b24-a7e6-f00ff9be923e", + "Name": { + "en": "Use" + }, + "Code": "6.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "646dab64-5c2f-4f45-8e28-4d13437639d4", + "Name": { + "en": "Friend" + }, + "Code": "4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "647603c2-6f32-48f3-91fa-1f7f0e44b539", + "Name": { + "en": "Pour" + }, + "Code": "1.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64e3d6b1-1d61-454c-97ab-e1d7cb0a8917", + "Name": { + "en": "Nervous" + }, + "Code": "3.4.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64e41545-3a0a-4524-a8d4-8e5e0f0e2391", + "Name": { + "en": "Light source" + }, + "Code": "8.3.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64e6c0db-6dd6-4b80-bbe9-c96bb161674b", + "Name": { + "en": "Fraction" + }, + "Code": "8.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64f39297-426b-45a8-b5d2-097cf71d688c", + "Name": { + "en": "Adjectives" + }, + "Code": "9.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "64fa0ba7-73cb-40e9-a8d2-3e61fff146c9", + "Name": { + "en": "Dye hair" + }, + "Code": "5.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65926a7a-bc46-4a40-a2c9-bf84696a3903", + "Name": { + "en": "Gentle" + }, + "Code": "4.4.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "659ccabf-f978-4852-a1a6-c225f1d76b97", + "Name": { + "en": "Special days" + }, + "Code": "8.4.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65a928b8-8587-48be-8f23-41f85549c547", + "Name": { + "en": "Memorize" + }, + "Code": "3.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65bb0844-9a71-4eec-9b86-bf4b4b508a28", + "Name": { + "en": "Respond to trouble" + }, + "Code": "4.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65c68427-2e20-42b2-8f49-623055ea9246", + "Name": { + "en": "Pounding tool" + }, + "Code": "6.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "65ef6aae-019f-4980-b6d9-5b7ad2c8e68f", + "Name": { + "en": "Saying, proverb" + }, + "Code": "3.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6681f03b-06c4-4509-9253-e4739c9c1614", + "Name": { + "en": "Beg" + }, + "Code": "6.8.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66abfbe5-e011-48de-8773-905f1b1ce215", + "Name": { + "en": "Working with clay" + }, + "Code": "6.6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66d8b546-92f5-4e94-b992-08be81c3d30c", + "Name": { + "en": "Physical impact" + }, + "Code": "7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66dedb31-dd2a-4e94-825e-331590ac59a9", + "Name": { + "en": "Derivation " + }, + "Code": "9.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66e2806d-3e16-4fb2-a158-7f3b4dd5d9af", + "Name": { + "en": "Origin (of a person)" + }, + "Code": "9.5.1.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "66fc9a08-3661-4dd5-94b0-1eea41fb4554", + "Name": { + "en": "Prevent" + }, + "Code": "3.3.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67087306-0211-4c28-b17e-0b6827723f07", + "Name": { + "en": "Person in authority" + }, + "Code": "4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6709cc78-cb0b-493e-b3e6-8590a2f20c95", + "Name": { + "en": "Encounter" + }, + "Code": "4.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6712385a-6740-4f28-8bbe-8615ea17116b", + "Name": { + "en": "Regular" + }, + "Code": "8.4.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67247ab3-7b3a-4035-a0d0-a05c8e615c71", + "Name": { + "en": "Made by hand" + }, + "Code": "6.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6736dafe-2916-40f6-b6b7-b6300100933b", + "Name": { + "en": "Dream" + }, + "Code": "5.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6745c89d-1fcd-44b8-be4b-9fd9d62f64e7", + "Name": { + "en": "Entertainment, recreation" + }, + "Code": "4.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "675d67bb-da64-456e-8825-bdf074bb82be", + "Name": { + "en": "Begin a relationship" + }, + "Code": "4.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "675eccbb-9858-4cd4-8405-5f0d0faa792c", + "Name": { + "en": "Negotiate" + }, + "Code": "4.8.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "678a3319-a12b-4f92-857d-167def8ef583", + "Name": { + "en": "Move together" + }, + "Code": "7.2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67931f1c-9a0c-4d18-9762-e553c132256c", + "Name": { + "en": "Financial transaction" + }, + "Code": "6.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67d10a00-fda8-4a3a-becd-f3ae3b00fcca", + "Name": { + "en": "Shock" + }, + "Code": "3.4.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67d282f8-151d-429b-8183-6a7d2f5ac98d", + "Name": { + "en": "Introduce" + }, + "Code": "3.5.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67d74de1-33f9-4d39-8fa5-5dd27e7cd1d1", + "Name": { + "en": "Suspect" + }, + "Code": "4.7.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "67e57493-d286-4271-b877-f63f962dddf1", + "Name": { + "en": "Big area" + }, + "Code": "8.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6804db44-b71b-4452-98b1-b726bc7cf022", + "Name": { + "en": "Loud" + }, + "Code": "2.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "683f570a-0bfe-4a97-b55d-4319b328508b", + "Name": { + "en": "Working with water" + }, + "Code": "6.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "685d474d-3b84-4339-98c6-2aac28b9870c", + "Name": { + "en": "Clear a field" + }, + "Code": "6.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6866ee4c-78cd-47d1-ba4a-8461fdcc5e2a", + "Name": { + "en": "Logical" + }, + "Code": "3.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "68ed3e51-ddc4-4cec-89ff-605259ac9fcf", + "Name": { + "en": "Nose" + }, + "Code": "2.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6903b844-79be-4e9d-a3c8-1ca2a385bf4f", + "Name": { + "en": "With, do with someone" + }, + "Code": "9.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "691bdba3-c216-4b42-877c-674bbdb517a7", + "Name": { + "en": "Trust" + }, + "Code": "3.2.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69455770-fca7-4f41-9e7d-236e8f094ce6", + "Name": { + "en": "Covenant" + }, + "Code": "4.7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69541573-f845-4e77-91f6-1e3551fc6c82", + "Name": { + "en": "Name of a place" + }, + "Code": "9.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69d039e6-f669-4d54-8b67-89b19ff0a19c", + "Name": { + "en": "During" + }, + "Code": "8.4.5.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69d0a37d-f5b3-48a5-9486-5654d37b030b", + "Name": { + "en": "Mill grain" + }, + "Code": "6.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "69d366d2-9735-4a1b-b938-7b212932b568", + "Name": { + "en": "Names of heavenly bodies" + }, + "Code": "9.7.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6a4f5638-388e-4c8e-9bb7-8e742dac43db", + "Name": { + "en": "Bottom" + }, + "Code": "8.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6a6bbf65-b521-4b74-bf35-dede87217d3c", + "Name": { + "en": "Habit" + }, + "Code": "4.3.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6a6f0748-a6e9-4d64-b14e-543bb6ec2ec8", + "Name": { + "en": "Strange" + }, + "Code": "8.3.5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6aa8133a-2578-4617-bd9c-6428e897a4f1", + "Name": { + "en": "Break a contract" + }, + "Code": "4.7.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ab060ca-ecfc-4a46-accb-42b0473998cd", + "Name": { + "en": "Link, connect" + }, + "Code": "7.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b19e828-f597-4d0d-b7a6-f52f3bbd041f", + "Name": { + "en": "Willing" + }, + "Code": "3.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b1eeebd-2433-4f39-9e67-7ac4dd0fe20a", + "Name": { + "en": "North, south, east, west" + }, + "Code": "8.5.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b208fda-544c-4cba-b8cc-887b1018837f", + "Name": { + "en": "Photography" + }, + "Code": "6.6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b8366b9-b5e8-42b8-991c-c568d4442a81", + "Name": { + "en": "Care for hair" + }, + "Code": "5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6b921117-47e9-4717-b3b3-4e170d26b6d9", + "Name": { + "en": "Personal names" + }, + "Code": "9.7.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bc8e911-36f2-4d45-b237-2bdb6c03cc11", + "Name": { + "en": "Around" + }, + "Code": "8.5.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bd023f6-730e-44c2-ae8f-78df967e2e18", + "Name": { + "en": "Pull" + }, + "Code": "7.3.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bf7569e-dc79-49da-9ce1-e2e03303828a", + "Name": { + "en": "Punish" + }, + "Code": "4.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bf8ce57-1970-4efb-a7d7-b0bf8be6fb6b", + "Name": { + "en": "Right time" + }, + "Code": "8.4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6bfb7813-3a7d-47e2-88e1-d54034c07e5d", + "Name": { + "en": "Advise" + }, + "Code": "3.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c282031-f1ca-492a-b94c-b48e74e6f25d", + "Name": { + "en": "Free from bondage" + }, + "Code": "4.4.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c305af5-cff5-4f7f-bd89-040d4c265355", + "Name": { + "en": "Dense" + }, + "Code": "8.3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c32038c-adf3-4085-bde3-cd2f21a421ba", + "Name": { + "en": "Throw away" + }, + "Code": "7.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c36a680-4ff4-43b9-a7c2-9037ceb0d3f6", + "Name": { + "en": "Round" + }, + "Code": "8.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c54f0b0-b056-4090-b3f0-d5ec6710d4ab", + "Name": { + "en": "Low" + }, + "Code": "8.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6c6259f0-eca6-4a30-8662-eedbaf293527", + "Name": { + "en": "Change your mind" + }, + "Code": "3.2.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6cbdaf94-8e2c-4b26-936a-d2f86d158250", + "Name": { + "en": "Race" + }, + "Code": "4.1.9.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6dd16e6e-fbdb-4df1-9730-4877651e68f3", + "Name": { + "en": "Efficient" + }, + "Code": "6.1.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6de42a33-35b2-49c6-b2c4-fa9c0c5094f0", + "Name": { + "en": "Drink" + }, + "Code": "5.2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6de4e99b-2b5a-493a-a208-f024d1eabdf3", + "Name": { + "en": "Move back" + }, + "Code": "7.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e04a3e2-3b3a-4d0b-bf71-1596ca0aa211", + "Name": { + "en": "Careless, irresponsible" + }, + "Code": "6.1.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e7d10f8-6da5-4a8a-a06d-952511194105", + "Name": { + "en": "Light in weight" + }, + "Code": "8.2.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6e83c471-0fe8-4641-8ecf-68b63df29ab7", + "Name": { + "en": "Remove shell, skin" + }, + "Code": "5.2.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ea13b69-b2a8-41f9-b0bc-14316ebc5118", + "Name": { + "en": "Mysterious" + }, + "Code": "3.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ea9bfc6-723c-466f-9efc-0992879ae47d", + "Name": { + "en": "Ritual scar" + }, + "Code": "5.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6eaba0c3-cdfe-435d-8811-7f2ddf6facbd", + "Name": { + "en": "Swell" + }, + "Code": "2.5.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6eafbb5a-26ba-44b5-a0d5-21b9e7750ece", + "Name": { + "en": "Rebuke" + }, + "Code": "4.8.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6eb2ef50-7e6b-41b8-a82e-6eb307c908ca", + "Name": { + "en": "Effective" + }, + "Code": "6.1.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6f01b67c-33a0-4ed3-8205-f868e97a1a3a", + "Name": { + "en": "Travel" + }, + "Code": "7.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6f83b918-dc9f-4053-90a4-a6b9e750db29", + "Name": { + "en": "Controlling water" + }, + "Code": "6.6.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fa33de6-00f4-44d5-b6b3-b3c4a4f671e5", + "Name": { + "en": "Interrogative " + }, + "Code": "9.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fb1d03c-b0fe-49b7-a473-168f12a54a36", + "Name": { + "en": "Late" + }, + "Code": "8.4.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fbe39fb-a4cb-4fcf-830b-8875fd4324e0", + "Name": { + "en": "Compel" + }, + "Code": "3.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fc8ae4d-9fad-462e-9ea0-c613c3c1cb5e", + "Name": { + "en": "Doubt" + }, + "Code": "3.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fceec81-1967-4fe5-81f3-86bcaf3f1c2f", + "Name": { + "en": "Cancel an event" + }, + "Code": "6.1.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6fe11b6a-8d01-4a0b-bdeb-e4e6f420340a", + "Name": { + "en": "Personality" + }, + "Code": "3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "6ffe33fe-b49c-45c8-a50b-cd0065c0c869", + "Name": { + "en": "Point, dot" + }, + "Code": "8.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70164474-a65b-4506-9953-f26afb6b497a", + "Name": { + "en": "Fireplace" + }, + "Code": "5.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "706cb38c-9aca-4e2f-9653-d9562f07331c", + "Name": { + "en": "Pattern, design" + }, + "Code": "8.3.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70953222-5bc5-4fa2-a85a-01827f7bc537", + "Name": { + "en": "Way, route" + }, + "Code": "7.2.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70963c34-dd34-40c2-bb21-e9cea73c7923", + "Name": { + "en": "Drop charges" + }, + "Code": "4.7.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "709d43dd-ce94-4df1-91b1-edb0b12fdaea", + "Name": { + "en": "Rub" + }, + "Code": "7.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70eac6be-66e8-4827-8f2f-d15427efff60", + "Name": { + "en": "Reading and writing" + }, + "Code": "3.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "70f80041-af88-4521-9ebd-21d8f0b0d131", + "Name": { + "en": "In front of" + }, + "Code": "8.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "710828bc-5dfb-4685-b1a5-156700ab08f1", + "Name": { + "en": "Read" + }, + "Code": "3.5.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7110adbe-a4ce-47b0-8c2f-6b41edaf2fcb", + "Name": { + "en": "Stop moving" + }, + "Code": "7.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71430132-f2ea-40fe-b3f5-b6775741cc56", + "Name": { + "en": "Working with cloth" + }, + "Code": "6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7158c621-c46e-4173-80c1-188f514a920f", + "Name": { + "en": "Admit" + }, + "Code": "3.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7162885d-1d35-4baf-97d6-7368fff7c723", + "Name": { + "en": "Loose" + }, + "Code": "8.2.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "716b3e9d-9bb9-42a6-ba56-829b1c018b28", + "Name": { + "en": "Manage a house" + }, + "Code": "5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71757ff0-d698-426d-a791-50c4bde6f735", + "Name": { + "en": "Spatial location of an event" + }, + "Code": "9.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7185bd93-5281-46de-80af-767f0ec40ff6", + "Name": { + "en": "Mind" + }, + "Code": "3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71a2cc77-f968-4341-84c1-6c16d007a093", + "Name": { + "en": "Butcher, slaughter" + }, + "Code": "6.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71b19b9e-231c-4196-a7d7-aa56a5079782", + "Name": { + "en": "Include" + }, + "Code": "7.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71cbefc3-e0a5-4b97-9672-fa0cb34c59e4", + "Name": { + "en": "Ceremony" + }, + "Code": "4.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71dbaf5f-2afa-4282-b9b8-8a50d8c8e5e9", + "Name": { + "en": "Veterinary science" + }, + "Code": "6.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "71f89512-17f0-484c-aca8-ddd226e3c794", + "Name": { + "en": "Leg" + }, + "Code": "2.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "721e2ee8-7ea5-4d17-94cc-d77d8e92bd27", + "Name": { + "en": "Polite" + }, + "Code": "4.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "721e7782-9add-41fa-a7cf-659d5ca33926", + "Name": { + "en": "Game" + }, + "Code": "4.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "72274e9d-5d3c-4ae7-93ab-db3617cdda1e", + "Name": { + "en": "Sense of touch" + }, + "Code": "2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "725d78eb-8cac-4b2f-b5a4-f0a9adb80f5d", + "Name": { + "en": "Irreligion" + }, + "Code": "4.9.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "726923d4-b25c-46eb-8ab0-427207177ae3", + "Name": { + "en": "Steps in food preparation" + }, + "Code": "5.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "728bbc7c-e5b3-47d8-8532-72239e5c88bb", + "Name": { + "en": "Summarize" + }, + "Code": "3.5.1.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "72d9b7cd-aa06-4f7b-a66b-b992171d2cd4", + "Name": { + "en": "Style of clothing" + }, + "Code": "5.3.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7337b2dd-b574-4a41-affa-2dfad7f6cdbc", + "Name": { + "en": "Cast lots" + }, + "Code": "3.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73499b8b-76fc-4121-8bfa-1bdebe537259", + "Name": { + "en": "Types of animals" + }, + "Code": "1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73726931-ef12-4d39-a76e-7742f4b7c9cd", + "Name": { + "en": "Economics" + }, + "Code": "6.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "738a09a5-59df-40f9-8a4e-176e00d03bbf", + "Name": { + "en": "Weapon, shoot" + }, + "Code": "4.8.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73a59333-134f-4a1d-aba7-e134bdefe059", + "Name": { + "en": "Culture" + }, + "Code": "4.3.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73adcfbe-8a74-4fda-969f-616964226b9b", + "Name": { + "en": "Boundary" + }, + "Code": "6.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73b959ab-0229-4710-af99-dfc9b5370540", + "Name": { + "en": "To a larger degree" + }, + "Code": "9.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73d580ac-dc89-474c-8048-3453ebdda807", + "Name": { + "en": "Distance" + }, + "Code": "8.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73ea23c2-db45-49fa-a72b-0fc6eff4ce30", + "Name": { + "en": "Eventually" + }, + "Code": "8.4.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "73f3bd83-c9a5-4613-aeb1-0c5076d4850e", + "Name": { + "en": "Parts of a fish" + }, + "Code": "1.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "741c417a-11e9-460c-9ab3-51b8220df016", + "Name": { + "en": "Wave" + }, + "Code": "1.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "742996cd-b87f-40a8-bdb3-dba74219bd73", + "Name": { + "en": "Hot" + }, + "Code": "8.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "744d1402-05f5-4491-9c15-a5af03595edb", + "Name": { + "en": "Bad, immoral" + }, + "Code": "4.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7459c0d8-4da1-4944-a95e-bc64cde860f5", + "Name": { + "en": "Invite" + }, + "Code": "4.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "749ad6fe-5509-4e45-b236-84ea12de102e", + "Name": { + "en": "Share wealth" + }, + "Code": "6.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "74cd7314-5ef6-4505-a35a-81468b5a3f3a", + "Name": { + "en": "Situation" + }, + "Code": "9.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "751bd45c-abfb-443f-ac55-aad3472c20de", + "Name": { + "en": "Unintelligible" + }, + "Code": "3.5.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "751f726b-b7cd-470e-a9fd-f2f1b460dd0d", + "Name": { + "en": "Derivational affixes" + }, + "Code": "9.2.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "75202262-cdba-4c43-9343-764c84138797", + "Name": { + "en": "Uncle, aunt" + }, + "Code": "4.1.9.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7524887a-5cf0-4459-96d1-fd8262bef7d4", + "Name": { + "en": "Growing roots" + }, + "Code": "6.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "754ac437-2841-48c3-bbb0-7d6dff52605e", + "Name": { + "en": "Event propositions" + }, + "Code": "9.1.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7556a257-3703-40d3-91d3-c891fb250947", + "Name": { + "en": "Religion" + }, + "Code": "4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7558d071-a885-447b-9aa2-604c29669492", + "Name": { + "en": "Government" + }, + "Code": "4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "755a7462-1d87-48b0-939c-08be5b5ea002", + "Name": { + "en": "Extra" + }, + "Code": "8.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "756728a8-9eb8-4329-aee2-d6a3d64585f2", + "Name": { + "en": "Solid, liquid, gas" + }, + "Code": "1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "756f67e9-2b22-4c43-913c-ceff0e781545", + "Name": { + "en": "Put in" + }, + "Code": "7.3.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7575d654-e528-4fe0-85eb-481b0e6654bb", + "Name": { + "en": "Machine" + }, + "Code": "6.7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "75825d72-695b-4e92-9f33-0f3ab4d7dd11", + "Name": { + "en": "Spit, saliva" + }, + "Code": "2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "75eb23c7-28b5-4c98-937a-1d8f371b24cf", + "Name": { + "en": "Fly" + }, + "Code": "7.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "761706fe-d289-4ace-b2c3-ab15d80dba7f", + "Name": { + "en": "Rope, string" + }, + "Code": "7.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "763fa2e0-c119-4f50-a307-81ed8c3497ed", + "Name": { + "en": "Oppose" + }, + "Code": "4.8.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7648040b-0aa5-4d9a-8f13-ffd066b81602", + "Name": { + "en": "Long" + }, + "Code": "8.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76795fdd-55dc-4fb7-a9ad-d1423c31df50", + "Name": { + "en": "Question words" + }, + "Code": "9.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "767aa167-af3d-4e11-a68b-ec31f9d2ef1a", + "Name": { + "en": "Sign, symbol" + }, + "Code": "3.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "768aed05-dbc9-4caf-9461-76cb3720f908", + "Name": { + "en": "Pain" + }, + "Code": "2.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76a06e45-99f7-446f-a2e8-e23edf6064bd", + "Name": { + "en": "Decay" + }, + "Code": "8.3.7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76a4a286-1c8a-4c4a-9eaf-dca040be574a", + "Name": { + "en": "Brave" + }, + "Code": "4.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "76d4c718-a84d-4b7b-9767-1c350c3bc124", + "Name": { + "en": "Interval" + }, + "Code": "8.4.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "771e3882-f672-4e67-8580-edd82d7e5090", + "Name": { + "en": "Do good to" + }, + "Code": "4.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "774cdff1-8cba-4f94-a519-c66abd3b5f49", + "Name": { + "en": "Clan names" + }, + "Code": "9.7.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "775b53f1-bfcf-4270-a60d-b5affc9d6a99", + "Name": { + "en": "Behind" + }, + "Code": "8.5.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "776de0c6-fdd7-46df-b33f-b1e4af6ee099", + "Name": { + "en": "Sometimes" + }, + "Code": "8.4.6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "779e4547-dee6-4780-a180-30a740f9574c", + "Name": { + "en": "Basis" + }, + "Code": "9.6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77b4d6c1-87bf-4839-b4be-6a45119b700a", + "Name": { + "en": "Ask" + }, + "Code": "3.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77bcdcab-e9fd-48ba-8dcd-63f425367735", + "Name": { + "en": "Easy, possible" + }, + "Code": "6.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77d1610f-4757-46de-b5f8-e127dc270dfd", + "Name": { + "en": "Weaving cloth" + }, + "Code": "6.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77f0d0dc-61ee-4373-9879-35a7059bd892", + "Name": { + "en": "Tooth decay" + }, + "Code": "2.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "77f27500-aad8-409c-a28e-92df73794dce", + "Name": { + "en": "Enemy" + }, + "Code": "4.8.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "780fbf89-f2ba-404c-b288-f6ca637bbc90", + "Name": { + "en": "Continue, persevere" + }, + "Code": "8.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7831223b-e5ed-4186-a321-94e9ae72a27d", + "Name": { + "en": "Throw" + }, + "Code": "7.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "785e7f1f-21ed-46b6-8599-c6ced4fd26d8", + "Name": { + "en": "Status" + }, + "Code": "4.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "78b0ad1b-0766-41ba-b788-d176addd5e9f", + "Name": { + "en": "Speak little" + }, + "Code": "3.5.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "793993ac-20c1-49f0-9716-e4cdc7da4439", + "Name": { + "en": "Tense and aspect" + }, + "Code": "9.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "793d3124-8b77-4ff0-82ec-09a3a9d8d865", + "Name": { + "en": "Unfair" + }, + "Code": "4.7.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7981a8e1-cf0b-44a0-9de4-12160b2f201d", + "Name": { + "en": "Land, property" + }, + "Code": "6.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7988974c-99fd-40dd-9b5e-2d81ec603ddc", + "Name": { + "en": "Forest, grassland, desert" + }, + "Code": "1.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7992958d-fd36-469e-a94b-f8a9eb26af64", + "Name": { + "en": "Block, dam up" + }, + "Code": "7.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79a33505-0c33-4e92-89b9-6a42e6ff2228", + "Name": { + "en": "Appear" + }, + "Code": "2.3.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79b580ff-64a7-445b-abcb-b49b9093779c", + "Name": { + "en": "Animal husbandry" + }, + "Code": "6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79ca34ea-68a7-4fe9-b5ac-4f3d6a1ab99d", + "Name": { + "en": "Baby" + }, + "Code": "2.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79ebb5ce-f0fd-4fb5-9f22-1fa4965a555b", + "Name": { + "en": "Bodies of water" + }, + "Code": "1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "79f3b53a-eb56-4188-87f8-48317f76e7ce", + "Name": { + "en": "Fasting" + }, + "Code": "4.9.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7a8cb8d3-797d-478d-b7dd-265a1eedc0c1", + "Name": { + "en": "Fence, wall" + }, + "Code": "6.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ad54364-ca8c-4b7c-9748-f83efb44d0ea", + "Name": { + "en": "Mention" + }, + "Code": "3.5.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7adf468c-b93a-4b04-8af6-4c691122a4eb", + "Name": { + "en": "White" + }, + "Code": "8.3.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7b17e304-9a3f-463f-8216-cd1e1e119e0e", + "Name": { + "en": "Divide numbers" + }, + "Code": "8.1.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7b513a02-c3ae-4243-9410-16854d911258", + "Name": { + "en": "Name of a person" + }, + "Code": "9.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7b816f6a-4b46-403d-a1a2-2914ee070568", + "Name": { + "en": "Present" + }, + "Code": "8.4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7babf463-5e62-4a82-96d3-ef5989803c41", + "Name": { + "en": "Survive" + }, + "Code": "4.4.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7bca1201-31f8-4f65-8da9-af0eff36b388", + "Name": { + "en": "Gossip" + }, + "Code": "3.5.1.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7beca90c-3671-4b3c-bf9a-fb8f08ff914b", + "Name": { + "en": "Salt" + }, + "Code": "5.2.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7bf05f4e-909f-40ca-b742-9be21eba9fbb", + "Name": { + "en": "Agent-oriented modalities" + }, + "Code": "9.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7bf77556-64df-428e-bfdd-095af5bfeeda", + "Name": { + "en": "Intend" + }, + "Code": "3.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c022751-a9f9-412d-8b27-8cd03b797e2d", + "Name": { + "en": "Just, almost not" + }, + "Code": "9.4.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c1c3730-3b35-4150-b54e-bf6d344546b3", + "Name": { + "en": "Markers of emphasis " + }, + "Code": "9.6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c234ccc-0dbe-42b0-a377-db99ebd2b51e", + "Name": { + "en": "Things done to animals" + }, + "Code": "6.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c64f65b-2889-4f90-ba61-6b5f7634d4bc", + "Name": { + "en": "Male and female animals" + }, + "Code": "1.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c6ba6e5-d81e-4a50-a111-c946a0793378", + "Name": { + "en": "Advantage" + }, + "Code": "6.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c6cad26-79c3-403a-a3aa-59babdfcd46f", + "Name": { + "en": "Sick" + }, + "Code": "2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c7f62d8-0293-45ba-8658-956c38bafc66", + "Name": { + "en": "Destiny" + }, + "Code": "4.9.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c7fc1b6-3775-4881-bbe0-9d0ce50e42a9", + "Name": { + "en": "Lift" + }, + "Code": "7.3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c80f6ee-e76d-4903-aee6-7a33d1da3f75", + "Name": { + "en": "Cover" + }, + "Code": "7.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7c9c6263-9f7d-472c-a4c9-1767015d41fe", + "Name": { + "en": "Offer" + }, + "Code": "3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7cf6312e-f9f0-49e8-ae60-7677fac86c3f", + "Name": { + "en": "Subtract numbers" + }, + "Code": "8.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7cfc8b3c-ad67-4928-ae6a-74afd47ced89", + "Name": { + "en": "Whole, complete" + }, + "Code": "8.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d111356-e04e-4891-960c-2f35147eba82", + "Name": { + "en": "Name of a thing" + }, + "Code": "9.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d472317-b5e8-4cae-a03f-913ecdaf4c29", + "Name": { + "en": "Snake" + }, + "Code": "1.6.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d472dd5-636d-4499-bf66-83cf23c0dbe1", + "Name": { + "en": "Child" + }, + "Code": "2.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d54d3dd-5fb2-4640-9bcf-c234696af894", + "Name": { + "en": "Honest" + }, + "Code": "4.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d629c80-e5c2-409f-a592-39c56e9ace6d", + "Name": { + "en": "Navy" + }, + "Code": "4.8.3.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d7bc686-faf5-484b-8519-b2529ac581bf", + "Name": { + "en": "Growing rice" + }, + "Code": "6.2.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d7c81d5-9713-423f-b12e-8e11e451f0a7", + "Name": { + "en": "Forgive" + }, + "Code": "4.8.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d8898d6-6296-4d4d-b8dd-2f48c49f9e98", + "Name": { + "en": "High" + }, + "Code": "8.2.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7d9f48f5-aba3-486f-b49d-cd2cb0ac03f8", + "Name": { + "en": "Growing grapes" + }, + "Code": "6.2.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7dbd7f43-4291-47f8-a392-6fdf3c98d522", + "Name": { + "en": "Male organs" + }, + "Code": "2.1.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ddbd56f-e458-4a72-a9bc-9b7db6bde75a", + "Name": { + "en": "Ruler" + }, + "Code": "4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7df3078c-f681-4123-a712-4b83e438ea1d", + "Name": { + "en": "Keep something" + }, + "Code": "7.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7e0bc050-5298-4808-af22-5e284526c652", + "Name": { + "en": "Exchange, trade" + }, + "Code": "6.8.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7e2b6218-0837-4b16-a982-c9535cccdb21", + "Name": { + "en": "Corpse" + }, + "Code": "2.6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ea946fb-6469-4f21-a5a4-7963878e6fe2", + "Name": { + "en": "A long time" + }, + "Code": "8.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ec98665-275f-4d57-8022-2740b9e90059", + "Name": { + "en": "Show sympathy, support" + }, + "Code": "4.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7edf9e7c-3e32-4307-b5e3-b0d704df7803", + "Name": { + "en": "Spinning thread" + }, + "Code": "6.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ee3ccb5-e6cb-4028-9af5-62ae782967b5", + "Name": { + "en": "Working with metal" + }, + "Code": "6.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ee92ca4-19aa-4abd-9f88-508766acc39c", + "Name": { + "en": "Roll up" + }, + "Code": "8.3.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7ee96f62-7c8e-4c27-a373-d7a534844612", + "Name": { + "en": "Working with leather" + }, + "Code": "6.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f1dfb68-bf07-472d-a481-b802d2591ca6", + "Name": { + "en": "Circumcision" + }, + "Code": "5.4.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f6c81fb-02a4-415f-a363-fb11cc6b9254", + "Name": { + "en": "Supernatural being" + }, + "Code": "4.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f7fc197-5064-43c0-af51-2919fb7355c9", + "Name": { + "en": "Connected with, related " + }, + "Code": "9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7f91aa6d-f342-4fb9-9448-69d694cda9c5", + "Name": { + "en": "To a large degree" + }, + "Code": "9.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7fe69c4c-2603-4949-afca-f39c010ad24e", + "Name": { + "en": "Body functions" + }, + "Code": "2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "7fed6281-326a-4a15-8cbf-dc574594da19", + "Name": { + "en": "Play music" + }, + "Code": "4.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80415fac-b3d8-4e3c-bdb8-dc92f3c6dad8", + "Name": { + "en": "Boast" + }, + "Code": "3.5.1.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8052744f-7a9a-49da-89e3-4c518126180b", + "Name": { + "en": "Confused" + }, + "Code": "3.4.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80563285-4de7-4040-8080-a5b22208e7d5", + "Name": { + "en": "Attack" + }, + "Code": "4.8.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8080c7ed-e69a-4a8a-bd8d-bf3447b13630", + "Name": { + "en": "Process harvest" + }, + "Code": "6.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80b48f92-0a83-4eeb-bfe0-6980285feb65", + "Name": { + "en": "Cruel" + }, + "Code": "4.3.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80bcbc99-3c85-46d6-b15c-895367231747", + "Name": { + "en": "Be at a place" + }, + "Code": "8.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80dc5ca1-44ce-4406-add8-2bbe19c122ab", + "Name": { + "en": "Recorded music" + }, + "Code": "3.5.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80de758c-537d-4c8c-8308-4babfb2c787a", + "Name": { + "en": "Occupy an area" + }, + "Code": "8.5.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "80f26fbc-ca89-4789-996d-4c09547f2504", + "Name": { + "en": "Complete, finish" + }, + "Code": "6.1.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "811a2abc-4bf3-44e4-9ff4-e33ff4470ce6", + "Name": { + "en": "Prepositions, postpositions" + }, + "Code": "9.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "811e8c93-d97a-4aab-bd67-268b7783ff11", + "Name": { + "en": "Tend a field" + }, + "Code": "6.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "816490a4-2cac-472a-bbb0-eafbb9bbe4a8", + "Name": { + "en": "Ordinal numbers" + }, + "Code": "8.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81855f47-aa24-435d-a123-7dfe61c80702", + "Name": { + "en": "Unreliable" + }, + "Code": "4.3.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "818e33ff-590e-4d0e-b84e-67771324a545", + "Name": { + "en": "Digging tool" + }, + "Code": "6.7.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81b62078-984c-4e82-94c4-39fa44dd3e56", + "Name": { + "en": "Insult" + }, + "Code": "3.5.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81e03df2-33a8-4735-aa23-80ef1c63679e", + "Name": { + "en": "Dazed, confused" + }, + "Code": "2.5.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "81e366fa-450b-42ad-b23f-7074dc7823e2", + "Name": { + "en": "Attitude" + }, + "Code": "3.2.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8206415e-a915-4842-a46a-fbea64f1a0e3", + "Name": { + "en": "Idiophones" + }, + "Code": "9.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8216627d-9d20-4a5c-8bfd-0709c16e7a08", + "Name": { + "en": "More" + }, + "Code": "8.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8225de87-35a3-4c7a-b35c-f45b152caebe", + "Name": { + "en": "Show, indicate" + }, + "Code": "3.5.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8242fc85-a703-4efa-a78a-0556a84e811e", + "Name": { + "en": "Bite, chew" + }, + "Code": "5.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82a4ae36-8e70-4c0d-8144-ad9fc3c0e04f", + "Name": { + "en": "Horizontal" + }, + "Code": "8.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82e4394a-2f58-4356-8d9c-1ad9dbe95293", + "Name": { + "en": "Cold" + }, + "Code": "8.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82eb3050-d382-48f6-a049-22a5f8a3b25a", + "Name": { + "en": "Stay, remain" + }, + "Code": "7.2.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "82ecb5b3-9128-4b38-b9c5-612857417ceb", + "Name": { + "en": "Dislike" + }, + "Code": "3.4.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8383b4cb-e14a-4d04-a8c3-9c5276384953", + "Name": { + "en": "Ask permission" + }, + "Code": "3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "83899b19-8b39-4bf0-b124-4c6188569ec8", + "Name": { + "en": "Add numbers" + }, + "Code": "8.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "83adeb9d-c0be-4073-894d-913014420280", + "Name": { + "en": "Good" + }, + "Code": "8.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "83b483b8-f036-44be-8510-ea337d010a1c", + "Name": { + "en": "Bird" + }, + "Code": "1.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84084e67-b321-4b6a-a436-29ead0bee586", + "Name": { + "en": "Down" + }, + "Code": "8.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8411fa09-b1a5-4b62-aa47-f28bee9f6616", + "Name": { + "en": "Useful" + }, + "Code": "6.1.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "844f922b-6fb6-49aa-864b-b1c49edaa1ae", + "Name": { + "en": "Jewelry" + }, + "Code": "5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8497fb66-8b91-46b9-a0d5-fb9385319561", + "Name": { + "en": "Taste" + }, + "Code": "2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84a8d541-9571-4ce9-abea-bd9cccb8dbf0", + "Name": { + "en": "Floor, story" + }, + "Code": "6.5.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84d67c87-86ff-4e71-8a26-abe048132f8f", + "Name": { + "en": "Shave" + }, + "Code": "5.4.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "84eb31d3-b932-4b3b-b945-85884ea856c7", + "Name": { + "en": "Probably " + }, + "Code": "9.4.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8503660c-03af-49ee-86b6-525aab4da828", + "Name": { + "en": "Hear" + }, + "Code": "2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85188748-1919-4210-a9e9-91171d9d6454", + "Name": { + "en": "Fish" + }, + "Code": "1.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85214614-ab45-4805-9014-092750d47511", + "Name": { + "en": "Trial" + }, + "Code": "4.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85646774-8145-4553-b8a7-6927cd077908", + "Name": { + "en": "Animal group" + }, + "Code": "1.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8570f05c-a152-4117-9f54-4edfa9c06a32", + "Name": { + "en": "Fault" + }, + "Code": "4.7.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "858af232-b570-4153-b4c0-f60930df9ced", + "Name": { + "en": "Seem" + }, + "Code": "9.4.4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85912845-21b0-41eb-8b8c-1f5c3d53df08", + "Name": { + "en": "Enthusiastic" + }, + "Code": "3.4.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8594cb26-9f3c-48f5-b00b-f055eb5a5e61", + "Name": { + "en": "Riot" + }, + "Code": "4.8.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8596f086-ee46-4245-8d45-2171a60e19e4", + "Name": { + "en": "Touching, contact" + }, + "Code": "8.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85b9908f-4f57-4baa-9ed2-bc4705b12e72", + "Name": { + "en": "Straight posture" + }, + "Code": "7.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85c5b8f7-8086-493d-b70d-a361bfa56f09", + "Name": { + "en": "Possible" + }, + "Code": "9.4.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85cb1e3c-62ba-4a77-a838-0237707fb0cb", + "Name": { + "en": "Names of regions" + }, + "Code": "9.7.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85dfc6a3-6c70-41f2-a869-32e2fb3c40ee", + "Name": { + "en": "Bend down" + }, + "Code": "7.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "85f211ae-cc16-4042-8c27-e99ff8f01f61", + "Name": { + "en": "Give, donate" + }, + "Code": "6.8.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86287a4c-0d64-4f28-9a5c-17fb9df37ab6", + "Name": { + "en": "On" + }, + "Code": "8.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86615235-8cdd-413d-b722-11bc5a4653d6", + "Name": { + "en": "End" + }, + "Code": "8.4.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "867f515b-ed0f-431e-a84a-6c562e1bdbb7", + "Name": { + "en": "Smooth" + }, + "Code": "8.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "869d0c7b-d792-45ab-bf31-fd9f6fea3107", + "Name": { + "en": "Store, marketplace" + }, + "Code": "6.8.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86c065ea-2420-4619-82d4-1d43527b3371", + "Name": { + "en": "Distribute" + }, + "Code": "7.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86e5c062-d90f-476c-a363-264adfafedfa", + "Name": { + "en": "Move a part of the body" + }, + "Code": "7.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "86f90eff-158b-4f6d-82e9-fab136dfd141", + "Name": { + "en": "Organization" + }, + "Code": "4.2.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "878a313b-a201-444e-8bdb-67048d60c63e", + "Name": { + "en": "Ignore" + }, + "Code": "3.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "879e66bc-af29-4fe4-86e0-0047973a57d6", + "Name": { + "en": "Walk with difficulty" + }, + "Code": "7.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87bd0d45-8a94-41cb-9864-90d53a11a4b9", + "Name": { + "en": "Law" + }, + "Code": "4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87c499b3-5fab-45e0-9999-9c4fcbba1e2b", + "Name": { + "en": "Son, daughter" + }, + "Code": "4.1.9.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87c55aea-2c3f-44ce-81ec-18a153c5deb2", + "Name": { + "en": "Send" + }, + "Code": "7.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87d344ac-94cc-49d6-9878-ebc86a933033", + "Name": { + "en": "Help" + }, + "Code": "4.3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87dd09b8-689c-4a56-b3f6-846a849f71b8", + "Name": { + "en": "Correct" + }, + "Code": "3.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "87eb572c-bae2-45d8-a36a-919561b55d0d", + "Name": { + "en": "Crowd, group" + }, + "Code": "4.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "880647e5-6543-46dd-9178-8edae9272add", + "Name": { + "en": "Willing to learn" + }, + "Code": "3.2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "88269184-d033-454e-b750-559d5f53287c", + "Name": { + "en": "Move in" + }, + "Code": "7.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8841af5e-74e6-4c5d-a313-ba9aa7fdb78b", + "Name": { + "en": "Stand" + }, + "Code": "7.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8894cac9-c82a-4616-856e-0516d2ed1df7", + "Name": { + "en": "Meaning" + }, + "Code": "3.5.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "889de305-82ad-4d1a-9a97-63733ed27bfc", + "Name": { + "en": "Prepare" + }, + "Code": "6.1.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "892b66f4-5dfd-4451-a491-4c4fd2179081", + "Name": { + "en": "Bribe" + }, + "Code": "6.8.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8938e132-6534-4428-9b03-cb1f459b7cbe", + "Name": { + "en": "Basic" + }, + "Code": "8.3.7.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "896d57d4-4c25-4f0b-9985-a30974f64704", + "Name": { + "en": "Follow, be a disciple" + }, + "Code": "4.5.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "89944377-8694-4394-bced-153cc22a0e30", + "Name": { + "en": "Birth order" + }, + "Code": "4.1.9.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "89ad4e41-bf08-4d93-a4f3-f72e8cc62bed", + "Name": { + "en": "In-law" + }, + "Code": "4.1.9.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "89ba59d4-b314-4070-83bb-f9f868bcd363", + "Name": { + "en": "Draw, paint" + }, + "Code": "6.6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a0c5ed9-0041-4af5-a193-329e6c9f2717", + "Name": { + "en": "Big" + }, + "Code": "8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a11e609-e88d-4247-8c5f-224ddb20de10", + "Name": { + "en": "Clothing" + }, + "Code": "5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a5c87ad-2d15-40c2-9f15-d7942ac80261", + "Name": { + "en": "Surrender" + }, + "Code": "4.8.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a7fdd75-01dc-4d40-84ff-fa0484da3abb", + "Name": { + "en": "Violent" + }, + "Code": "4.8.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a81b9bc-9c66-4d57-a2d1-2e592604c4b1", + "Name": { + "en": "Full" + }, + "Code": "8.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8a9b5484-eda8-4194-95ca-c2e76e83ae67", + "Name": { + "en": "Pound in mortar and pestle" + }, + "Code": "5.2.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8add7f4d-333b-4b2c-9999-48a14162152b", + "Name": { + "en": "Self-controlled" + }, + "Code": "4.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8affe94d-a396-4404-a0d7-c65046e617e6", + "Name": { + "en": "Absent" + }, + "Code": "8.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b52a9d6-a07e-4ac8-8f84-6eb5ba578d97", + "Name": { + "en": "Cough, sneeze" + }, + "Code": "2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b5f9519-7301-4400-b93d-ebde4ea3def8", + "Name": { + "en": "Or, either" + }, + "Code": "9.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b6aecfb-071d-439d-9ee0-efa3c57967a0", + "Name": { + "en": "Diplomacy" + }, + "Code": "4.6.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b76f4a2-9926-4c76-8d4f-563371683219", + "Name": { + "en": "Working with chemicals" + }, + "Code": "6.6.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8b9f23f4-a147-4ea8-a13a-c5b1edc7f5e4", + "Name": { + "en": "Open" + }, + "Code": "7.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8bcc3b3d-dd0c-4838-a33a-b395f354c86f", + "Name": { + "en": "Move in a circle" + }, + "Code": "7.2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8bdf4847-903b-4af6-9553-3cfab65de516", + "Name": { + "en": "Mathematics" + }, + "Code": "8.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8be94377-a3cc-4187-a6e2-51523e953503", + "Name": { + "en": "Worker" + }, + "Code": "6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8c28c640-db5b-43e2-a1e6-b0e381962129", + "Name": { + "en": "Domesticated animal" + }, + "Code": "6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8c41d2d1-6da6-4ab8-8b29-7e226192d64e", + "Name": { + "en": "Bleed, blood" + }, + "Code": "2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8c7da1d1-d7d7-470c-b6a3-edefb0e9a4d2", + "Name": { + "en": "Shout" + }, + "Code": "3.5.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8ce6709f-f772-4638-a1aa-c132666f3563", + "Name": { + "en": "Annoyed" + }, + "Code": "3.4.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d266c98-9db3-4d3e-b204-956aa848ffa5", + "Name": { + "en": "Communication devices" + }, + "Code": "3.5.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d47c9ec-80c4-4309-9848-c453dcd71182", + "Name": { + "en": "Living things" + }, + "Code": "1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d490e91-6383-45ea-a3d7-b9c950822f98", + "Name": { + "en": "Impatient" + }, + "Code": "4.3.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d5c28b8-91be-40b0-b6c2-4d5adbb495a3", + "Name": { + "en": "Disgusted" + }, + "Code": "3.4.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8d8a7656-8f8e-467e-b72e-535db6a17c6a", + "Name": { + "en": "Amphibian" + }, + "Code": "1.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8db17eef-6c42-4ba0-9f07-a3b0e7c8f1e1", + "Name": { + "en": "Relative pronouns" + }, + "Code": "9.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8db7c016-bdc9-410b-9523-3197602358f4", + "Name": { + "en": "Written material" + }, + "Code": "3.5.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e11dd10-459b-4fb3-b876-7d80ec5f8a4d", + "Name": { + "en": "Behavior" + }, + "Code": "4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e59041e-660b-4f3e-9a11-83217417209e", + "Name": { + "en": "Move forward" + }, + "Code": "7.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e65904c-f9e9-4e12-b430-c1ddc540f1ae", + "Name": { + "en": "Relaxed posture" + }, + "Code": "7.1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8e88ed6a-000d-400a-8cd8-7b3cc7f1818c", + "Name": { + "en": "Traditional medicine" + }, + "Code": "2.5.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8ea4e0d4-71a2-4583-a1fe-f1a941af8478", + "Name": { + "en": "Suggest" + }, + "Code": "3.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f46496a-d5b2-411d-944d-9d4d4b6f2e31", + "Name": { + "en": "Refuse permission" + }, + "Code": "3.3.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f4c9266-a025-4b7a-bd67-fe0c043bf6f5", + "Name": { + "en": "Exact" + }, + "Code": "8.1.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f68d85f-70f8-4662-9b4b-1dd2900a002a", + "Name": { + "en": "Animal eating" + }, + "Code": "1.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f779877-7d86-4683-8a8b-298c7fc62815", + "Name": { + "en": "Speak poorly" + }, + "Code": "3.5.1.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8f7c9d7d-9b2a-40f3-9314-8f16f0aa31ef", + "Name": { + "en": "Fold" + }, + "Code": "8.3.1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8fb9a1a6-844d-45a5-86c7-977d3e420149", + "Name": { + "en": "Winnow grain" + }, + "Code": "6.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8fbed974-7d25-44c3-80cb-7d02e4069007", + "Name": { + "en": "Contain" + }, + "Code": "8.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "8fff393a-23c2-42bb-8da8-9b151e790904", + "Name": { + "en": "Old person" + }, + "Code": "2.6.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "902cfcbe-6e42-4e55-b2a5-9146702fc16b", + "Name": { + "en": "Guide" + }, + "Code": "7.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9060339e-d697-4c35-bc83-ced6bebfee63", + "Name": { + "en": "Enter by force" + }, + "Code": "4.3.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "909a3113-88bc-470b-8d48-7c0d37966982", + "Name": { + "en": "Solve" + }, + "Code": "3.2.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "90c06635-a12c-4cd4-a190-46925ff0f43e", + "Name": { + "en": "Examine" + }, + "Code": "2.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91913920-8a6a-4ba0-9361-d6cc9e1f3639", + "Name": { + "en": "Parts of things" + }, + "Code": "8.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91cc7e8f-522e-4ff1-b545-5a5b72f4e953", + "Name": { + "en": "Worse" + }, + "Code": "8.3.7.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91ddf495-a28b-4a32-90dc-6f997d0cd069", + "Name": { + "en": "Musical instrument" + }, + "Code": "4.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "91e95825-677a-4221-9e55-78a73bbac6ee", + "Name": { + "en": "Simple, plain" + }, + "Code": "8.3.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "928741b5-bff6-4dd1-be37-ec6e7a4eb6ca", + "Name": { + "en": "Island, shore" + }, + "Code": "1.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "929720f5-c264-49fd-b817-3e1ebff6e1de", + "Name": { + "en": "Food from vegetables" + }, + "Code": "5.2.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "92e441df-7e56-4e2c-b205-79a95800f567", + "Name": { + "en": "Compete with" + }, + "Code": "4.3.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "92ef1096-bae2-4bc5-b4b8-c16f429c4867", + "Name": { + "en": "Belong to an organization" + }, + "Code": "4.2.1.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93489181-ad8c-4a18-8dbc-fd7a9c871126", + "Name": { + "en": "Bad-tempered" + }, + "Code": "4.3.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9351d5b6-5a87-422a-9e82-ca6a0bacd3e9", + "Name": { + "en": "Calm" + }, + "Code": "3.4.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "935da513-126e-4cab-8e07-625458821181", + "Name": { + "en": "Come together, form a group" + }, + "Code": "4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93b8bd61-137a-4ebc-b12f-52fa5d2b3ea4", + "Name": { + "en": "Wind" + }, + "Code": "1.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93de2257-8303-490d-b2fe-6d1d838b08c6", + "Name": { + "en": "Care for the fingernails" + }, + "Code": "5.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "93df663c-9a5e-48aa-984f-fdf413079bc2", + "Name": { + "en": "Beneficiary of an event" + }, + "Code": "9.5.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "943eb131-2761-4c98-90a0-0bdfb0f8584d", + "Name": { + "en": "Bed" + }, + "Code": "5.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "944cf5af-469e-4b03-878f-a05d34b0d9f6", + "Name": { + "en": "Animal" + }, + "Code": "1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94af09fa-ff23-433b-a881-ceaca87d9d18", + "Name": { + "en": "Weak" + }, + "Code": "2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94cad4ca-c2ec-4ff3-b9b1-11107549941d", + "Name": { + "en": "Attribution" + }, + "Code": "9.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94f50cb8-9a59-42cc-9891-247cc3de7428", + "Name": { + "en": "Rust" + }, + "Code": "8.3.7.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94f573ff-29f0-42ae-b1d9-f882823b2935", + "Name": { + "en": "Nickname" + }, + "Code": "9.7.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "94f919c2-bf8b-4ae5-a611-8c0cd4d7a5d2", + "Name": { + "en": "Command" + }, + "Code": "4.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "95a8d932-9554-439f-afb5-ab158f2eed96", + "Name": { + "en": "Alternate" + }, + "Code": "8.4.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9612bdd6-15cb-4269-aaf9-481c7b35b5dd", + "Name": { + "en": "Speak quietly" + }, + "Code": "3.5.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "962941b2-66bd-437f-aadc-b1921bcae5b4", + "Name": { + "en": "Poison" + }, + "Code": "2.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "962cb994-0183-4ac5-94b2-82a33f1d64e4", + "Name": { + "en": "Oil" + }, + "Code": "1.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "965c6a0b-3034-4e2f-a00b-ed2eb3119a5d", + "Name": { + "en": "Imperative " + }, + "Code": "9.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "96a1ad48-1a70-425b-bd20-59294902581f", + "Name": { + "en": "Gesture" + }, + "Code": "3.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97393c87-07e2-4633-88f9-c8bf4d9b935c", + "Name": { + "en": "Hate, detest" + }, + "Code": "3.4.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "975d0109-1bba-4b0e-85b8-2c6b51c8e074", + "Name": { + "en": "Sit" + }, + "Code": "7.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97885cab-cd96-4d34-a62a-3e3daac0c165", + "Name": { + "en": "Separate, alone" + }, + "Code": "4.4.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97e1aba5-2ac1-44a3-8f18-59b2347a54a1", + "Name": { + "en": "Building materials" + }, + "Code": "6.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97ed5af8-29ca-428d-8ac5-c61b61a963fd", + "Name": { + "en": "Multicolored" + }, + "Code": "8.3.3.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "97f40359-f4e8-4545-9ba5-980b47487540", + "Name": { + "en": "Artificial" + }, + "Code": "6.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "984dc2b7-6fdd-4257-abdc-5873abb7bb70", + "Name": { + "en": "To a smaller degree" + }, + "Code": "9.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "985f099d-f38c-4957-907a-769d1a45ca10", + "Name": { + "en": "Steady, unsteady" + }, + "Code": "7.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "98830eda-3997-4f4a-9ba4-664df669e7e2", + "Name": { + "en": "Fort" + }, + "Code": "4.8.3.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "98f9ceff-e8a2-4e24-abc4-561b80bb5889", + "Name": { + "en": "Preserve" + }, + "Code": "8.3.7.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "991357dc-9f56-47ed-8790-85cbd5f9b06f", + "Name": { + "en": "Transport" + }, + "Code": "7.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "993b8955-52db-4b2a-8e9a-405a155e7b60", + "Name": { + "en": "Smelting" + }, + "Code": "6.6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "995751ef-d71b-429c-a4ee-032f5b309bd7", + "Name": { + "en": "Types of people" + }, + "Code": "4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "995ee828-2393-462b-be82-47f5b5439aaf", + "Name": { + "en": "Convex" + }, + "Code": "8.3.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99861dcb-c6ca-4e50-a19a-efadbb10c2cf", + "Name": { + "en": "Old, not new" + }, + "Code": "8.4.6.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99988f94-3aa4-4984-88df-ae228f01d3b7", + "Name": { + "en": "Other" + }, + "Code": "8.3.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99b40843-54bf-4c59-ae1d-d7146cebec48", + "Name": { + "en": "Lucky" + }, + "Code": "4.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99b5b80a-a2d6-4820-adfc-1da72528c272", + "Name": { + "en": "Same" + }, + "Code": "8.3.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99c51a2c-ad49-48a6-bb0b-f059da745ec4", + "Name": { + "en": "Recipient (of a patient)" + }, + "Code": "9.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99d0d129-b427-4468-b4c6-91005be63e18", + "Name": { + "en": "Growing tobacco" + }, + "Code": "6.2.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99e38da1-91ad-4dff-a68f-972607936e50", + "Name": { + "en": "Not yet" + }, + "Code": "8.4.6.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "99ee1558-34b2-4a1b-bfd2-eb4ccbfe7728", + "Name": { + "en": "Reliable" + }, + "Code": "4.3.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a456463-3c71-4f9a-8117-dc2fcb087bd3", + "Name": { + "en": "Tend a fire" + }, + "Code": "5.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a7604b4-d42f-44b7-9aef-47847dc93f0b", + "Name": { + "en": "Suffer" + }, + "Code": "4.4.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a8f2f6a-a039-45dd-80d3-d1e0911907b2", + "Name": { + "en": "Tax" + }, + "Code": "6.8.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9a9c7174-4148-43c2-875c-0d2f884a5fe3", + "Name": { + "en": "Untidy" + }, + "Code": "4.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ac6dec6-1b8f-463c-8239-e2acb93586b1", + "Name": { + "en": "Unity" + }, + "Code": "4.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9afb64d6-feae-4490-9b7e-95768627f643", + "Name": { + "en": "Make an appeal" + }, + "Code": "4.8.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b0fef63-5935-447d-801a-bb02dd6212bb", + "Name": { + "en": "Admire someone" + }, + "Code": "4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b158c9e-9ba5-4be2-a9a1-77ef888a3b06", + "Name": { + "en": "Pure, unmixed" + }, + "Code": "7.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b267cc1-983c-407a-98d2-1e27add6292c", + "Name": { + "en": "Tie" + }, + "Code": "7.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b476afd-58c2-46a2-8294-449ac4aad3a9", + "Name": { + "en": "Place of worship" + }, + "Code": "4.9.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9b9ccd76-76d6-457b-93d2-c4d242a395f8", + "Name": { + "en": "Renounce claim, concede" + }, + "Code": "4.8.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bab95c4-9773-4894-9cb9-d7ad39378b45", + "Name": { + "en": "Occupation" + }, + "Code": "6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bb173c6-cf38-47cd-803f-ebdf964ca2fc", + "Name": { + "en": "Prosperity, trouble" + }, + "Code": "4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bb6f1ed-7170-4caa-a14c-747fd95ca30e", + "Name": { + "en": "Sugar" + }, + "Code": "5.2.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9bf21458-0acc-4d8d-ba9a-7b9fb6b8ee0b", + "Name": { + "en": "Hypocrite" + }, + "Code": "4.3.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9c21f9bd-a7e0-4989-99f1-7fa2853ab73c", + "Name": { + "en": "Cut hair" + }, + "Code": "5.4.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9cae4ee3-03cf-46f7-9475-21d66c93ae04", + "Name": { + "en": "Food from fruit" + }, + "Code": "5.2.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9cfe4c5a-80d4-4b31-ba89-79b2e3d28a1c", + "Name": { + "en": "Finger, toe" + }, + "Code": "2.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d428e57-e125-4575-b165-9bc6fd4ec507", + "Name": { + "en": "Persuade" + }, + "Code": "3.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d6cbe74-93d6-41fb-b7e2-cc30adb28187", + "Name": { + "en": "Move up" + }, + "Code": "7.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d79be9a-f21e-4189-be39-779db79da027", + "Name": { + "en": "Wash dishes" + }, + "Code": "5.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9d865347-6656-4ab7-8613-bf2e8bc53aa7", + "Name": { + "en": "Injure" + }, + "Code": "2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e2b0c61-304e-4cad-9708-792bfde880b4", + "Name": { + "en": "Stop fighting" + }, + "Code": "4.8.4.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e587127-4f2c-4796-9c67-d37332b57303", + "Name": { + "en": "Peer group" + }, + "Code": "2.6.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e6d7c69-788c-4d40-8584-32f185e91932", + "Name": { + "en": "Hunt and fish" + }, + "Code": "6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e775794-3dda-4942-b6af-087ffd57f342", + "Name": { + "en": "Side" + }, + "Code": "8.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9e98c76f-6c1c-4b7d-8f71-38f9f0e8750e", + "Name": { + "en": "Uproot plants" + }, + "Code": "6.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ec62ffe-69be-4b9b-944c-29a0f4f133db", + "Name": { + "en": "Accident" + }, + "Code": "4.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ed42115-8532-4f99-b0c0-36abfe9db652", + "Name": { + "en": "Low status" + }, + "Code": "4.5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9ed66151-c144-4e5e-a3a2-f5d08b0c9bb8", + "Name": { + "en": "Backward" + }, + "Code": "8.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9efa7949-de15-499a-b382-4560e06c4fb4", + "Name": { + "en": "Say" + }, + "Code": "3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f0bcab1-8256-47a1-853c-408f025e04e7", + "Name": { + "en": "Tell a lie" + }, + "Code": "3.5.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f3b4cab-dc8a-430e-88f3-d3002df64fb8", + "Name": { + "en": "Posture" + }, + "Code": "7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f6754ae-a429-4bba-8f6f-2cd4ea0cbe45", + "Name": { + "en": "Virginity" + }, + "Code": "2.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f792202-8023-4ef3-b269-5ae4b6908a0b", + "Name": { + "en": "Offering, sacrifice" + }, + "Code": "4.9.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f868391-f1df-4682-bdcb-2c2c799006cf", + "Name": { + "en": "Remember" + }, + "Code": "3.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f8b8c01-f790-469f-bc37-dece6227e276", + "Name": { + "en": "At the same time" + }, + "Code": "8.4.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9f91cd53-8b9e-4d76-82e4-5ede39112322", + "Name": { + "en": "Goal (of movement)" + }, + "Code": "9.5.1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9fc25175-3b4a-4248-bc7f-b86012ec584f", + "Name": { + "en": "Fuel" + }, + "Code": "5.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "9fcae400-ce8f-4e30-9516-97ab794c30a9", + "Name": { + "en": "Pardon, release" + }, + "Code": "4.7.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a01a1900-fc1f-462e-ba3d-ae822711b034", + "Name": { + "en": "Mental illness" + }, + "Code": "2.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a03663ca-0c66-4570-be2d-b40105cc4400", + "Name": { + "en": "Yes" + }, + "Code": "9.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a0d073df-d413-4dfd-9ba1-c3c68f126d90", + "Name": { + "en": "Planet" + }, + "Code": "1.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a105e31c-1268-4fc2-8655-838d34860ece", + "Name": { + "en": "Names of oceans and lakes" + }, + "Code": "9.7.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a139558a-8df9-4fc9-bd3e-816a1408ba7f", + "Name": { + "en": "Personally" + }, + "Code": "9.2.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a1959b00-9702-4b45-ac46-93f18d3bc5e6", + "Name": { + "en": "Breathe, breath" + }, + "Code": "2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a197dbfb-20e4-40c2-9c76-6abbeb1a9b12", + "Name": { + "en": "Insurance" + }, + "Code": "6.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a19e219a-6cc1-4057-a8d9-18554ae88de1", + "Name": { + "en": "Care for a baby" + }, + "Code": "2.6.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a1ce19c4-d12c-46da-a718-6d03949b3db1", + "Name": { + "en": "Hunt" + }, + "Code": "6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a1dd1d94-fa8e-4325-9f72-b39bcac69755", + "Name": { + "en": "Make peace" + }, + "Code": "4.8.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a220a734-af03-4de3-8d05-369a3cad14cf", + "Name": { + "en": "Household decoration" + }, + "Code": "5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2240259-608b-40f1-990a-7f8e00ef1d07", + "Name": { + "en": "Spread, smear" + }, + "Code": "7.3.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a22d5c1c-daed-4e7a-8243-493f2d841314", + "Name": { + "en": "Do intensely" + }, + "Code": "9.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2508183-7ea5-434e-a773-00d53087d27b", + "Name": { + "en": "Mental state" + }, + "Code": "3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2a3e21a-819c-4400-b2e6-e6c1a0a0ded3", + "Name": { + "en": "Despise someone" + }, + "Code": "4.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2ae0c29-df1c-486d-a44b-96fcc4e0aa8c", + "Name": { + "en": "Give up" + }, + "Code": "6.1.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2bbf179-8d38-4d2e-84cd-0e00bb6c74f3", + "Name": { + "en": "Crawl" + }, + "Code": "7.2.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a2ce1453-9832-447c-9481-70c9e2da4227", + "Name": { + "en": "Irrigate" + }, + "Code": "6.2.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a30e0391-ea64-4938-9eca-023c351d60af", + "Name": { + "en": "Disclose" + }, + "Code": "3.5.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a31c85df-02a9-4dd8-a094-0f07a0afbcca", + "Name": { + "en": "Remove, take apart" + }, + "Code": "7.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a345d090-14e2-4897-9186-debcb05ab27c", + "Name": { + "en": "Next" + }, + "Code": "8.4.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a36b3354-8598-4228-b779-c7c922b1e61d", + "Name": { + "en": "Smuggle" + }, + "Code": "6.8.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3ba10f3-66e3-4ad5-8057-453b8941e497", + "Name": { + "en": "War" + }, + "Code": "4.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3ba23d2-618e-4618-af18-9befae2f888b", + "Name": { + "en": "Grind" + }, + "Code": "7.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3bc1fbd-9f2f-4a9d-ae6e-7b02da8a05b4", + "Name": { + "en": "Poking tool" + }, + "Code": "6.7.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3ca2a31-259e-4e15-9696-75b0c81886e9", + "Name": { + "en": "Straight" + }, + "Code": "8.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3d95c6a-4b0b-4af0-aca8-addd042becd2", + "Name": { + "en": "Play, fun" + }, + "Code": "4.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3e905b8-107b-4311-bb50-0abe151131b3", + "Name": { + "en": "Give permission" + }, + "Code": "3.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3f1d702-8ca1-457a-a569-eb6fdf696bbe", + "Name": { + "en": "Approve of something" + }, + "Code": "3.2.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3fb18fd-befb-493f-8a19-760883ed9697", + "Name": { + "en": "Wedged in, stuck" + }, + "Code": "8.2.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a3fe0ca2-64fe-44db-ac3f-14513385bc25", + "Name": { + "en": "Go to sleep" + }, + "Code": "5.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a42aa891-e4fd-489e-b573-b9d20dfc5c2a", + "Name": { + "en": "Phrase conjunctions" + }, + "Code": "9.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a42db5b4-6317-4d3f-beff-cb92dbaca914", + "Name": { + "en": "Learn" + }, + "Code": "3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4627ca8-f27b-44ce-91f5-cc992332bc86", + "Name": { + "en": "Husband, wife" + }, + "Code": "4.1.9.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4958dd9-03cc-4863-ab76-cd0682060cb0", + "Name": { + "en": "Praise" + }, + "Code": "3.5.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4b03891-c2df-4d72-bbdc-13bc8d4eceba", + "Name": { + "en": "Area" + }, + "Code": "8.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4f4943f-ad94-4736-bf5d-f8a3cb15919f", + "Name": { + "en": "Noun affixes" + }, + "Code": "9.2.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a4fa9f98-73c6-4c3e-9dad-d73d2634be3b", + "Name": { + "en": "Verbal tradition" + }, + "Code": "3.5.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a57185c3-0cb5-41fa-94bf-da0c9edac600", + "Name": { + "en": "Multiples" + }, + "Code": "8.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a6616a09-df51-4ca6-850f-733ee73c8750", + "Name": { + "en": "Working in the sea" + }, + "Code": "6.6.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a6797fd1-e368-422b-9710-96e0af39552d", + "Name": { + "en": "Meet a standard" + }, + "Code": "4.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a72515ec-998d-4b48-bd69-c67cf9245abc", + "Name": { + "en": "Waste" + }, + "Code": "6.1.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a72ca6f7-e389-408a-8276-fec4d60a3a56", + "Name": { + "en": "Be" + }, + "Code": "9.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a730d0b4-b6db-45ac-bf6e-cefc96ae3fbb", + "Name": { + "en": "Deceive" + }, + "Code": "4.3.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a755eaba-fce9-4a8b-b9cf-b3970a49f464", + "Name": { + "en": "Expensive" + }, + "Code": "6.8.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7568031-43e3-4cf9-b162-ac2fe74125f1", + "Name": { + "en": "Opportunity" + }, + "Code": "6.1.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a758718d-6e90-471d-acde-a637ba9ff9eb", + "Name": { + "en": "Sell" + }, + "Code": "6.8.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a764174f-ccb7-48b1-add7-158bc89a5e81", + "Name": { + "en": "Fail" + }, + "Code": "6.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a781d57d-174d-47a6-b6a1-ae635a13df84", + "Name": { + "en": "Family, clan" + }, + "Code": "4.1.9.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7824686-a3f3-4c8a-907e-5d841cf846c8", + "Name": { + "en": "Shine" + }, + "Code": "8.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7b32d1b-1be7-43ec-94a1-fc7bdd826168", + "Name": { + "en": "Particles" + }, + "Code": "9.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7dae83a-dce6-47ea-ab3f-ac8a3af4cce9", + "Name": { + "en": "Country" + }, + "Code": "4.6.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a7e4f8a8-3fe3-4c86-85df-059f8983df26", + "Name": { + "en": "Use a person" + }, + "Code": "4.3.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a80f12aa-c30d-4892-978a-b076985742d5", + "Name": { + "en": "Torso" + }, + "Code": "2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a84a5ffc-006c-4d29-b71f-5215cc40a5a8", + "Name": { + "en": "Discipline, train" + }, + "Code": "4.5.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8568a16-4c3b-4ce4-84a7-b8b0c6b0432f", + "Name": { + "en": "See" + }, + "Code": "2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a86b2e14-1299-4f59-842c-c4c5a401aace", + "Name": { + "en": "Recognize" + }, + "Code": "3.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a894d991-d5da-45a6-9c62-009133257f36", + "Name": { + "en": "Symptom of disease" + }, + "Code": "2.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8ae0ee7-56ca-4bdf-bd9a-c56da3ff9254", + "Name": { + "en": "Extort money" + }, + "Code": "6.8.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8b2abb3-d09f-4ff1-89ce-6ae99f16401c", + "Name": { + "en": "Set self apart" + }, + "Code": "4.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8b3fa0c-077e-4c0d-b4cc-36dcfbdcb4d4", + "Name": { + "en": "Change color" + }, + "Code": "8.3.3.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8b9e892-df3e-44c4-8c68-7a0f7f4468bb", + "Name": { + "en": "Rodent" + }, + "Code": "1.6.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a8bfd196-8b54-4084-b11a-fe6e8bc5da4c", + "Name": { + "en": "Gather wild plants" + }, + "Code": "6.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a90e47fb-667c-46f7-beab-5ec4e9e6edb5", + "Name": { + "en": "Caution" + }, + "Code": "4.4.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9470e53-ee43-4c87-9cce-09cc4fa6b1c1", + "Name": { + "en": "Path (of movement)" + }, + "Code": "9.5.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9625460-7162-447c-b400-84fbc5744f1b", + "Name": { + "en": "Say farewell" + }, + "Code": "3.5.1.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a977c4b6-1004-448f-b6b0-daf5ce87d76d", + "Name": { + "en": "High status" + }, + "Code": "4.5.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9fbc056-3134-41af-baf4-9f63fa5bd5ae", + "Name": { + "en": "Drip" + }, + "Code": "1.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "a9fe3347-12ae-4624-b55e-45ea42cdbf9b", + "Name": { + "en": "Trim plants" + }, + "Code": "6.2.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa0f165d-3013-4a0c-b68c-14ea317013f9", + "Name": { + "en": "Compose music" + }, + "Code": "4.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa2b547c-2c82-4ce0-a1b3-35fa809d666c", + "Name": { + "en": "Narrow" + }, + "Code": "8.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa5658da-8926-4519-83a5-d451dc5a6b49", + "Name": { + "en": "Egg dishes" + }, + "Code": "5.2.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa57936d-f8a9-4603-8c3d-27abccd13531", + "Name": { + "en": "Nature, environment" + }, + "Code": "1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aa8d812b-7c13-414a-ad02-a4240d2cef68", + "Name": { + "en": "Come" + }, + "Code": "7.2.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aab82dc7-de9f-44b3-845e-0c926f47cfb6", + "Name": { + "en": "Case" + }, + "Code": "9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aabc32ee-46e4-469f-93ad-673373cb2e8d", + "Name": { + "en": "Attendant circumstances" + }, + "Code": "9.5.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aad7c9b0-aff3-4684-86d5-657a20e39288", + "Name": { + "en": "Authority" + }, + "Code": "4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aadefee4-ed14-4753-952e-e945f2972e37", + "Name": { + "en": "Part" + }, + "Code": "8.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aaf63abd-c8a5-4546-8fc1-a51c6e607683", + "Name": { + "en": "Hope" + }, + "Code": "3.2.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aaf9d375-f0a0-4c7b-bbf8-3c7ffd4f5a52", + "Name": { + "en": "Degree" + }, + "Code": "9.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab127348-7f98-43e5-801d-01241ecdb517", + "Name": { + "en": "Lower something" + }, + "Code": "7.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8ca07c-b23c-43dc-b705-7fe34ddf6d4d", + "Name": { + "en": "Exaggerate" + }, + "Code": "3.5.1.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8d8dc9-eeb7-41ff-93a9-cbbd50b89a73", + "Name": { + "en": "Can\u0027t" + }, + "Code": "9.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8f12fb-57b0-4d61-8ae0-50d7cbc412df", + "Name": { + "en": "Snow, ice" + }, + "Code": "1.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ab8f5391-ad8b-42dc-a43c-22590a09ce77", + "Name": { + "en": "Islam" + }, + "Code": "4.9.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aba3f7f1-9e13-4b48-acbb-3bf6d6bfa0e8", + "Name": { + "en": "Weigh" + }, + "Code": "8.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac187298-85e8-43ed-ba85-cc06a62c08ba", + "Name": { + "en": "Animal life cycle" + }, + "Code": "1.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac2e424b-6aee-4031-8864-7b3f4a6fb5a3", + "Name": { + "en": "True" + }, + "Code": "3.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac4a936e-6c05-4e73-8d40-dfe4223b47fa", + "Name": { + "en": "Card game" + }, + "Code": "4.2.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac527685-f31d-42f3-81bd-97221a01c7ef", + "Name": { + "en": "Pattern, model" + }, + "Code": "8.3.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac550d1f-ec74-46a8-bf81-7832ace533ee", + "Name": { + "en": "Popular" + }, + "Code": "3.4.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac7de73d-0059-4f35-9317-462a1813edba", + "Name": { + "en": "Grind flour" + }, + "Code": "5.2.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ac9ee84f-f0c7-48b3-8e5a-b4c967112394", + "Name": { + "en": "Quality" + }, + "Code": "8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "acddd447-bf8a-4d74-8501-7defb0525cc0", + "Name": { + "en": "Animal diseases" + }, + "Code": "6.3.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "acf5e294-d169-45c1-a9d3-960536e018cc", + "Name": { + "en": "Sound" + }, + "Code": "2.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ad4d28f0-5cbb-4b82-b736-9b41860a248c", + "Name": { + "en": "Demonstrative pronouns" + }, + "Code": "9.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ad56dc48-9c39-43f6-9386-f7df80d93cd4", + "Name": { + "en": "Insist" + }, + "Code": "3.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ad7cc381-1dc6-4fc2-94a4-acd5bf7a11da", + "Name": { + "en": "Certainly, definitely" + }, + "Code": "9.4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "adde4a66-9040-47a9-91ab-327934a2e97e", + "Name": { + "en": "Working with wood" + }, + "Code": "6.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "adf6ad2b-7af9-4bd8-a7b4-f864b9dad86d", + "Name": { + "en": "Initiation" + }, + "Code": "2.6.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "adfc2bcd-6b8e-486c-b105-29b286b61cc0", + "Name": { + "en": "Get" + }, + "Code": "7.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ae04020a-3bb2-4672-ad75-71ce72d461ea", + "Name": { + "en": "Sentence conjunctions" + }, + "Code": "9.2.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ae6f73ab-432d-42e8-aa1a-c848652a13f0", + "Name": { + "en": "Woman" + }, + "Code": "2.6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aeb20093-26ba-492b-a69d-af18d5ba51eb", + "Name": { + "en": "Show affection" + }, + "Code": "4.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aec8c246-0ef7-414a-94a6-b9fdd6812a7c", + "Name": { + "en": "Social class" + }, + "Code": "4.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aecf2aad-b7a4-444f-9b13-64bc534126d2", + "Name": { + "en": "Bad" + }, + "Code": "8.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aed6c1ec-abbe-47e3-a6cc-a99ecff3b825", + "Name": { + "en": "Shiny" + }, + "Code": "8.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af0909a5-928a-4421-baaa-f33b14302714", + "Name": { + "en": "Part of speech" + }, + "Code": "9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af399519-5d7c-4100-9c79-8162cb4641cb", + "Name": { + "en": "Slow" + }, + "Code": "8.4.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af4ac058-d4b3-4c7a-ade8-6af762d0486d", + "Name": { + "en": "Decide, plan" + }, + "Code": "3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af5bcf27-56e2-4072-b321-30a31b58af78", + "Name": { + "en": "Growing fruit" + }, + "Code": "6.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af62c8f6-43c7-4c44-a0d1-ab9bcff8e26f", + "Name": { + "en": "Imitate" + }, + "Code": "8.3.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af6fe2d6-576d-473f-8a32-583779d95d1d", + "Name": { + "en": "Sure" + }, + "Code": "9.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "af700054-258a-458a-9e38-e90397833e51", + "Name": { + "en": "Write" + }, + "Code": "3.5.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afa77a2a-8b0f-4a39-91bc-040e90ffbb3a", + "Name": { + "en": "Happy" + }, + "Code": "3.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afc25fbb-9060-4af2-8225-3fddbab2227d", + "Name": { + "en": "Patient" + }, + "Code": "4.3.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afdd8b8e-9502-4d06-94ee-e79815b65750", + "Name": { + "en": "Almost" + }, + "Code": "8.1.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "afe7cc92-e0ad-40d9-be56-aa12d2693a3f", + "Name": { + "en": "Day" + }, + "Code": "8.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "aff720bd-fb3d-4f85-bbc4-41d5fc5b83f8", + "Name": { + "en": "Celebrate" + }, + "Code": "4.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0156a7c-928a-4cc8-a021-4af4dc74fead", + "Name": { + "en": "Unusual" + }, + "Code": "8.3.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b015f460-faeb-4aa5-b453-9e5e9ae061fe", + "Name": { + "en": "Old fashioned" + }, + "Code": "8.4.6.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b035dcf9-1dd0-4fb3-bd04-7c8945e92cdf", + "Name": { + "en": "Put in back" + }, + "Code": "7.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b044e890-ce30-455c-aede-7e9d5569396e", + "Name": { + "en": "Star" + }, + "Code": "1.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b08424b7-a2f1-4a0e-82d1-665249e12cfc", + "Name": { + "en": "Arrive" + }, + "Code": "7.2.3.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0905fa9-2f90-410b-8eb5-7c7944c4f0f9", + "Name": { + "en": "Sexual immorality" + }, + "Code": "2.6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b09205d4-fbb4-4bcd-94ef-f8d83e298462", + "Name": { + "en": "Calm, rough" + }, + "Code": "1.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0a9a631-e0dc-47d4-a762-e9a627732218", + "Name": { + "en": "Submit to authority" + }, + "Code": "4.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0b161b2-e773-4b04-99eb-23778fd2aa80", + "Name": { + "en": "Tear, rip" + }, + "Code": "7.8.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0e2635e-47c4-4995-942b-07f6635faf6f", + "Name": { + "en": "Beekeeping" + }, + "Code": "6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0e3486c-bd3d-4b5c-be9a-40cd2c0ce2a1", + "Name": { + "en": "Plait hair" + }, + "Code": "5.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b0e5042d-1ade-4fb1-a6fd-9a165f5c4763", + "Name": { + "en": "Kidnap" + }, + "Code": "4.3.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b14db9f4-5e1d-4a2b-bec0-0d6bcb5b1a31", + "Name": { + "en": "Fall" + }, + "Code": "7.2.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b158fe11-5af2-4467-bbc0-cc1aee766592", + "Name": { + "en": "Happen" + }, + "Code": "9.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b1688009-474d-4e2e-a137-acc1e32a435f", + "Name": { + "en": "Thick" + }, + "Code": "8.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b16de6a0-71dd-448c-9ffa-49f6646a5219", + "Name": { + "en": "Run" + }, + "Code": "7.2.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b1756402-83c4-476d-8f55-010a0a10b5d9", + "Name": { + "en": "Make profit" + }, + "Code": "6.8.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b21ace5f-9307-4bdc-b103-9fdf14a5655e", + "Name": { + "en": "Week" + }, + "Code": "8.4.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2830b72-c642-484f-9485-24682aa11ed8", + "Name": { + "en": "Omen, divination" + }, + "Code": "4.9.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b285bc3b-ba9f-4160-8e79-81dd43dfdbaa", + "Name": { + "en": "Unemployed, not working" + }, + "Code": "6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2bb077a-92c8-4e54-8dfa-c89efd60b82d", + "Name": { + "en": "Poultry raising" + }, + "Code": "6.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2fa4109-1165-4c1f-9613-c5b2d349d2d4", + "Name": { + "en": "Speak a lot" + }, + "Code": "3.5.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2fd2d29-1389-4114-91a8-15b8d9742794", + "Name": { + "en": "Dependency relations" + }, + "Code": "9.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b2fee662-c451-4d32-aca5-a913ca0b2164", + "Name": { + "en": "Holding tool" + }, + "Code": "6.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b33da469-fefa-44f3-b35c-d70411bfe7e1", + "Name": { + "en": "Marketing" + }, + "Code": "6.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b34dc5c9-3367-4bfc-b077-cd014250dc5c", + "Name": { + "en": "Interjections" + }, + "Code": "9.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3745f13-3632-4f13-b0cc-a74c51f8f2a1", + "Name": { + "en": "Earthquake" + }, + "Code": "1.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3be00a9-41a4-42ae-ba51-320b5000a563", + "Name": { + "en": "Underground" + }, + "Code": "1.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3d3dd7d-0cb1-4c25-bcae-cc402fcfa3ea", + "Name": { + "en": "Fast, not eat" + }, + "Code": "5.2.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b3fb9960-8f42-43bc-9595-dfb3e04f5bfd", + "Name": { + "en": "Substitute" + }, + "Code": "7.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b40637e5-be76-4a82-96bb-c55306ee293d", + "Name": { + "en": "Girlfriend, boyfriend" + }, + "Code": "4.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b43fae8e-6b19-42ed-98cd-d363174b9cf8", + "Name": { + "en": "Small" + }, + "Code": "8.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b47d2604-8b23-41e9-9158-01526dd83894", + "Name": { + "en": "World" + }, + "Code": "1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4aa4bbd-8abf-4503-96e4-05c75efd23d5", + "Name": { + "en": "Weather" + }, + "Code": "1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4c1e05f-f741-45cc-8d13-a1f60f474325", + "Name": { + "en": "Markers expecting an affirmative answer" + }, + "Code": "9.4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4dc89dc-3811-4d45-b0ee-0b71e28305cc", + "Name": { + "en": "Use up" + }, + "Code": "6.1.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4e6c077-4f5e-44f3-8868-1f7ae3486585", + "Name": { + "en": "Eating utensil" + }, + "Code": "5.2.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4fc91fe-68f7-45a6-8863-75bba1029bef", + "Name": { + "en": "Take by force" + }, + "Code": "6.8.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b4fe4698-54a2-4bcd-9490-e07ee1ee97af", + "Name": { + "en": "Cry, tear" + }, + "Code": "3.5.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b50f39cb-3152-4d56-9ddc-4b98f763e76a", + "Name": { + "en": "Want" + }, + "Code": "3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b536622c-80a3-4b31-9d22-4ed2fb76324d", + "Name": { + "en": "City" + }, + "Code": "4.6.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b53deac1-26c7-4fe9-9109-8496e248e8c7", + "Name": { + "en": "Election" + }, + "Code": "4.6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5499348-b8ca-4fae-8486-b23863560ae5", + "Name": { + "en": "Chance" + }, + "Code": "4.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b553e989-2b2a-4b1e-a987-ae75f3862501", + "Name": { + "en": "Not care" + }, + "Code": "4.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5700ad7-36a1-4608-8789-8f84007244f8", + "Name": { + "en": "Tired" + }, + "Code": "2.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b59f6fc4-629d-4e62-8673-cf62f8ad8197", + "Name": { + "en": "Mediocre" + }, + "Code": "8.3.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5aa5873-4c66-4d2d-935a-18e0ab231dbb", + "Name": { + "en": "Clumsy" + }, + "Code": "7.2.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5b36c31-c56d-44b9-933c-fe0e62d80c25", + "Name": { + "en": "Share with" + }, + "Code": "4.3.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b5d679e3-506a-4994-81a2-be48a698d945", + "Name": { + "en": "Meet for the first time" + }, + "Code": "4.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b602c0e1-5398-4cc9-850b-7cfb5c592d13", + "Name": { + "en": "Blind" + }, + "Code": "2.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b60bf544-7774-4623-8c67-19b32b53dea2", + "Name": { + "en": "God" + }, + "Code": "4.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b62b5fc7-1b20-4f63-8459-8eb4991839ee", + "Name": { + "en": "Crack" + }, + "Code": "7.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b632b00b-b03f-4549-8e02-6402c05a4f06", + "Name": { + "en": "Obey" + }, + "Code": "4.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6686c7c-39de-40b5-adee-67fc7dc54374", + "Name": { + "en": "Cardinal numbers" + }, + "Code": "8.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6a40216-fe93-4b0f-b85b-5622327031d0", + "Name": { + "en": "Egg" + }, + "Code": "1.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6b73d41-e23f-4f22-b01e-7e75f4115fce", + "Name": { + "en": "Purpose, goal" + }, + "Code": "3.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6baa8bf-7691-431d-8715-3937372b9da0", + "Name": { + "en": "Exempt" + }, + "Code": "3.3.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6e45998-9f6a-4b19-9cda-62410a11afa2", + "Name": { + "en": "Sorcery" + }, + "Code": "4.9.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6e9b9c9-632b-48e7-99f7-fa53ebcb3bc5", + "Name": { + "en": "Knitting" + }, + "Code": "6.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b6ead5e6-dab5-4941-9017-d03452182709", + "Name": { + "en": "Expert" + }, + "Code": "6.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b760a3a7-ea7f-4a4b-a4b5-81752f2ca158", + "Name": { + "en": "Work poorly" + }, + "Code": "6.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7662b2b-e57c-400b-8ef6-6fb612f5ee9f", + "Name": { + "en": "Growing bananas" + }, + "Code": "6.2.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7801f6e-683b-4d5d-9bab-57f6e593db8c", + "Name": { + "en": "List" + }, + "Code": "3.5.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b790470f-ed4e-42ac-932d-cd15ef701b03", + "Name": { + "en": "Religious purification" + }, + "Code": "4.9.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b79f8775-d8d0-4aa5-b4ab-917f6f3d6c13", + "Name": { + "en": "Chase away" + }, + "Code": "7.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7b0819b-eceb-4f16-ae6d-2298c4df1e6f", + "Name": { + "en": "On time" + }, + "Code": "8.4.5.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7ed2482-6883-4a02-a992-e86c2573cc74", + "Name": { + "en": "Put down" + }, + "Code": "7.3.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7f058af-9ce6-4dd0-b555-00526975300e", + "Name": { + "en": "Special" + }, + "Code": "7.5.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b7f4fd44-fa17-46a8-bdaf-d3399d6cb0ac", + "Name": { + "en": "Lose, misplace" + }, + "Code": "7.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b82c7ba0-9f4e-44da-bcd0-d30f5b224de5", + "Name": { + "en": "Medicine" + }, + "Code": "2.5.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b844d2f8-d3ef-4605-b038-8bc0a2cff0af", + "Name": { + "en": "Tall" + }, + "Code": "8.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8d2fdb9-22ea-4040-8abb-aeeff0399f23", + "Name": { + "en": "Kill" + }, + "Code": "2.6.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8df8589-d03c-4e6d-bbeb-4f24fbf6a1dc", + "Name": { + "en": "Vertical" + }, + "Code": "8.3.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8e633f7-ca67-40cb-84e7-8b42887d161b", + "Name": { + "en": "Philosophy" + }, + "Code": "3.2.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8e66bb4-140c-45b4-89ce-d9a77b9e5d21", + "Name": { + "en": "Names of cities" + }, + "Code": "9.7.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8f59ddd-48de-4b3d-af47-687c9237ccd9", + "Name": { + "en": "Have authority" + }, + "Code": "4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b8fc54d8-afd2-4ef8-b811-efb8aa7064db", + "Name": { + "en": "Beside" + }, + "Code": "8.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b917ffec-ab7e-496a-bfe4-35c567fa0785", + "Name": { + "en": "Working with electricity" + }, + "Code": "6.6.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b93bdfa4-486c-44a0-8266-557ccdc78b31", + "Name": { + "en": "What fires produce" + }, + "Code": "5.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b97531df-8256-4796-8335-f69753a8f2e3", + "Name": { + "en": "Idol" + }, + "Code": "4.9.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b9a4b336-080a-4973-a7e3-a9af10fc347c", + "Name": { + "en": "Stomach" + }, + "Code": "2.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "b9c752a4-66be-493c-8955-cfa5324a54c1", + "Name": { + "en": "Practice religion" + }, + "Code": "4.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba06de9e-63e1-43e6-ae94-77bea498379a", + "Name": { + "en": "Person" + }, + "Code": "2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba1e8d2b-7d3e-4b65-a9be-ee1a4063c796", + "Name": { + "en": "Worried" + }, + "Code": "3.4.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba8d18bd-2556-47a0-aa33-3ebef3e90814", + "Name": { + "en": "Record" + }, + "Code": "3.5.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ba98f891-77df-4910-8657-38f4ba79d3a5", + "Name": { + "en": "Reward" + }, + "Code": "4.7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bafa274e-8bf0-4cf7-8ce7-2c28293db809", + "Name": { + "en": "Door" + }, + "Code": "6.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb29001e-97f3-4bb4-8946-7c33b9835fcb", + "Name": { + "en": "Brother, sister" + }, + "Code": "4.1.9.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb2a112f-af6f-4a54-bbf0-ba7b8289e58b", + "Name": { + "en": "Attract" + }, + "Code": "3.4.1.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb4e0a69-db20-4757-beff-5dcb1c5e0f92", + "Name": { + "en": "Oppress" + }, + "Code": "4.7.9.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bb8ddf5f-707d-46c0-aff4-45683d26fd68", + "Name": { + "en": "Primary cases" + }, + "Code": "9.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bba30b56-6cd8-4542-81ab-f983cf1354bd", + "Name": { + "en": "Far" + }, + "Code": "8.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbb21324-089d-4368-a2ac-37c6bbfcbffc", + "Name": { + "en": "Both" + }, + "Code": "8.1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbb897b5-f09b-4263-9f81-826ca61084f1", + "Name": { + "en": "Cleaning" + }, + "Code": "5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbc5b3a2-4c6e-4d07-849b-4d616615a794", + "Name": { + "en": "Past" + }, + "Code": "8.4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bbd3c3f1-7387-4ec6-a75d-66c1355a94ef", + "Name": { + "en": "Hoofed animals" + }, + "Code": "1.6.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc61bd8d-295b-4965-a183-703d21a56996", + "Name": { + "en": "Title, name of honor" + }, + "Code": "4.5.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc8d0ad4-6ebf-4fa0-bc7e-60e8ec9c43db", + "Name": { + "en": "Eye" + }, + "Code": "2.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc96b3e3-6185-4925-b79e-8f0f9555bfb7", + "Name": { + "en": "Language" + }, + "Code": "3.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bc9d763c-e4fe-48ab-ad44-87a36f6cc06f", + "Name": { + "en": "Criticize" + }, + "Code": "3.5.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bca1af45-7621-43c0-9152-fac0018e5319", + "Name": { + "en": "Drive along" + }, + "Code": "7.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bcb1252c-7cb4-4fbc-b83f-e5f9c65b4afb", + "Name": { + "en": "Next to" + }, + "Code": "8.5.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bce3f390-452c-4ca9-8c36-5fbcfd6b4755", + "Name": { + "en": "Change behavior" + }, + "Code": "4.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd002dfa-e842-47d6-b11b-3c213cbf133a", + "Name": { + "en": "Fetus" + }, + "Code": "2.6.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd31529c-ab67-419b-89a4-949aee8b3b11", + "Name": { + "en": "Act harshly" + }, + "Code": "4.7.9.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd4a2527-f66c-4f48-922e-8b180bba8ef6", + "Name": { + "en": "Household equipment" + }, + "Code": "5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd7d0c9c-791e-4c34-b9ed-ebddad8f9724", + "Name": { + "en": "Judge, render a verdict" + }, + "Code": "4.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd9bb361-3c12-4c70-8098-40b0df9824ce", + "Name": { + "en": "Lack respect" + }, + "Code": "4.5.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bd9de99f-6a92-47ee-b6bc-e9877ea21202", + "Name": { + "en": "Find" + }, + "Code": "7.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bdaecf2f-d0fa-49f7-891e-bcb0a31ae630", + "Name": { + "en": "After" + }, + "Code": "8.4.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bddc70ea-d46f-4e4b-83a1-a47bea858dd6", + "Name": { + "en": "Front" + }, + "Code": "8.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be280123-dda6-49a0-bd8c-5e2855b56159", + "Name": { + "en": "Plant a field" + }, + "Code": "6.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be2f2785-7219-4a35-b8d3-aa56b9b78514", + "Name": { + "en": "Multiple things moving" + }, + "Code": "7.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be3559d9-d69f-4e06-8184-071c35aa2e10", + "Name": { + "en": "Without cause" + }, + "Code": "9.6.2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be4a63e7-f4ba-4de2-be69-d26219d99cb6", + "Name": { + "en": "Kick" + }, + "Code": "7.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be4ab208-1fa0-463f-9ca0-4c7e3e03aafd", + "Name": { + "en": "Lifting tool" + }, + "Code": "6.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "be89e0ba-4c6a-4986-ac0d-859a901b89a1", + "Name": { + "en": "Imagine" + }, + "Code": "3.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf007cd9-925d-4073-a1d6-16d64a45ca25", + "Name": { + "en": "Subjugate" + }, + "Code": "4.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf0b24d2-4bd6-4e9c-8775-a623ace8db56", + "Name": { + "en": "Spice" + }, + "Code": "5.2.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf0bdeeb-564d-407b-8bdf-31221aff7364", + "Name": { + "en": "Appoint, delegate" + }, + "Code": "4.5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf1f9360-6dd4-4ee3-b9f8-a5539baeb53b", + "Name": { + "en": "Growing flowers" + }, + "Code": "6.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf25931d-4760-4c66-abe8-c05a6dc5adbe", + "Name": { + "en": "Be in water" + }, + "Code": "1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf5175f6-fbe4-4ac6-9041-f8aa78b7ac78", + "Name": { + "en": "Execute" + }, + "Code": "4.7.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf6e1719-11ee-4ace-9c84-72019c01aabc", + "Name": { + "en": "Spring, well" + }, + "Code": "1.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bf9606ec-9a8e-4822-8bfd-d5eebc58c65b", + "Name": { + "en": "Dark" + }, + "Code": "8.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfa3be74-0390-4e2e-bdb7-ed41eb67e4f1", + "Name": { + "en": "Rain" + }, + "Code": "1.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfbfb9b5-363d-4767-a5cb-1b11b348efd6", + "Name": { + "en": "None, nothing" + }, + "Code": "8.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfe8902a-32a7-4092-93b2-9dcf3dce205f", + "Name": { + "en": "Upset" + }, + "Code": "3.4.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "bfeba2a4-4479-49e9-838c-3baa2ad0fcae", + "Name": { + "en": "Type, kind" + }, + "Code": "8.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c01bbcef-7d89-4753-bafd-3a7f23648982", + "Name": { + "en": "Doctor, nurse" + }, + "Code": "2.5.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c029eed8-2ec0-4f6f-aa22-3a066bb23ea6", + "Name": { + "en": "And, also" + }, + "Code": "9.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c05bf8c3-78f2-4ec5-b0d7-32d4963a5794", + "Name": { + "en": "Made of, material" + }, + "Code": "8.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c09eedd3-c4e1-4cf9-b6d1-a01624c6426a", + "Name": { + "en": "Wipe, erase" + }, + "Code": "5.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c0b7f354-a75c-41d5-a489-ae2df6364d02", + "Name": { + "en": "Travel by land" + }, + "Code": "7.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c0d903bf-6502-45dd-9dd8-cff7f022c696", + "Name": { + "en": "Count" + }, + "Code": "8.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c0f4715e-55c9-4379-ab6f-ad561a5e7151", + "Name": { + "en": "Believe" + }, + "Code": "3.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c103d339-24f2-45c6-8539-d3c445e15c49", + "Name": { + "en": "Prompters of attention " + }, + "Code": "9.6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1144a6e-3fce-4084-93d6-6f305eda8b1f", + "Name": { + "en": "Prosperity" + }, + "Code": "4.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c13ca251-6103-4475-85af-933311923f2c", + "Name": { + "en": "Above" + }, + "Code": "8.5.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c16334a0-be29-4a1e-a870-4cb3f1df984d", + "Name": { + "en": "Gather" + }, + "Code": "7.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1a63ba2-1db6-410d-a4ed-5f64d1798bc1", + "Name": { + "en": "Tide" + }, + "Code": "1.3.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1a70060-ba04-4f16-879e-5563492aee02", + "Name": { + "en": "Rich" + }, + "Code": "6.8.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1c1dcb4-8fe5-43ac-9b91-b2b2bc33de5b", + "Name": { + "en": "Threaten" + }, + "Code": "3.3.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c1ceebe1-1274-40c1-a932-696265d9d412", + "Name": { + "en": "Yard" + }, + "Code": "6.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c21c28e8-9731-4ee0-acbb-32501bf8abd1", + "Name": { + "en": "Crocodile" + }, + "Code": "1.6.1.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c223335b-4803-4f1b-bf4d-f1ee077513cf", + "Name": { + "en": "Private, public" + }, + "Code": "4.1.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2630384-2f72-4a96-baed-3fff03383362", + "Name": { + "en": "Harvest" + }, + "Code": "6.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c27b87cf-1211-4df2-96b1-12c416edabbe", + "Name": { + "en": "Humor" + }, + "Code": "4.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2b720f5-1123-446e-9f60-088a3272b889", + "Name": { + "en": "Take time" + }, + "Code": "8.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2dbe83a-d638-45ac-a6d5-5f041b9dde71", + "Name": { + "en": "Disabled" + }, + "Code": "2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2ec9cee-7fe3-44f2-9008-c8b42f6f78dd", + "Name": { + "en": "Family names" + }, + "Code": "9.7.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c2f01aa8-9f94-43c9-9ada-b1e4a60aba07", + "Name": { + "en": "Arm" + }, + "Code": "2.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c345f278-91ff-463d-b9a6-8abac8a267eb", + "Name": { + "en": "Grass, herb, vine" + }, + "Code": "1.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c358b041-7a1a-43d6-8e61-26b9507f559f", + "Name": { + "en": "Meet together" + }, + "Code": "4.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c35cba91-742c-4b98-b848-dfd520d959cf", + "Name": { + "en": "Touch" + }, + "Code": "7.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c36131c3-b5e1-4aac-a7b5-7c9cfa1e8f74", + "Name": { + "en": "Goat" + }, + "Code": "6.3.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c3b808d4-d94e-4c8e-b7b2-87b4f4a83198", + "Name": { + "en": "Clothes for special occasions" + }, + "Code": "5.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c3ddfc77-e3a6-450e-a853-111f5595df87", + "Name": { + "en": "Moods" + }, + "Code": "9.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c3f20ce7-d30e-40fd-af8a-713a65c46cd0", + "Name": { + "en": "Bow" + }, + "Code": "7.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c4330001-83ca-485d-8b9b-09f7e1be60cc", + "Name": { + "en": "Interpreting messages" + }, + "Code": "3.5.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c4b110cf-d968-4bc6-ac0c-7e70cbad2756", + "Name": { + "en": "Social event" + }, + "Code": "4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c4fdb9ce-93cc-405b-b673-4058821bf794", + "Name": { + "en": "Clock, watch" + }, + "Code": "8.4.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c5282457-be5f-4ce9-a802-91140cb0a22b", + "Name": { + "en": "Limb" + }, + "Code": "2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c5996b7d-0acc-4ac7-bfa0-09b93a0eccbc", + "Name": { + "en": "Mining" + }, + "Code": "6.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c5b8c936-1e01-4e86-9145-a2b721ec9e39", + "Name": { + "en": "Dig" + }, + "Code": "7.8.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c60cf6a1-7868-4536-ac73-387bfa26e04b", + "Name": { + "en": "Rebel against authority" + }, + "Code": "4.5.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6132280-d2aa-46f8-9e94-b087dbda09cb", + "Name": { + "en": "Balance" + }, + "Code": "7.2.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6688928-6694-4264-8048-a60b665b5793", + "Name": { + "en": "Tobacco" + }, + "Code": "5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6b62d63-b355-46c9-a8c7-e0a0bf112a9e", + "Name": { + "en": "Infrastructure" + }, + "Code": "6.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c6c772af-7b6b-4393-b0da-5b4a329d3426", + "Name": { + "en": "Quantity" + }, + "Code": "8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c72985cf-b07f-4ed5-873a-a2209929667e", + "Name": { + "en": "States" + }, + "Code": "8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c753fc8b-22ae-4e71-807f-56fb3ebd3cdd", + "Name": { + "en": "Sexual relations" + }, + "Code": "2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7990233-ef2e-4ea6-8d1e-ccf56e540394", + "Name": { + "en": "Farmland" + }, + "Code": "6.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c79d49f1-74ec-4dba-a5aa-5e861af63d05", + "Name": { + "en": "Blame" + }, + "Code": "3.5.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c1c25a-d89d-4720-846c-d6e1dd723a17", + "Name": { + "en": "Cooking oil" + }, + "Code": "5.2.3.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c2d82e-d86c-4bf3-81a1-82772e87d709", + "Name": { + "en": "Between" + }, + "Code": "8.5.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c3aa7d-a4b5-45af-9a31-a640179e8fa4", + "Name": { + "en": "Attribution of an attribute" + }, + "Code": "9.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7c85346-158d-4881-839d-9a6a8e47209b", + "Name": { + "en": "Move" + }, + "Code": "7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7ccc5bb-181d-420f-8665-64793fefb37b", + "Name": { + "en": "Perfect" + }, + "Code": "8.3.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c7dbd50e-0ff5-42af-a7a9-9eaf03671c49", + "Name": { + "en": "Convenient" + }, + "Code": "8.3.7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c81004a7-499e-4e05-84c8-3d74a17e97fd", + "Name": { + "en": "Care for the teeth" + }, + "Code": "5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c817af65-7cc8-4105-a8ed-47067d97b73b", + "Name": { + "en": "Clothes for special people" + }, + "Code": "5.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8185ca6-567a-40ef-939f-ffefdd9a4770", + "Name": { + "en": "Forever" + }, + "Code": "8.4.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c82fa28f-7e26-489e-a244-4d69cea87b94", + "Name": { + "en": "Work and occupation" + }, + "Code": "6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8595a5f-4dde-4260-b8d8-265d0554ce93", + "Name": { + "en": "Win" + }, + "Code": "4.8.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8602dc5-5c91-480a-b5ce-1c82fe3da83a", + "Name": { + "en": "Tooth" + }, + "Code": "2.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c880c81f-65dc-4d93-8c39-22920fdbe4c7", + "Name": { + "en": "Wool production" + }, + "Code": "6.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c888c7ac-8cf4-49d2-a33e-20d19d84c47b", + "Name": { + "en": "Pig" + }, + "Code": "6.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8aea8b2-4088-4d20-a0d2-45c2ad974ee1", + "Name": { + "en": "Furrow" + }, + "Code": "8.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8c74ec6-3f7a-4b45-b0e9-399b97c4a800", + "Name": { + "en": "Free to do what you want" + }, + "Code": "3.3.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8c8b1f6-a898-4d5b-a1ce-fa7284915e8f", + "Name": { + "en": "Disaster" + }, + "Code": "4.4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8d94c8f-db0b-4016-bdd2-e41a2eae4288", + "Name": { + "en": "Region" + }, + "Code": "4.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c8e3c39c-d895-4e42-8e1e-1574137ba016", + "Name": { + "en": "Types of houses" + }, + "Code": "6.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c956a98a-4c85-4c85-868d-f27f44bd6422", + "Name": { + "en": "Predict" + }, + "Code": "3.2.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c96ac1eb-12f2-47af-9e96-9d99fce7e8f5", + "Name": { + "en": "Receive" + }, + "Code": "7.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c9741b97-ad50-465c-a4ca-b21d488f45fe", + "Name": { + "en": "Physical, non-physical" + }, + "Code": "9.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c982941c-0cff-47aa-9e08-5234a8e0d6e8", + "Name": { + "en": "Growing potatoes" + }, + "Code": "6.2.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c9aee4df-ac3e-4159-bd1a-060db1a5f070", + "Name": { + "en": "Communication" + }, + "Code": "3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "c9b5f83e-529d-45af-949f-4cc6b0591b66", + "Name": { + "en": "Improve" + }, + "Code": "8.3.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca0f9b9b-31fc-4ae6-9563-abedc4a5af98", + "Name": { + "en": "Beneficiary (of a patient)" + }, + "Code": "9.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca495e57-a8e0-4294-bfe3-7b7995dc96c7", + "Name": { + "en": "Don\u0027t think so, doubt it" + }, + "Code": "9.4.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca511a0c-5628-4726-8a6e-aa9fa3b73bfc", + "Name": { + "en": "Witness, testify" + }, + "Code": "4.7.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca752706-1c9e-43e7-bd17-845c4736ccd8", + "Name": { + "en": "Approximate" + }, + "Code": "8.1.5.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca91e41a-81c3-4c96-87e6-f67477fcd686", + "Name": { + "en": "Rear a child" + }, + "Code": "2.6.4.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca98bd7b-8711-41f6-86d0-5cd07b7bfe0d", + "Name": { + "en": "Destroy" + }, + "Code": "7.9.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ca9c215a-e568-4d09-b3a9-b5727cd831d6", + "Name": { + "en": "Bury" + }, + "Code": "2.6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cab8e9dc-5e4f-4a12-8b3d-4acbb7ad2059", + "Name": { + "en": "Misunderstand" + }, + "Code": "3.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cac1d7a8-7382-466e-ba4a-ba2bfe50f13b", + "Name": { + "en": "Mass communication" + }, + "Code": "3.5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb362fc7-b3aa-46f4-b9a8-0f8c97fb16fe", + "Name": { + "en": "Growing crops" + }, + "Code": "6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb783ad9-4650-416e-bf63-88c4ca43fe6a", + "Name": { + "en": "Reputation" + }, + "Code": "4.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb95189c-8c74-465b-af07-48e08dbf7c39", + "Name": { + "en": "Emotion" + }, + "Code": "3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cb99a086-8c6d-4f90-81db-6afa69ae5455", + "Name": { + "en": "Animal sounds" + }, + "Code": "1.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cba1f6cc-58ac-4d09-aa6a-1661f5945787", + "Name": { + "en": "Understandable" + }, + "Code": "3.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cba6876c-5b48-42f4-ae0a-7fbe9bb971ef", + "Name": { + "en": "Shadow" + }, + "Code": "8.3.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cbc0a8f5-9cba-41d2-a7e5-565fbf09c8c4", + "Name": { + "en": "Laugh" + }, + "Code": "3.5.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cbc24a98-1c64-467e-98aa-251a28e4c0b8", + "Name": { + "en": "Defecate, feces" + }, + "Code": "2.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cbcff912-e1c2-4d9b-9938-85d73e7e7265", + "Name": { + "en": "Some" + }, + "Code": "8.1.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cc121082-2d07-484e-8a6f-7382f7d71f39", + "Name": { + "en": "Stubborn" + }, + "Code": "3.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cc3f1dc8-a31e-4459-ba13-f82b45df37b5", + "Name": { + "en": "Report" + }, + "Code": "3.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cc6f100a-5220-4f53-801c-b1fdcc619608", + "Name": { + "en": "Old, not young" + }, + "Code": "8.4.6.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cca44b46-437c-42ee-93d7-a8820d61d0c8", + "Name": { + "en": "Legal personnel" + }, + "Code": "4.7.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ccbbd16f-58c5-45c1-bfff-1fba64d9740e", + "Name": { + "en": "Aspect--dynamic verbs" + }, + "Code": "9.4.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cce98603-ff8f-4213-945a-bd6746716139", + "Name": { + "en": "Land" + }, + "Code": "1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd01db6c-8aa6-42d1-93ac-05e81a8be523", + "Name": { + "en": "Serve food" + }, + "Code": "5.2.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd403434-a5a1-4700-8ad3-b7c9aabd99d9", + "Name": { + "en": "Valley" + }, + "Code": "1.2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd4300c9-265e-4457-8e33-4e0c9a4d4ba8", + "Name": { + "en": "Value" + }, + "Code": "8.3.7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd436263-30a3-498c-93f6-3d5682f7f7c0", + "Name": { + "en": "Commerce" + }, + "Code": "6.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd6f1b37-5bdd-4237-8827-b1c947c8e1b4", + "Name": { + "en": "Transparent" + }, + "Code": "2.3.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cd8b2a8b-687b-42e9-91e7-cfb8812b64ee", + "Name": { + "en": "Mistake" + }, + "Code": "4.3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cde96694-79e5-44af-8d38-d988d1938e5f", + "Name": { + "en": "Working with buildings" + }, + "Code": "6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ce30eb9c-8260-476b-878c-0a078d596955", + "Name": { + "en": "Forget" + }, + "Code": "3.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ce6a862d-a4bb-4378-b14d-439806870c41", + "Name": { + "en": "Unlucky" + }, + "Code": "4.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ce6d5e60-7cf6-46ab-bd02-453ec7b04f7a", + "Name": { + "en": "Self-esteem" + }, + "Code": "3.4.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ceedce41-cdef-4766-9c5e-8ff5608c5464", + "Name": { + "en": "Store the harvest" + }, + "Code": "6.2.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cf337287-c9fa-43d2-93c4-284f45e262c0", + "Name": { + "en": "Disease" + }, + "Code": "2.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cf5f83be-2c19-4cf8-8cc5-53bd32b50530", + "Name": { + "en": "Evaluator" + }, + "Code": "9.4.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cf93b8e0-9f28-4485-b9d6-22293ccd73ce", + "Name": { + "en": "Lose your way" + }, + "Code": "7.2.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "cfb159f7-82f6-4789-b9b4-8f611820f350", + "Name": { + "en": "Spider" + }, + "Code": "1.6.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d01f1c51-522e-4b35-81b3-00577dbfa3bd", + "Name": { + "en": "Color" + }, + "Code": "8.3.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d030f0c7-31a3-47da-be35-46f1eba63ae9", + "Name": { + "en": "Like, love" + }, + "Code": "3.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d067b555-e53c-4c16-bb09-5314862d8bae", + "Name": { + "en": "Drunk" + }, + "Code": "5.2.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d06dae77-134a-403f-ba88-52ecd66c0522", + "Name": { + "en": "Moss, fungus, algae" + }, + "Code": "1.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d086c2ad-2d11-4250-a25a-dc6538439db6", + "Name": { + "en": "Two" + }, + "Code": "8.1.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d0b14231-1471-41b3-aeb5-69199acaaefb", + "Name": { + "en": "Way, manner" + }, + "Code": "9.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d0dee676-f3ae-43cc-96f1-7e3bb65870f5", + "Name": { + "en": "Fit, size" + }, + "Code": "8.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d10301f3-573c-4005-ad65-1c73fb80b3b6", + "Name": { + "en": "Understand" + }, + "Code": "3.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d117aa22-3f18-47c4-9683-51ecf1dc7134", + "Name": { + "en": "Parts of a plant" + }, + "Code": "1.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1687857-0f1d-4098-affb-b283a6677b6b", + "Name": { + "en": "Most, almost all" + }, + "Code": "8.1.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1aecdba-3938-4b0c-a2e6-7dc3b7cc5cde", + "Name": { + "en": "Produce wealth" + }, + "Code": "6.8.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1b3d0f0-5319-4a6a-8a70-2179a8e76d22", + "Name": { + "en": "Need" + }, + "Code": "8.1.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d1e58469-52e3-4b50-b0de-00bf9f09f8d4", + "Name": { + "en": "Grandfather, grandmother" + }, + "Code": "4.1.9.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2001c9c-3c37-4910-8b8a-adcffc6fbf26", + "Name": { + "en": "Across" + }, + "Code": "8.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d21db541-4122-465f-9db5-4c76f5e84426", + "Name": { + "en": "Earn" + }, + "Code": "6.8.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d25f7907-091e-4cf7-bd8c-bdb97278b616", + "Name": { + "en": "Hit" + }, + "Code": "7.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d27a5602-ece1-452e-9ed6-7261082dc8b8", + "Name": { + "en": "Soon" + }, + "Code": "8.4.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2b61570-af54-44f3-846e-6d7ec9d3737f", + "Name": { + "en": "Room" + }, + "Code": "6.5.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2ca3194-e393-480e-ae1d-dd67bed55227", + "Name": { + "en": "Growth of plants" + }, + "Code": "1.5.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2e73238-ff99-4ba3-8ce6-d8ae98721710", + "Name": { + "en": "Agree to do something" + }, + "Code": "3.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2f05cc8-1a3f-4bc2-9a2b-38174bb84091", + "Name": { + "en": "Mute" + }, + "Code": "2.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d2f516f4-df1c-44f6-8704-76dd52201317", + "Name": { + "en": "Foreigner" + }, + "Code": "4.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d345142f-d51e-4023-a25a-2a4c0f1fbcbf", + "Name": { + "en": "Land preparation" + }, + "Code": "6.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d395edc8-fb58-4ba4-8446-dacf8ea0477a", + "Name": { + "en": "Sweat" + }, + "Code": "2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d39b2432-87d5-4f3e-8101-de06001b42d6", + "Name": { + "en": "Each other" + }, + "Code": "9.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d4521b0f-0703-48cc-94a0-f42ccc09959c", + "Name": { + "en": "Indefinite pronouns" + }, + "Code": "9.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d4769748-7c4e-4359-9da5-2ea64d5948d9", + "Name": { + "en": "Milk products" + }, + "Code": "5.2.3.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d47b69e0-ab4a-4111-aec3-2c889a4e70b3", + "Name": { + "en": "Create" + }, + "Code": "9.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d49f2c9d-1b4a-4370-b107-71f9b9fbdc8e", + "Name": { + "en": "Neighbor" + }, + "Code": "4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d502512c-966b-4752-8636-716fb29facfe", + "Name": { + "en": "Sleep" + }, + "Code": "5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d50f3921-fcea-4ac9-b64a-25bf47dc3292", + "Name": { + "en": "Volcano" + }, + "Code": "1.2.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d574c970-6834-4566-ae37-f42c7e95483b", + "Name": { + "en": "Heavy" + }, + "Code": "8.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d586a164-ac8f-4356-8aa8-07721c2b5e09", + "Name": { + "en": "Letter" + }, + "Code": "3.5.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d59a84e1-5e12-4cb7-b72b-15c51810ad48", + "Name": { + "en": "Disunity" + }, + "Code": "4.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d60faf11-cc6e-48db-8a13-82f86d78ab00", + "Name": { + "en": "Physical actions" + }, + "Code": "7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d68911f6-6507-483a-b015-44726fdf868a", + "Name": { + "en": "Work" + }, + "Code": "6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d6c29733-beeb-4fc9-975f-5e78a8acc273", + "Name": { + "en": "Work well" + }, + "Code": "6.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7140538-fb99-4af9-8398-8c31a1b79fb5", + "Name": { + "en": "Prevent from moving" + }, + "Code": "7.2.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7349bac-efc0-41ba-ba60-f23d38e97a36", + "Name": { + "en": "Informal justice" + }, + "Code": "4.6.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d74914e7-e329-49d4-8513-ec8d850241e4", + "Name": { + "en": "Partly" + }, + "Code": "9.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7861def-70c1-470f-bca6-8230cbbaa3e9", + "Name": { + "en": "Look" + }, + "Code": "2.3.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7ae7208-7869-46e3-90c1-676342c3d7af", + "Name": { + "en": "Cheat" + }, + "Code": "6.8.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7da5318-dccf-477f-967d-1e3f6a421860", + "Name": { + "en": "Chicken" + }, + "Code": "6.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7e0ed88-6d5a-44cc-a0fe-070a5aab3e60", + "Name": { + "en": "Fish with hooks" + }, + "Code": "6.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7e4bf3e-e539-43bc-bb43-3ae0980ffb86", + "Name": { + "en": "Shut, close" + }, + "Code": "7.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d7e4e538-039f-47bb-aa42-a2cf455668cc", + "Name": { + "en": "Growing wheat" + }, + "Code": "6.2.1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d80360f9-7319-40a7-a2bc-fd8718711ba4", + "Name": { + "en": "Before" + }, + "Code": "8.4.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8366daf-ae1d-4b2c-a447-478c73580639", + "Name": { + "en": "Method" + }, + "Code": "6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8389a63-8b39-4e23-8528-cd756dae2f5c", + "Name": { + "en": "Working with paper" + }, + "Code": "6.6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d83ebe2c-c1d6-49ec-a4a9-1cdced843387", + "Name": { + "en": "Lose consciousness" + }, + "Code": "2.5.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d853597b-f3ed-470b-b6dd-8fe93b8e43eb", + "Name": { + "en": "Quiet" + }, + "Code": "2.3.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d85391fa-680a-4715-81ac-c0835acac8c5", + "Name": { + "en": "Milk" + }, + "Code": "6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d85d0838-a9e4-4787-8fce-7d0466bc24b9", + "Name": { + "en": "Number of times" + }, + "Code": "8.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8631167-08bd-4571-bc7c-57a4407da51c", + "Name": { + "en": "Politics" + }, + "Code": "4.6.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d88d862c-01d4-4b43-9fbe-59208922e022", + "Name": { + "en": "Wait" + }, + "Code": "7.2.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8dfa6fc-84ea-4178-b4f5-95e0c113140a", + "Name": { + "en": "Dissociation" + }, + "Code": "9.6.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d8ea1902-5fa6-4fda-b7b2-1f9c301cdc5f", + "Name": { + "en": "Group of things" + }, + "Code": "8.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d90db6d4-6c78-4ac8-9764-0cafa79b8b31", + "Name": { + "en": "Army" + }, + "Code": "4.8.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d90e71bf-2898-4501-9d09-c518999f83e2", + "Name": { + "en": "Names of mountains" + }, + "Code": "9.7.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d95ed463-ac64-4004-9c3b-0fce2f7639be", + "Name": { + "en": "Move out" + }, + "Code": "7.2.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d975a233-1e48-4313-8bed-aada7460487e", + "Name": { + "en": "Put aside" + }, + "Code": "7.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d98c1c67-b70e-4a35-89db-2e744bd5197f", + "Name": { + "en": "Head" + }, + "Code": "2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d9b9db39-d87e-4d04-8298-1f1b969dbda1", + "Name": { + "en": "General adverbs" + }, + "Code": "9.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d9cb2e69-133d-4525-bca5-50b0f3402cbb", + "Name": { + "en": "Own, possess" + }, + "Code": "6.8.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "d9f336cf-0682-4702-ab94-5ade755ddc64", + "Name": { + "en": "Move something in a direction" + }, + "Code": "7.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da203891-90a2-48f0-955a-8a80b6c62af9", + "Name": { + "en": "Arrange an event" + }, + "Code": "6.1.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da39c0d9-a5c1-4f10-bd3b-4e988abcab5a", + "Name": { + "en": "Sorry" + }, + "Code": "3.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da41ea1f-dd09-421d-a1a5-174ff43f4eff", + "Name": { + "en": "Classifiers" + }, + "Code": "9.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "da988f73-fc9d-4a23-b70d-22299a7c6097", + "Name": { + "en": "Have, of" + }, + "Code": "9.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dae6488c-7fea-4fa3-84c9-b611d017b6a5", + "Name": { + "en": "Wash clothes" + }, + "Code": "5.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "daefd275-98e3-4534-a991-c7d396b54c69", + "Name": { + "en": "Postpone" + }, + "Code": "8.4.5.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dafc4b97-2b70-4986-b2b4-c05eb060786d", + "Name": { + "en": "Accept" + }, + "Code": "3.3.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "db2232d9-8b17-4920-936f-2b6249c6f7fa", + "Name": { + "en": "Steal" + }, + "Code": "6.8.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dbd3e164-3f70-4395-9728-1c24c8900da6", + "Name": { + "en": "Cooking utensil" + }, + "Code": "5.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dbebc3bd-2d01-4d62-a009-866c18ee3527", + "Name": { + "en": "Miscarriage" + }, + "Code": "2.6.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc177f3c-d0fd-4232-adf1-a77b339cdbb2", + "Name": { + "en": "Building" + }, + "Code": "6.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb", + "Name": { + "en": "Sun" + }, + "Code": "1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc1ab28c-3e1e-474c-8359-2548b7ad5595", + "Name": { + "en": "Describe" + }, + "Code": "3.5.1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc71598d-21a2-4598-9c12-13978796d2c9", + "Name": { + "en": "Sweep, rake" + }, + "Code": "5.6.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dd12ac0f-55cc-4c79-a50c-d23cc7ea60b3", + "Name": { + "en": "Bathe" + }, + "Code": "5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dd3e872a-fb50-4204-9646-7a24c644013b", + "Name": { + "en": "Names of languages" + }, + "Code": "9.7.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dd830047-d7f5-4010-a8ea-ae20468a0cbf", + "Name": { + "en": "Greedy" + }, + "Code": "6.8.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ddc96103-4bc5-44d3-9412-c57569d2a9f5", + "Name": { + "en": "Festival, show" + }, + "Code": "4.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ddef260e-b183-47f7-837e-165ffbd1af2c", + "Name": { + "en": "Put in front" + }, + "Code": "7.3.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de1ffd73-af3b-47a2-8e98-ac1659a84cac", + "Name": { + "en": "Sensible" + }, + "Code": "4.3.1.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de544ebd-9f94-4831-8887-944c3bbbc254", + "Name": { + "en": "Days of the week" + }, + "Code": "8.4.1.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de6b15d3-6409-4998-b03d-903133f4ad70", + "Name": { + "en": "Sing" + }, + "Code": "4.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "de7b8df5-83a7-4456-a63a-1075ff17dbaf", + "Name": { + "en": "Blemish" + }, + "Code": "8.3.7.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ded0e58d-8ad7-4909-b0f1-b9ab9c10bb0d", + "Name": { + "en": "King\u0027s family" + }, + "Code": "4.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "deff977c-a664-4456-9d44-a5127dd2a7d1", + "Name": { + "en": "Wander" + }, + "Code": "7.2.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df149819-608f-46cd-ba0f-55f1d9d2e8ec", + "Name": { + "en": "Speed" + }, + "Code": "8.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df2b9d7a-9b90-4704-8bc3-11dcffe985f4", + "Name": { + "en": "Skin" + }, + "Code": "2.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df2ee830-0668-43d7-8a32-e2fd3e7b31d8", + "Name": { + "en": "Tense" + }, + "Code": "9.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df47f55d-b15d-4261-881e-3c4b0dc6d9be", + "Name": { + "en": "Extend" + }, + "Code": "7.3.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df647b1a-ed79-4a8e-b781-56ed25fe4405", + "Name": { + "en": "Buddhism" + }, + "Code": "4.9.7.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "df9ee372-e92e-4f73-aac5-d36908497698", + "Name": { + "en": "Think" + }, + "Code": "3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dfdcfa24-b013-4566-af4a-28ef1dfd4742", + "Name": { + "en": "Measure" + }, + "Code": "8.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dfe59469-d1bf-4ed2-9faa-6d5af52eefdd", + "Name": { + "en": "Fill, cover" + }, + "Code": "7.5.9.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e033ca92-ee8c-4ab9-9368-5f6f4e942987", + "Name": { + "en": "Contact" + }, + "Code": "3.5.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e072bd42-eb0f-48c8-97fd-ae9ca8bc3a75", + "Name": { + "en": "Fight for something good" + }, + "Code": "4.8.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e080687b-0900-4dd0-9677-e3aaa3eae641", + "Name": { + "en": "Explain" + }, + "Code": "3.5.1.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e08e252a-9227-42e4-bcb8-b803d25071b6", + "Name": { + "en": "Embarrassed" + }, + "Code": "3.4.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0a8e1d9-c43e-4092-a8dc-476a3417924e", + "Name": { + "en": "Confident" + }, + "Code": "3.4.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0ad6bb1-d422-408a-83f8-f1a7661ed225", + "Name": { + "en": "Up" + }, + "Code": "8.5.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0b00a13-8648-4635-afe5-0be3c0b6a05c", + "Name": { + "en": "Maybe" + }, + "Code": "9.4.4.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0c32642-7c51-4e23-a776-f63f2f2f936d", + "Name": { + "en": "Uncertain" + }, + "Code": "9.4.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0e83cc9-b876-47f6-8e66-60c9c505b927", + "Name": { + "en": "Danger" + }, + "Code": "4.4.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e0e8af5a-04c1-49a1-9955-9a2af7879068", + "Name": { + "en": "Secret" + }, + "Code": "3.2.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e10b9449-08a3-4c13-aff2-31486749b62f", + "Name": { + "en": "Investigate a crime" + }, + "Code": "4.7.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e11d6360-6fa9-45a9-a23e-2252a301cf86", + "Name": { + "en": "Leaven" + }, + "Code": "5.2.3.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e173ea34-c216-4702-aa24-ca9ab40d48dd", + "Name": { + "en": "Reason" + }, + "Code": "9.6.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e173f481-ec57-4d1c-b517-be38ccb038f5", + "Name": { + "en": "Leave an organization" + }, + "Code": "4.2.1.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e1ac83c2-352f-4a2e-9612-99e66d6d3d0c", + "Name": { + "en": "Slave" + }, + "Code": "4.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e1dd83dd-955a-4bc7-a761-fc91555da1f8", + "Name": { + "en": "Completely" + }, + "Code": "9.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e1e0b800-85ad-4886-abe5-9f67c022a5ed", + "Name": { + "en": "End, point" + }, + "Code": "8.6.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e22d860a-d207-4649-8ab5-4592b838febb", + "Name": { + "en": "Sea mammal" + }, + "Code": "1.6.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e27adda9-0761-4b7f-abbf-24938ce1c01a", + "Name": { + "en": "Drama" + }, + "Code": "4.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e2806bed-b450-4469-900a-1afa7ded2224", + "Name": { + "en": "Outer part" + }, + "Code": "8.6.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e28f3f79-d4a5-402c-8a70-196856791078", + "Name": { + "en": "Do" + }, + "Code": "9.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e2d3294b-4463-48bb-95e4-8c9b5238ecec", + "Name": { + "en": "Mock" + }, + "Code": "3.5.1.8.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e311cc3a-a387-449e-a05a-07ed9678411d", + "Name": { + "en": "Religious things" + }, + "Code": "4.9.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e3300171-d7b2-4fb4-a103-e8fdcf3ff2ed", + "Name": { + "en": "Area of knowledge" + }, + "Code": "3.2.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e3a6f918-4b0f-4515-bd6c-4f3370bcbf67", + "Name": { + "en": "Join an organization" + }, + "Code": "4.2.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e43c9905-ae67-4627-8b10-bd7a453828b4", + "Name": { + "en": "Stick together" + }, + "Code": "7.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e442afe1-e7cd-4ab2-b456-963e2e041a1e", + "Name": { + "en": "Move slowly" + }, + "Code": "7.2.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e4517880-aa2d-4977-b55a-dcb0b6d1f533", + "Name": { + "en": "Beautiful" + }, + "Code": "2.3.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e45b8bac-9623-4f84-a113-9dec13a8db64", + "Name": { + "en": "Talk about a subject" + }, + "Code": "3.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e482bb5a-5a32-4bc5-a0de-32cbe0aa7908", + "Name": { + "en": "Speech style" + }, + "Code": "3.5.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e496a6d3-a00c-470e-81c3-314f3f97840e", + "Name": { + "en": "Food from leaves" + }, + "Code": "5.2.3.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e4bacc52-dcaa-4e68-b736-f0b5d9aeca41", + "Name": { + "en": "Class, lesson" + }, + "Code": "3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e4e05724-01ec-4c61-90f0-b8658cc8ca51", + "Name": { + "en": "Something used to see" + }, + "Code": "2.3.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e5020b79-6fb0-4be4-a359-d4f899da5c7e", + "Name": { + "en": "Quarrel" + }, + "Code": "3.5.1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e545baab-581d-4af8-81f2-5a884e272349", + "Name": { + "en": "Beast of burden" + }, + "Code": "6.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e54cd744-d106-4bcf-bd07-b8783c075c21", + "Name": { + "en": "Fashionable" + }, + "Code": "3.4.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e5f9c9cf-0b0c-47aa-b7df-8c37f211cd00", + "Name": { + "en": "Divide into pieces" + }, + "Code": "7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6221c7a-4608-4114-ba9f-532a3b943113", + "Name": { + "en": "Parts of a bird" + }, + "Code": "1.6.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e626c65e-eb79-4230-b07a-a6d975d3fe3d", + "Name": { + "en": "Mouth" + }, + "Code": "2.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e64e647e-a5fb-463c-8eef-44879e2e70b2", + "Name": { + "en": "Markers expecting a negative answer" + }, + "Code": "9.4.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6b21531-b7d0-4e37-b01b-3ca49a285168", + "Name": { + "en": "Drought" + }, + "Code": "1.1.3.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6c9fe4c-199e-4934-b622-739a85b0830d", + "Name": { + "en": "Organize" + }, + "Code": "7.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6cf2c28-7630-41d7-835d-bd171ab67378", + "Name": { + "en": "Altruistic, selfless" + }, + "Code": "4.3.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e6ec43ef-0100-4cf4-a047-c575ee8613b4", + "Name": { + "en": "Control" + }, + "Code": "3.3.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7119442-3063-422a-a03e-d02e570ccd0f", + "Name": { + "en": "Not have" + }, + "Code": "7.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e76227e8-4a04-4fbd-a16e-5baa3d9e97a9", + "Name": { + "en": "Animal actions" + }, + "Code": "1.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e791df50-8880-4080-a5ee-d4e58bb7b8ca", + "Name": { + "en": "Free time" + }, + "Code": "4.2.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7c58c11-2911-446a-96b0-2113247f3792", + "Name": { + "en": "Kinship" + }, + "Code": "4.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7caa24f-155d-47cd-946d-cc0d06dfc764", + "Name": { + "en": "Love" + }, + "Code": "4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7e5dbf2-6d5b-4869-b357-8a7860c29002", + "Name": { + "en": "Solutions of water" + }, + "Code": "1.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e7f94aea-ba50-481d-b640-d5cd8bdedc72", + "Name": { + "en": "Urinate, urine" + }, + "Code": "2.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e83586c6-8d8e-4a23-bdda-a1731a5ece22", + "Name": { + "en": "Defend against accusation" + }, + "Code": "4.7.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e836b01b-6c1a-4d41-b90a-ea5f349f88d4", + "Name": { + "en": "Air" + }, + "Code": "1.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e86364ac-6fa1-4aad-a6c1-068d56b6a1f1", + "Name": { + "en": "Strong, brittle" + }, + "Code": "8.3.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e8ec3885-c692-4b90-a5b3-4c86da642666", + "Name": { + "en": "Names of rivers" + }, + "Code": "9.7.2.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e931da8a-efc1-46cb-836a-72fba4a1eb4f", + "Name": { + "en": "Take somewhere" + }, + "Code": "7.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e949f393-2a5b-4792-af8f-75138322ceee", + "Name": { + "en": "Strong" + }, + "Code": "2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e94a5cf3-1fd4-4b52-902f-bbf0ad6bac2b", + "Name": { + "en": "Only" + }, + "Code": "8.1.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e96f6860-0914-4324-9c49-48f24a0ff7f1", + "Name": { + "en": "Speak well" + }, + "Code": "3.5.1.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9947962-a243-4a44-a94d-64d68718d88c", + "Name": { + "en": "Independent" + }, + "Code": "4.5.4.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9cafabe-f0f7-4142-a6f6-d1c94bdc4b5c", + "Name": { + "en": "Empty" + }, + "Code": "8.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9ef98d9-8844-4804-88a5-614493d150f5", + "Name": { + "en": "Alert" + }, + "Code": "3.1.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "e9fdc131-addb-4db6-8f79-ae0044e1eb81", + "Name": { + "en": "Sacred writings" + }, + "Code": "4.9.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea17aba7-6d4e-4dbf-89ea-84a1b1c47647", + "Name": { + "en": "Big container, volume" + }, + "Code": "8.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea2d0dc5-2cdb-4686-9f48-abe65ed295a4", + "Name": { + "en": "Move past, over, through" + }, + "Code": "7.2.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea46de30-a1a9-4828-84a8-9165f61f8b20", + "Name": { + "en": "Fishing" + }, + "Code": "6.4.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea7c06d0-5e33-4702-b6a0-51582b216fe8", + "Name": { + "en": "Distribution" + }, + "Code": "9.6.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ea839451-f89e-4432-b361-3086ca4f13fd", + "Name": { + "en": "Accustomed to" + }, + "Code": "6.1.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eac4b58e-1fd7-4ce1-9a68-c7516470e876", + "Name": { + "en": "Realize" + }, + "Code": "3.2.2.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eaed8c63-9f97-4116-927c-19f364a99e72", + "Name": { + "en": "Unfriendly" + }, + "Code": "4.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eafdea8e-521e-4614-8fd5-e8446adf9203", + "Name": { + "en": "Debate" + }, + "Code": "3.5.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb00b4c2-5b87-4ef8-9548-800fc5c9b524", + "Name": { + "en": "Damage" + }, + "Code": "7.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb07e333-38d2-4ddb-9bc9-5990403600b4", + "Name": { + "en": "Fishing equipment" + }, + "Code": "6.4.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb0c9e02-e4c1-4e5e-84b6-be63aaf439d5", + "Name": { + "en": "Nephew, niece" + }, + "Code": "4.1.9.1.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb662979-604c-455e-a2c6-a84b03a2ee3a", + "Name": { + "en": "Early" + }, + "Code": "8.4.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb821083-3fb0-441a-9f1d-ad2a9ed918d8", + "Name": { + "en": "Support" + }, + "Code": "7.3.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eb842dc1-ad9c-4c1a-9eb2-a48b7f3092be", + "Name": { + "en": "Air force" + }, + "Code": "4.8.3.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ebac5ec8-dc4c-4b2b-a727-3ca82404cdbb", + "Name": { + "en": "Demonstrate" + }, + "Code": "3.5.1.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ebb5f3e5-bfe5-4a40-986a-938c1bdb9c76", + "Name": { + "en": "Terms of endearment" + }, + "Code": "9.7.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec118a28-fd23-48b3-8819-bfe1329f028d", + "Name": { + "en": "Reflect, mirror" + }, + "Code": "2.3.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec1bcace-fc10-45df-8e1f-29bce1ef786a", + "Name": { + "en": "Speak with others" + }, + "Code": "3.5.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec6f626c-e7a0-4ec7-a541-d683f20c9271", + "Name": { + "en": "Vicinity" + }, + "Code": "8.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec79e90e-ecd3-497f-bc14-ac64181f53d7", + "Name": { + "en": "Do evil to" + }, + "Code": "4.3.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec8e1481-827c-4554-bf50-0d3f592f3702", + "Name": { + "en": "Cloth" + }, + "Code": "6.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec90e061-e6a0-435f-8784-7269a24c670a", + "Name": { + "en": "Give pledge, bond" + }, + "Code": "6.8.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ec998dc6-d509-4832-8434-d2abac34ba70", + "Name": { + "en": "Community" + }, + "Code": "4.6.7.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eca46133-c350-4573-a349-9b7ce11b6fa8", + "Name": { + "en": "Container" + }, + "Code": "6.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecaff061-6a12-4ad6-b818-9b140a9a3e11", + "Name": { + "en": "Design" + }, + "Code": "9.1.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecbdf1c5-9d7f-4446-b6a1-644a379a480b", + "Name": { + "en": "Cheap" + }, + "Code": "6.8.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecc39bc2-6336-48ca-be46-cf5e49a3c267", + "Name": { + "en": "Insect" + }, + "Code": "1.6.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecf1cce7-ed58-44bf-870a-e8579b309c54", + "Name": { + "en": "Combinative relation" + }, + "Code": "9.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ecf9ebd7-f991-41df-98cd-bcf1254d5d0b", + "Name": { + "en": "Go first" + }, + "Code": "7.2.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed2113c8-1784-4808-ab1a-fd269f86fa99", + "Name": { + "en": "Accounting" + }, + "Code": "6.8.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed4a2ca6-c03c-4c72-9431-b72fb7294b8f", + "Name": { + "en": "Wedding" + }, + "Code": "2.6.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed7930df-e7b4-43c9-a11a-b09521276b57", + "Name": { + "en": "Smell" + }, + "Code": "2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ed976bbe-4fb2-4365-b136-d2fce077a73f", + "Name": { + "en": "Back" + }, + "Code": "8.6.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "edbfc928-049c-4cb7-8c88-8e8af38287c7", + "Name": { + "en": "Romantic love" + }, + "Code": "2.6.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "edeb9458-3bdb-4d14-aaa1-6eb457307b9c", + "Name": { + "en": "Hortative" + }, + "Code": "9.4.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "edf17f72-7e7a-4f8d-a5ee-f4889492d73a", + "Name": { + "en": "Meaningless" + }, + "Code": "3.5.8.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee0585b1-627a-4a71-888d-b5d82619431e", + "Name": { + "en": "Names of countries" + }, + "Code": "9.7.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee446395-781b-4651-afef-cad78b71f843", + "Name": { + "en": "Reptile" + }, + "Code": "1.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee6e993c-5551-42ae-b35e-26bc6aeeb3a4", + "Name": { + "en": "Men\u0027s clothing" + }, + "Code": "5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ee8a20b7-4202-489a-b8cd-bdebaf770313", + "Name": { + "en": "Alcohol preparation" + }, + "Code": "5.2.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eea7c79b-6150-4aba-8105-a94b7e6aeab7", + "Name": { + "en": "Faithful" + }, + "Code": "4.3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eec72226-106c-4825-b245-6e18110ee917", + "Name": { + "en": "Roof" + }, + "Code": "6.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eeee02e1-157e-4786-ab92-80c92e5023b8", + "Name": { + "en": "Window" + }, + "Code": "6.5.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "eef8c50e-c391-482c-9f60-1bba2d8892b3", + "Name": { + "en": "Radio, television" + }, + "Code": "3.5.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef025cd9-dd92-442b-a8f9-fe7ac944ccec", + "Name": { + "en": "Catch" + }, + "Code": "7.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef409fc6-bd89-4cc6-ade5-abb882272313", + "Name": { + "en": "Prefer" + }, + "Code": "3.4.1.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef5ee2be-8a32-452a-818b-80191edb8e41", + "Name": { + "en": "Growing trees" + }, + "Code": "6.2.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef6d136e-ac1d-48b9-819d-252485534557", + "Name": { + "en": "Legal contract" + }, + "Code": "4.7.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef860ee3-a4a5-4a42-b810-fdf41e35d151", + "Name": { + "en": "Religious person" + }, + "Code": "4.9.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ef876104-eb3e-420d-9c7b-124538a7b2a6", + "Name": { + "en": "Point at" + }, + "Code": "3.5.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "efd03c89-bf8b-4d46-a921-06cc06f28356", + "Name": { + "en": "Participate" + }, + "Code": "4.2.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "efe8e7b5-e008-4a3a-b3e1-23ae03a0083e", + "Name": { + "en": "Cutting tool" + }, + "Code": "6.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "efef45bd-26be-46f8-b85b-424be55bcdac", + "Name": { + "en": "New" + }, + "Code": "8.4.6.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "effc49dd-6322-4302-899c-4cf540f0e2e4", + "Name": { + "en": "Prepared food" + }, + "Code": "5.2.3.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f02ae505-d6b7-4b30-9d97-8505d0d1a0c7", + "Name": { + "en": "Discourse markers" + }, + "Code": "9.6.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0404b23-db91-46c7-87e1-9f1be0712980", + "Name": { + "en": "Fable, myth" + }, + "Code": "3.5.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f07f867d-808f-4750-92ca-859aea59e58c", + "Name": { + "en": "Live, stay" + }, + "Code": "5.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0de6c5a-3df6-4483-8c63-2d8fcd6c97be", + "Name": { + "en": "Malnutrition, starvation" + }, + "Code": "2.5.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0e68d2f-f7b3-4722-80a4-8e9c5638b0d4", + "Name": { + "en": "Study" + }, + "Code": "3.2.2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0f3c371-166e-4a66-849f-60d6fa7ad889", + "Name": { + "en": "Poetry" + }, + "Code": "3.5.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f0fdbdfa-094e-4bec-ae19-af23d2c02ed6", + "Name": { + "en": "Contentment" + }, + "Code": "3.4.1.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f1373316-7917-4dca-9d33-c6b520bd4034", + "Name": { + "en": "Working with machines" + }, + "Code": "6.6.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f1af3f4c-6e0e-4cfa-adcf-9dcddf05feab", + "Name": { + "en": "Guess" + }, + "Code": "3.2.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f2022802-4f43-4fa2-8c58-33a8b9e75895", + "Name": { + "en": "Increase" + }, + "Code": "8.1.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f211defe-d80f-4e40-9842-af19cb0719e7", + "Name": { + "en": "Judaism" + }, + "Code": "4.9.7.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f2342d42-bdc4-449c-9891-58f90318b9f1", + "Name": { + "en": "News, message" + }, + "Code": "3.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f29dccae-1654-4eb7-8aae-04f7df4fe90c", + "Name": { + "en": "Right, proper" + }, + "Code": "8.3.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f2d0f288-5bbe-4fa0-9e8f-ddcc74891701", + "Name": { + "en": "Mourn" + }, + "Code": "2.6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f352a437-58f2-4920-aec3-eda8041f7447", + "Name": { + "en": "First" + }, + "Code": "8.4.5.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3627c41-5daf-4f73-ac42-8a0522035e0b", + "Name": { + "en": "Medicinal plants" + }, + "Code": "2.5.7.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3654a7f-d16e-4870-9ef0-4b4268faeffb", + "Name": { + "en": "Discontent" + }, + "Code": "3.4.2.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f38f8344-838f-44ba-b103-22289c2d2793", + "Name": { + "en": "Wet" + }, + "Code": "1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f39b14c4-52cf-4afa-956c-f0f5815ef6ac", + "Name": { + "en": "Check" + }, + "Code": "3.2.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3a26e0a-727f-43ab-9310-88b8cec8f6d7", + "Name": { + "en": "Temporary" + }, + "Code": "8.4.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3d162d7-da79-4ce4-9610-040f03b57d9d", + "Name": { + "en": "Unusual birth" + }, + "Code": "2.6.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f3dbb078-6265-4861-a6e3-46cc151c5d72", + "Name": { + "en": "Complain" + }, + "Code": "3.5.1.8.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4491f9b-3c5e-42ab-afc0-f22e19d0fff5", + "Name": { + "en": "Language and thought" + }, + "Code": "3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4580c19-ba9e-4f71-a46a-6f3c4b19c36c", + "Name": { + "en": "Travel by water" + }, + "Code": "7.2.4.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f45a456e-8e23-4364-8842-047cc73f529b", + "Name": { + "en": "Space, room" + }, + "Code": "8.5.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f472b2d2-b4d3-4852-914d-71b66bdb6f26", + "Name": { + "en": "Hang" + }, + "Code": "7.3.2.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f47d681b-4f0d-43ca-a465-2e1724825752", + "Name": { + "en": "Grandson, granddaughter" + }, + "Code": "4.1.9.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4829d9d-a93f-4fc5-918c-6d4c501a6573", + "Name": { + "en": "Out, outside" + }, + "Code": "8.5.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4b18e9c-b465-4763-ba79-d7eed2cebcfa", + "Name": { + "en": "Move sideways" + }, + "Code": "7.2.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4b77866-c607-43f0-b816-95459c269525", + "Name": { + "en": "Foolish talk" + }, + "Code": "3.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4ec8f2e-f89e-40c1-ae50-900927d20af6", + "Name": { + "en": "Impolite" + }, + "Code": "4.3.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4ed1712-c072-4213-b89d-eb3a9be233b2", + "Name": { + "en": "Natural" + }, + "Code": "1.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f4f99472-0b23-42b9-8b51-1d56fe24715b", + "Name": { + "en": "Multiple births" + }, + "Code": "2.6.3.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5156cde-9735-4249-920d-597fb0a7a8e3", + "Name": { + "en": "Break, wear out" + }, + "Code": "7.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f51bcafa-e624-4555-b8f1-b5726d74734d", + "Name": { + "en": "Laws" + }, + "Code": "4.7.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5567550-e3c9-4589-8f88-8159eadcd194", + "Name": { + "en": "Custom" + }, + "Code": "4.3.9.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5642647-9b9c-499b-a66e-349593c863f1", + "Name": { + "en": "Say nothing" + }, + "Code": "3.5.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f56a2511-10cc-4829-940d-49051429bfba", + "Name": { + "en": "Liquid" + }, + "Code": "1.2.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f595deab-1838-4ddb-9ebe-55fb3007b309", + "Name": { + "en": "Military organization" + }, + "Code": "4.8.3.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f5e2ad18-5ad4-4186-9572-b1542096759e", + "Name": { + "en": "Soldier" + }, + "Code": "4.8.3.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6134be5-3f96-4750-a03e-fca381a42db1", + "Name": { + "en": "Animism " + }, + "Code": "4.9.7.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6896060-4d5c-45e2-b89a-f9f6328a479c", + "Name": { + "en": "Usual" + }, + "Code": "8.3.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6e416b3-50b1-4e48-8a39-2998725b1c79", + "Name": { + "en": "Divorce" + }, + "Code": "2.6.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f6eb81d5-caba-4735-be6f-ae038656b555", + "Name": { + "en": "Crafts" + }, + "Code": "6.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f70907c6-a064-425a-830f-e669319c38da", + "Name": { + "en": "Lead" + }, + "Code": "4.5.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f718fc15-59b2-4b6a-a9e3-39b3e8d487d7", + "Name": { + "en": "Grow, get bigger" + }, + "Code": "2.6.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f726d9bb-ae80-4c01-bdef-b600cb27736e", + "Name": { + "en": "Business organization" + }, + "Code": "6.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f732bdb5-9a04-468a-b50b-510f94d20fb4", + "Name": { + "en": "Table" + }, + "Code": "5.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f74f28d1-8742-4c9f-95dc-d08336e91249", + "Name": { + "en": "Youth" + }, + "Code": "2.6.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f76c3803-1c7a-4181-9a87-64ae7231a67d", + "Name": { + "en": "Here, there" + }, + "Code": "8.5.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f77053f4-ed5a-4376-bcba-17552ea447ba", + "Name": { + "en": "Prepare something for use" + }, + "Code": "6.1.2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7706644-542f-4fcb-b8e1-e91d04c8032a", + "Name": { + "en": "Body condition" + }, + "Code": "2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7960e84-5af9-4999-9028-783058aa8c5c", + "Name": { + "en": "All" + }, + "Code": "8.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7b7eb3c-b784-4ba5-8dac-a68fd27ce0ea", + "Name": { + "en": "Plant diseases" + }, + "Code": "1.5.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7da1907-e6c5-4d21-a8e8-81376f3467df", + "Name": { + "en": "Conflict" + }, + "Code": "4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f7e625a6-53e3-4f9b-8764-119e3906f5cf", + "Name": { + "en": "Unmarried" + }, + "Code": "2.6.1.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f81b7632-3e5a-4a2d-8a93-648872a6616b", + "Name": { + "en": "Social group" + }, + "Code": "4.2.1.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f858278a-2727-4403-9cf0-565cdececb1e", + "Name": { + "en": "Condition" + }, + "Code": "9.6.2.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f883266a-146a-41c7-b1db-85120840c3a8", + "Name": { + "en": "Impossible" + }, + "Code": "9.4.4.9", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f8863b67-b911-4334-a1b6-6eb913bd14af", + "Name": { + "en": "Wide" + }, + "Code": "8.2.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f899802d-bd32-427f-a101-c84219f7e14e", + "Name": { + "en": "Substance, matter" + }, + "Code": "1.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f8c6a6a9-49f0-408a-9237-a66e852da7d3", + "Name": { + "en": "Calendar" + }, + "Code": "8.4.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f94e9041-49b0-4d25-aa54-9446c5ab45f4", + "Name": { + "en": "Instead" + }, + "Code": "9.6.1.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f950b7cc-fb85-4dbb-b8ca-934d38cae7fc", + "Name": { + "en": "Conjunctions" + }, + "Code": "9.2.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f9516c66-ac2c-49dd-951a-0d3606450463", + "Name": { + "en": "Discriminate, be unfair" + }, + "Code": "4.7.9.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f957a4aa-d3d4-4dad-93d1-20565b5158d4", + "Name": { + "en": "Cousin" + }, + "Code": "4.1.9.1.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f9935962-9a14-485d-9bef-bd4a52dd92c1", + "Name": { + "en": "Governing body" + }, + "Code": "4.6.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "f9d020d6-b129-4bb8-9509-3b4a6c27482e", + "Name": { + "en": "Interested" + }, + "Code": "3.4.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa32115e-e389-47bd-91e1-61779172ccf2", + "Name": { + "en": "Cause of disease" + }, + "Code": "2.5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa41dbc5-adbb-4ad0-9fd2-0278d4689a28", + "Name": { + "en": "Non-relative" + }, + "Code": "4.1.9.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa660c9d-8787-4335-8744-3dbc139b2df1", + "Name": { + "en": "Accuse, confront" + }, + "Code": "4.7.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fa8e72a0-1bfe-4b49-a287-293b44213960", + "Name": { + "en": "Adverbial clauses" + }, + "Code": "9.4.8", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "faf0ae24-6584-4766-a93b-389c1cb06d8d", + "Name": { + "en": "Turtle" + }, + "Code": "1.6.1.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fb84538a-17a8-4adc-8d50-e2b66f8e4099", + "Name": { + "en": "Number" + }, + "Code": "8.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fba27833-d6f1-4c36-ac39-28902b29261b", + "Name": { + "en": "Like, similar" + }, + "Code": "8.3.5.2.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fbf40f2e-e743-479d-80b2-63325407d5d1", + "Name": { + "en": "Markers of identificational and explanatory clauses " + }, + "Code": "9.6.3.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc0afb69-a4d4-439a-91cd-ed0ce67677b5", + "Name": { + "en": "Cooking methods" + }, + "Code": "5.2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc170f70-520e-4f3e-b8b8-98e4b898fd24", + "Name": { + "en": "Edge" + }, + "Code": "8.6.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc193988-26ca-49e9-849a-b12456d98792", + "Name": { + "en": "Crazy" + }, + "Code": "4.3.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc1e4ea7-15fa-4bbf-8697-f312762504ba", + "Name": { + "en": "Comb hair" + }, + "Code": "5.4.3.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fc82fcec-d03c-4fb0-bf62-714c71754402", + "Name": { + "en": "Adult" + }, + "Code": "2.6.4.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fcc204a3-eae4-46d1-a9dc-08864fde1772", + "Name": { + "en": "Less" + }, + "Code": "8.1.4.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fcd22c85-7ee1-4d31-8633-9dbd32344211", + "Name": { + "en": "Move toward something" + }, + "Code": "7.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fcf16495-5226-4192-afdb-e748192efc3a", + "Name": { + "en": "Year" + }, + "Code": "8.4.1.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fd33670e-ef16-4566-a62e-aa077e58407b", + "Name": { + "en": "Types of sounds" + }, + "Code": "2.3.2.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fd7e03f8-61c9-47e9-afa4-ab8917db03a5", + "Name": { + "en": "Appease" + }, + "Code": "4.8.4.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fd9b8618-1f62-419b-85c3-365a12e85523", + "Name": { + "en": "Agree with someone" + }, + "Code": "3.2.5.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fda0c1ac-5728-4ba2-9f8e-827f161b5bb1", + "Name": { + "en": "Watch" + }, + "Code": "2.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe58ae61-ab0b-43a4-86fb-d9aedd199932", + "Name": { + "en": "Mix" + }, + "Code": "7.5.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe66d433-5135-498e-a29d-b42bf0317252", + "Name": { + "en": "Meddle" + }, + "Code": "4.3.4.6", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe89a0f4-2155-424b-bf90-c1133dc41c8d", + "Name": { + "en": "Cabinet" + }, + "Code": "5.1.1.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fe9253f4-d063-4d63-91af-85273d61337f", + "Name": { + "en": "Compare" + }, + "Code": "8.3.5.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "feca6b23-1ca1-4d99-ac79-3672d1d1f7db", + "Name": { + "en": "Fine" + }, + "Code": "4.7.7.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fed2b7bd-2315-4085-b0a7-2ced988120f3", + "Name": { + "en": "Choose" + }, + "Code": "3.3.1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff0a16f2-c44d-4ed4-9520-c214acfb68e5", + "Name": { + "en": "Rule" + }, + "Code": "4.6.4", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff505092-6d88-4b5e-8095-04e471d7ad4c", + "Name": { + "en": "Resurrection" + }, + "Code": "4.9.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff736f67-197b-46b9-bc14-edbeb1fb3d5a", + "Name": { + "en": "Have wealth" + }, + "Code": "6.8.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff73fb69-7dac-43e2-876b-0ead264c3f2d", + "Name": { + "en": "Black" + }, + "Code": "8.3.3.3.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff7e3abd-6810-4128-83c9-701b4925c2fe", + "Name": { + "en": "Fire" + }, + "Code": "5.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ff9dfc70-526d-405e-b613-5a2a21c1b2d8", + "Name": { + "en": "Farm worker" + }, + "Code": "6.2.7", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffa13b7d-5eaa-43be-8518-51d9aa08f321", + "Name": { + "en": "Numbered group" + }, + "Code": "8.1.1.5", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffcc57f8-6c6d-4bf4-85be-9220ca7c739d", + "Name": { + "en": "Marriage" + }, + "Code": "2.6.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffd0547e-e537-4614-ac3f-6d8cd3351f33", + "Name": { + "en": "Parts of an animal" + }, + "Code": "1.6.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "ffe84c4f-8c38-4b84-ac36-e79ffadbd426", + "Name": { + "en": "Free of charge" + }, + "Code": "6.8.4.3.3", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "fffa74fb-5b5c-453f-9120-94686033d894", + "Name": { + "en": "Swim" + }, + "Code": "7.2.4.2.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound", + "pt": "Composto" + }, + "DeletedAt": null + }, + { + "Id": "98c273c4-f723-4fb0-80df-eede2204dfca", + "Name": { + "en": "Derivative", + "pt": "Derivado" + }, + "DeletedAt": null + }, + { + "Id": "964f8ac3-3e3b-4628-b766-030b5c009b1d", + "Name": { + "en": "Nominalized", + "pt": "Nominalizado" + }, + "DeletedAt": null + }, + { + "Id": "7d3b1116-4489-4cc1-bc17-1734198e044f", + "Name": { + "en": "Abstract", + "pt": "Substantivo Abstrato" + }, + "DeletedAt": null + }, + { + "Id": "5cf799f8-e257-4417-898a-ab272a711130", + "Name": { + "en": "Reflexive", + "pt": "Reci\u0301proca" + }, + "DeletedAt": null + }, + { + "Id": "6fcdabd6-a74f-47b1-b36d-bd40eaebed36", + "Name": { + "en": "Benefactive", + "pt": "Aplicativa" + }, + "DeletedAt": null + }, + { + "Id": "b2276dec-b1a6-4d82-b121-fd114c009c59", + "Name": { + "en": "Idiom", + "pt": "Palavra idioma\u0301tica" + }, + "DeletedAt": null + }, + { + "Id": "cce519d8-a9c5-4f28-9c7d-5370788bfbd5", + "Name": { + "en": "Keyterm Phrase", + "pt": "Frase de Palavra Chave" + }, + "DeletedAt": null + }, + { + "Id": "aa8efd98-0f8d-4276-89f5-65e012d6b9d8", + "Name": { + "en": "Phrasal Adjective", + "pt": "Frase Adjetival" + }, + "DeletedAt": null + }, + { + "Id": "35cee792-74c8-444e-a9b7-ed0461d4d3b7", + "Name": { + "en": "Phrasal Verb", + "pt": "Frase Verbal" + }, + "DeletedAt": null + }, + { + "Id": "9466d126-246e-400b-8bba-0703e09bc567", + "Name": { + "en": "Saying", + "pt": "Rifa\u0303o" + }, + "DeletedAt": null + }, + { + "Id": "73266a3a-48e8-4bd7-8c84-91c730340b7d", + "Name": { + "en": "Contraction" + }, + "DeletedAt": null + }, + { + "Id": "fec038ed-6a8c-4fa5-bc96-a4f515a98c50", + "Name": { + "en": "Unspecified Complex Form" + }, + "DeletedAt": null + } + ], + "WritingSystems": { + "Analysis": [ + { + "Id": "50067342-4e60-4e06-9afe-e661656a6827", + "MaybeId": "50067342-4e60-4e06-9afe-e661656a6827", + "WsId": "pt", + "IsAudio": false, + "Name": "pt", + "Abbreviation": "Por", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 1, + "Exemplars": [], + "Order": 1 + }, + { + "Id": "7e55601e-4c8d-4619-a5bc-3439219fe54f", + "MaybeId": "7e55601e-4c8d-4619-a5bc-3439219fe54f", + "WsId": "en", + "IsAudio": false, + "Name": "en", + "Abbreviation": "Eng", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 1, + "Exemplars": [], + "Order": 2 + } + ], + "Vernacular": [ + { + "Id": "9f6b2241-0b5c-479f-a0ae-53cda53f046d", + "MaybeId": "9f6b2241-0b5c-479f-a0ae-53cda53f046d", + "WsId": "seh", + "IsAudio": false, + "Name": "seh", + "Abbreviation": "Sen", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "-", + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 1 + }, + { + "Id": "58a3693a-5b16-4949-9ef7-bc4b777b6e42", + "MaybeId": "58a3693a-5b16-4949-9ef7-bc4b777b6e42", + "WsId": "seh-fonipa-x-etic", + "IsAudio": false, + "Name": "seh-fonipa-x-etic", + "Abbreviation": "Sen", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 0, + "Exemplars": [], + "Order": 2 + } + ] + } +} \ No newline at end of file diff --git a/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs b/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs index a527a28b89..174a5de21c 100644 --- a/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs +++ b/backend/FwLite/FwLiteProjectSync/CrdtFwdataProjectSyncService.cs @@ -131,7 +131,7 @@ public async Task RegenerateProjectSnapshot(IMiniLcmApi crdtApi, FwDataProject p await SaveProjectSnapshot(project, await crdtApi.TakeProjectSnapshot()); } - internal async Task SaveProjectSnapshot(FwDataProject project, ProjectSnapshot projectSnapshot) + internal static async Task SaveProjectSnapshot(FwDataProject project, ProjectSnapshot projectSnapshot) { var snapshotPath = SnapshotPath(project); await using var file = File.Create(snapshotPath); diff --git a/backend/FwLite/LcmCrdt.Tests/Changes/RegressionDeserializationData.json b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt similarity index 77% rename from backend/FwLite/LcmCrdt.Tests/Changes/RegressionDeserializationData.json rename to backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt index 7d74dfec83..5f14362cb3 100644 --- a/backend/FwLite/LcmCrdt.Tests/Changes/RegressionDeserializationData.json +++ b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.latest.verified.txt @@ -1,5 +1,4 @@ -//this file represents changes which are stored in projects and are immutable, we need to ensure these can be deserialized -[ +[ { "$type": "jsonPatch:Entry", "PatchDocument": [], @@ -121,14 +120,107 @@ "yat": "back up" }, "LiteralMeaning": { - "ysm": "withdrawal" + "ysm": { + "Spans": [ + { + "Text": "withdrawal", + "Ws": "ysm" + } + ] + } }, "Note": { - "zat": "transmit", - "mye": "hacking", - "hto": "Jewelery", - "juh": "indigo" + "zat": { + "Spans": [ + { + "Text": "transmit", + "Ws": "zat" + } + ] + }, + "mye": { + "Spans": [ + { + "Text": "hacking", + "Ws": "mye" + } + ] + }, + "hto": { + "Spans": [ + { + "Text": "Jewelery", + "Ws": "hto" + } + ] + }, + "juh": { + "Spans": [ + { + "Text": "indigo", + "Ws": "juh" + } + ] + } }, + "MorphType": null, + "EntityId": "46d2a7aa-186e-0820-6ab7-9d9f2c4359fb" + }, + { + "$type": "CreateEntryChange", + "LexemeForm": { + "kof": "Kip", + "bbv": "Belarus" + }, + "CitationForm": { + "ary": "Stand-alone", + "yat": "back up" + }, + "LiteralMeaning": { + "ysm": { + "Spans": [ + { + "Text": "withdrawal", + "Ws": "ysm" + } + ] + } + }, + "Note": { + "zat": { + "Spans": [ + { + "Text": "transmit", + "Ws": "zat" + } + ] + }, + "mye": { + "Spans": [ + { + "Text": "hacking", + "Ws": "mye" + } + ] + }, + "hto": { + "Spans": [ + { + "Text": "Jewelery", + "Ws": "hto" + } + ] + }, + "juh": { + "Spans": [ + { + "Text": "indigo", + "Ws": "juh" + } + ] + } + }, + "MorphType": "Infix", "EntityId": "46d2a7aa-186e-0820-6ab7-9d9f2c4359fb" }, { @@ -136,8 +228,22 @@ "EntryId": "9403f290-4497-4ecc-5744-1cf7f402498a", "Order": 0.25164027577075543, "Definition": { - "mmt": "Customer", - "cdm": "intranet" + "mmt": { + "Spans": [ + { + "Text": "Customer", + "Ws": "mmt" + } + ] + }, + "cdm": { + "Spans": [ + { + "Text": "intranet", + "Ws": "cdm" + } + ] + } }, "Gloss": { "pix": "Small Steel Pizza", @@ -162,13 +268,41 @@ "SenseId": "f3e4f3fe-1a2c-7096-fdf6-64df12809e1a", "Order": 0.18532264410517607, "Sentence": { - "liq": "Secured", - "kax": "ADP" + "liq": { + "Spans": [ + { + "Text": "Secured", + "Ws": "liq" + } + ] + }, + "kax": { + "Spans": [ + { + "Text": "ADP", + "Ws": "kax" + } + ] + } }, "Translation": { - "xtq": "New Jersey" + "xtq": { + "Spans": [ + { + "Text": "New Jersey", + "Ws": "xtq" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Automotive", + "Ws": "default" + } + ] }, - "Reference": "Automotive", "EntityId": "5a96652c-32d0-72ad-a29c-8ee1b07b187a" }, { @@ -220,11 +354,20 @@ }, { "$type": "AddEntryComponentChange", + "Order": 0, "ComplexFormEntryId": "5b1d27c0-8990-0417-5e31-071c5f48ac9a", "ComponentEntryId": "e476003d-69b4-1e84-46f2-f2dee858388f", "ComponentSenseId": "434e9e2b-dad3-5fcb-f1e3-cd00aae5df10", "EntityId": "74c8a80a-8be4-c950-c9d0-ebbf5da1ec21" }, + { + "$type": "AddEntryComponentChange", + "Order": 0.5313593686857879, + "ComplexFormEntryId": "857a32f0-591b-6e64-4131-27b6af12d26c", + "ComponentEntryId": "8a0751c4-4997-9cd9-013a-32cfe45bc363", + "ComponentSenseId": "43bb0d17-fdcc-8560-9de8-786bad020ecd", + "EntityId": "e3e65484-d52c-50ae-5a9c-25db4d870bd6" + }, { "$type": "AddEntryComponentChange", "Order": 0.5345900716748275, @@ -337,17 +480,6 @@ }, "EntityId": "a024fdbe-52a4-6447-aae3-50fd8b815f10" }, - { - "$type": "CreateExampleSentenceChange", - "order": 1, - "senseId": "e9188e00-7088-48e3-84e8-526583e5d6b3", - "entityId": "f5db4283-2217-4123-8d5e-527d4c51adbe", - "sentence": {}, - "reference": { - "spans": [] - }, - "translation": {} - }, { "$type": "uploaded:RemoteResource", "RemoteId": "withdrawal", @@ -366,4 +498,4 @@ "$type": "delete:RemoteResource", "EntityId": "e14de071-3ed0-b12a-7865-da43fbfe8f84" } -] +] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.legacy.verified.txt b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.legacy.verified.txt new file mode 100644 index 0000000000..ba45b2fa76 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeDeserializationRegressionData.legacy.verified.txt @@ -0,0 +1,247 @@ +[ + { + "Input": { + "$type": "CreateEntryChange", + "LexemeForm": { + "kof": "Kip", + "bbv": "Belarus" + }, + "CitationForm": { + "ary": "Stand-alone", + "yat": "back up" + }, + "LiteralMeaning": { + "ysm": "withdrawal" + }, + "Note": { + "zat": "transmit", + "mye": "hacking", + "hto": "Jewelery", + "juh": "indigo" + }, + "EntityId": "46d2a7aa-186e-0820-6ab7-9d9f2c4359fb" + }, + "Output": { + "$type": "CreateEntryChange", + "LexemeForm": { + "kof": "Kip", + "bbv": "Belarus" + }, + "CitationForm": { + "ary": "Stand-alone", + "yat": "back up" + }, + "LiteralMeaning": { + "ysm": { + "Spans": [ + { + "Text": "withdrawal", + "Ws": "ysm" + } + ] + } + }, + "Note": { + "zat": { + "Spans": [ + { + "Text": "transmit", + "Ws": "zat" + } + ] + }, + "mye": { + "Spans": [ + { + "Text": "hacking", + "Ws": "mye" + } + ] + }, + "hto": { + "Spans": [ + { + "Text": "Jewelery", + "Ws": "hto" + } + ] + }, + "juh": { + "Spans": [ + { + "Text": "indigo", + "Ws": "juh" + } + ] + } + }, + "MorphType": null, + "EntityId": "46d2a7aa-186e-0820-6ab7-9d9f2c4359fb" + } + }, + { + "Input": { + "$type": "CreateSenseChange", + "EntryId": "9403f290-4497-4ecc-5744-1cf7f402498a", + "Order": 0.25164027577075543, + "Definition": { + "mmt": "Customer", + "cdm": "intranet" + }, + "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 + } + ], + "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" + }, + "Code": "Open-architected", + "DeletedAt": "2025-01-20T05:49:30.5251959+07:00", + "Predefined": false + } + ], + "EntityId": "fb918ba0-ba5e-7977-312e-3028d1295dd8" + } + }, + { + "Input": { + "$type": "CreateExampleSentenceChange", + "SenseId": "f3e4f3fe-1a2c-7096-fdf6-64df12809e1a", + "Order": 0.18532264410517607, + "Sentence": { + "liq": "Secured", + "kax": "ADP" + }, + "Translation": { + "xtq": "New Jersey" + }, + "Reference": "Automotive", + "EntityId": "5a96652c-32d0-72ad-a29c-8ee1b07b187a" + }, + "Output": { + "$type": "CreateExampleSentenceChange", + "SenseId": "f3e4f3fe-1a2c-7096-fdf6-64df12809e1a", + "Order": 0.18532264410517607, + "Sentence": { + "liq": { + "Spans": [ + { + "Text": "Secured", + "Ws": "liq" + } + ] + }, + "kax": { + "Spans": [ + { + "Text": "ADP", + "Ws": "kax" + } + ] + } + }, + "Translation": { + "xtq": { + "Spans": [ + { + "Text": "New Jersey", + "Ws": "xtq" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Automotive", + "Ws": "default" + } + ] + }, + "EntityId": "5a96652c-32d0-72ad-a29c-8ee1b07b187a" + } + }, + { + "Input": { + "$type": "AddEntryComponentChange", + "ComplexFormEntryId": "5b1d27c0-8990-0417-5e31-071c5f48ac9a", + "ComponentEntryId": "e476003d-69b4-1e84-46f2-f2dee858388f", + "ComponentSenseId": "434e9e2b-dad3-5fcb-f1e3-cd00aae5df10", + "EntityId": "74c8a80a-8be4-c950-c9d0-ebbf5da1ec21" + }, + "Output": { + "$type": "AddEntryComponentChange", + "Order": 0, + "ComplexFormEntryId": "5b1d27c0-8990-0417-5e31-071c5f48ac9a", + "ComponentEntryId": "e476003d-69b4-1e84-46f2-f2dee858388f", + "ComponentSenseId": "434e9e2b-dad3-5fcb-f1e3-cd00aae5df10", + "EntityId": "74c8a80a-8be4-c950-c9d0-ebbf5da1ec21" + } + }, + { + "Input": { + "$type": "CreateExampleSentenceChange", + "order": 1, + "senseId": "e9188e00-7088-48e3-84e8-526583e5d6b3", + "entityId": "f5db4283-2217-4123-8d5e-527d4c51adbe", + "sentence": {}, + "reference": { + "spans": [] + }, + "translation": {} + }, + "Output": { + "$type": "CreateExampleSentenceChange", + "SenseId": "00000000-0000-0000-0000-000000000000", + "Order": 0, + "Sentence": null, + "Translation": null, + "Reference": null, + "EntityId": "00000000-0000-0000-0000-000000000000" + } + } +] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeSerializationTests.cs b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeSerializationTests.cs index 97618a0d7f..04f0caa567 100644 --- a/backend/FwLite/LcmCrdt.Tests/Changes/ChangeSerializationTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/Changes/ChangeSerializationTests.cs @@ -1,63 +1,59 @@ +using System.Buffers; using System.Reflection; -using System.Runtime.CompilerServices; using System.Text.Json; +using System.Text.Json.Nodes; using FluentAssertions.Execution; using LcmCrdt.Changes; using LcmCrdt.Changes.Entries; -using MiniLcm.Tests.AutoFakerHelpers; +using LcmCrdt.Tests.Data; using SIL.Harmony.Changes; -using SIL.WritingSystems; -using Soenneker.Utils.AutoBogus; using SystemTextJsonPatch; namespace LcmCrdt.Tests.Changes; -public class ChangeSerializationTests +public class ChangeSerializationTests : BaseSerializationTest { - private static readonly Lazy LazyOptions = new(() => + private static IEnumerable GeneratedChangesForType(Type type) { - var config = new CrdtConfig(); - LcmCrdtKernel.ConfigureCrdt(config); - config.JsonSerializerOptions.ReadCommentHandling = JsonCommentHandling.Skip; - return config.JsonSerializerOptions; - }); - private static readonly JsonSerializerOptions Options = LazyOptions.Value; - private static readonly AutoFaker Faker = new() - { - Config = AutoFakerDefault.MakeConfig(repeatCount: 1) - }; - - private static IEnumerable GeneratedChanges() - { - foreach (var type in LcmCrdtKernel.AllChangeTypes()) + //can't generate this type because there's no public constructor + if (type == typeof(SetComplexFormComponentChange)) { - //can't generate this type because there's no public constructor, so its specified below - if (type == typeof(SetComplexFormComponentChange)) continue; + yield return SetComplexFormComponentChange.NewComplexForm(Guid.NewGuid(), Guid.NewGuid()); + yield return SetComplexFormComponentChange.NewComponent(Guid.NewGuid(), Guid.NewGuid()); + yield return SetComplexFormComponentChange.NewComponentSense(Guid.NewGuid(), Guid.NewGuid(), Guid.NewGuid()); + yield break; + } - object change; - if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(JsonPatchChange<>)) + object change; + if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(JsonPatchChange<>)) + { + change = PatchMethod.MakeGenericMethod(type.GenericTypeArguments[0]).Invoke(null, null)!; + } + else + { + try { - change = PatchMethod.MakeGenericMethod(type.GenericTypeArguments[0]).Invoke(null, null)!; + change = Faker.Generate(type); } - else + catch (Exception e) { - try - { - change = Faker.Generate(type); - } - catch (Exception e) - { - throw new Exception($"Failed to generate change of type {type.Name}", e); - } + throw new Exception($"Failed to generate change of type {type.Name}", e); } - - change.Should().NotBeNull($"change type {type.Name} should have been generated").And.BeAssignableTo(); - yield return (IChange) change; } - yield return SetComplexFormComponentChange.NewComplexForm(Guid.NewGuid(), Guid.NewGuid()); - yield return SetComplexFormComponentChange.NewComponent(Guid.NewGuid(), Guid.NewGuid()); - yield return SetComplexFormComponentChange.NewComponentSense(Guid.NewGuid(), Guid.NewGuid(), Guid.NewGuid()); + change.Should().NotBeNull($"change type {type.Name} should have been generated").And.BeAssignableTo(); + yield return (IChange)change; + } + + private static IEnumerable GeneratedChanges() + { + foreach (var type in LcmCrdtKernel.AllChangeTypes()) + { + foreach (var change in GeneratedChangesForType(type)) + { + yield return change; + } + } } public static IEnumerable Changes() @@ -103,12 +99,13 @@ public void ChangesIncludesAllValidChangeTypes() } [Fact] - public void CanDeserializeRegressionData() + public void CanDeserializeLatestRegressionData() { - //this file represents projects which already have changes applied, we want to ensure that we don't break anything. - //nothing should ever be removed from this file - //if a new property is added then a new json object should be added with that property - using var jsonFile = File.OpenRead(GetJsonFilePath("RegressionDeserializationData.json")); + //nothing should ever be removed from this file! + //it represents changes that could be out in the wild and we need to support + //changes are updated and appended by RegressionDataUpToDate() whenever it finds a "latest" change that doesn't stably round-trip + //or when it finds a change type that isn't represented + using var jsonFile = File.OpenRead(GetJsonFilePath("ChangeDeserializationRegressionData.latest.verified.txt")); var changes = JsonSerializer.Deserialize>(jsonFile, Options); changes.Should().NotBeNullOrEmpty().And.NotContainNulls(); @@ -123,18 +120,118 @@ public void CanDeserializeRegressionData() } } + private record LegacyChangeRecord(IChange Input, IChange Output); + + [Fact] + public void CanDeserializeLegacyRegressionData() + { + //nothing should ever be removed from this file! + //the input fields represent changes that could be out in the wild and we need to support + //the output fields represent what these legacy changes currently "reserialize" to + //RegressionDataUpToDate() + // (1) moves changes here from RegressionDeserializationData.latest.verified.txt + // when it detects that they don't stably round-trip and + // (2) keeps the round-trip output of the changes up to date + using var jsonFile = File.OpenRead(GetJsonFilePath("ChangeDeserializationRegressionData.legacy.verified.txt")); + var changes = JsonSerializer.Deserialize>(jsonFile, Options); + changes.Should().NotBeNullOrEmpty().And.NotContainNulls(); + changes.SelectMany(c => new[] { c.Input, c.Output }) + .Should().NotContainNulls() + .And.HaveCount(changes.Count * 2); + } + + [Fact] + public async Task RegressionDataUpToDate() + { + var legacyJsonArray = ReadJsonArrayFromFile(GetJsonFilePath("ChangeDeserializationRegressionData.legacy.verified.txt")); + var latestJsonArray = ReadJsonArrayFromFile(GetJsonFilePath("ChangeDeserializationRegressionData.latest.verified.txt")); + var newLatestJsonArray = new JsonArray(); + + // step 1: validate the round-tripping/output of legacy changes + foreach (var legacyJsonNode in legacyJsonArray) + { + legacyJsonNode.Should().NotBeNull(); + var legacyJson = ToNormalizedIndentedJsonString(legacyJsonNode[nameof(LegacyChangeRecord.Input)]!); + legacyJson.Should().NotBeNullOrWhiteSpace(); + var legacyOutputJson = ToNormalizedIndentedJsonString(legacyJsonNode[nameof(LegacyChangeRecord.Output)]!); + legacyOutputJson.Should().NotBeNullOrWhiteSpace(); + var change = JsonSerializer.Deserialize(legacyJson, Options); + change.Should().NotBeNull(); + var newLegacyOutputJson = JsonSerializer.Serialize(change, OptionsIndented); + if (legacyOutputJson != newLegacyOutputJson) + { + //the legacy change no longer round-trips to the same output, so we should verify the new output + legacyJsonNode[nameof(LegacyChangeRecord.Output)] = JsonNode.Parse(newLegacyOutputJson); + } + } + + // step 2: validate the round-tripping/output of latest changes, moving any that don't to legacy + var seenChangeTypes = new HashSet(); + foreach (var latestJsonNode in latestJsonArray) + { + latestJsonNode.Should().NotBeNull(); + var latestJson = ToNormalizedIndentedJsonString(latestJsonNode); + latestJson.Should().NotBeNullOrWhiteSpace(); + var change = JsonSerializer.Deserialize(latestJsonNode, Options); + change.Should().NotBeNull(); + seenChangeTypes.Add(change.GetType()); + var newLatestJson = JsonSerializer.Serialize(change, OptionsIndented); + + if (latestJson != newLatestJson) + { + // The current "latest" json doesn't match it's reserialized form. + // I.e. it's no longer the latest. It's now legacy + legacyJsonArray.Add(new JsonObject + { + [nameof(LegacyChangeRecord.Input)] = latestJsonNode.DeepClone(), + [nameof(LegacyChangeRecord.Output)] = JsonNode.Parse(newLatestJson) + }); + newLatestJsonArray.Add(JsonNode.Parse(newLatestJson)); + // Additionally we add brand new generated changes of the type. + // If the new model only changes the representation of the same data then this might not be helpful. + // However, we typically change the model in order to add new data, so the generated change will exercise that new data. + // Anyhow, it's much easier for a dev to remove unwanted changes than + // to generate and insert them manually. We can remove this if it's too noisy. + foreach (var generatedChange in GeneratedChangesForType(change.GetType())) + { + var serialized = JsonSerializer.Serialize(generatedChange, OptionsIndented); + newLatestJsonArray.Add(JsonNode.Parse(serialized)); + } + } + else + { + // it's still the latest + newLatestJsonArray.Add(latestJsonNode.DeepClone()); + } + } + + // step 3: add changes for any change types not already represented + foreach (var changeType in LcmCrdtKernel.AllChangeTypes() + .Where(changeType => !seenChangeTypes.Contains(changeType))) + { + foreach (var generatedChange in GeneratedChangesForType(changeType)) + { + var serialized = JsonSerializer.Serialize(generatedChange, OptionsIndented); + newLatestJsonArray.Add(JsonNode.Parse(serialized)); + } + } + + await Task.WhenAll( + Verify(SerializeRegressionData(legacyJsonArray)) + .UseStrictJson() + .UseFileName("ChangeDeserializationRegressionData.legacy"), + Verify(SerializeRegressionData(newLatestJsonArray)) + .UseStrictJson() + .UseFileName("ChangeDeserializationRegressionData.latest") + ); + } + //helper method, can be called manually to regenerate the json file + //Note: RegressionDataUpToDate() should generate new changes as necessary [Fact(Skip = "Only run manually")] public static void GenerateNewJsonFile() { using var jsonFile = File.Open(GetJsonFilePath("NewJson.json"), FileMode.Create); - JsonSerializer.Serialize(jsonFile, GeneratedChanges(), Options); - } - - private static string GetJsonFilePath(string name, [CallerFilePath] string sourceFile = "") - { - return Path.Combine( - Path.GetDirectoryName(sourceFile) ?? throw new InvalidOperationException("Could not get directory of source file"), - name); + JsonSerializer.Serialize(jsonFile, GeneratedChanges(), OptionsIndented); } } diff --git a/backend/FwLite/LcmCrdt.Tests/Data/BaseSerializationTest.cs b/backend/FwLite/LcmCrdt.Tests/Data/BaseSerializationTest.cs new file mode 100644 index 0000000000..c32df3dd13 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/BaseSerializationTest.cs @@ -0,0 +1,108 @@ +using System.Buffers; +using System.Runtime.CompilerServices; +using System.Text; +using System.Text.Json; +using System.Text.Json.Nodes; +using MiniLcm.Tests.AutoFakerHelpers; +using Soenneker.Utils.AutoBogus; +using Soenneker.Utils.AutoBogus.Config; + +namespace LcmCrdt.Tests.Data; + +public abstract class BaseSerializationTest +{ + protected static readonly Lazy LazyOptions = new(() => + { + var config = new CrdtConfig(); + LcmCrdtKernel.ConfigureCrdt(config); + config.JsonSerializerOptions.ReadCommentHandling = JsonCommentHandling.Skip; + return config.JsonSerializerOptions; + }); + + protected static readonly JsonSerializerOptions Options = LazyOptions.Value; + protected static readonly JsonSerializerOptions OptionsIndented = new(Options) + { + WriteIndented = true, + }; + private static AutoFakerConfig GetAutoFakerConfig() + { + var config = AutoFakerDefault.MakeConfig(repeatCount: 1, minimalRichSpans: true); + config.Overrides!.AddRange( + // We're generating object snapshots, which don't include related entities + // so we clear them to reflect real snapshots. + new SimpleOverride(context => + { + if (context.Instance is Entry entry) + { + entry.Senses = []; + entry.ComplexForms = []; + entry.Components = []; + } + }, true), + new SimpleOverride(context => + { + if (context.Instance is Sense sense) + { + sense.ExampleSentences = []; + } + }, true) + ); + return config; + } + protected static readonly AutoFaker Faker = new() + { + Config = GetAutoFakerConfig(), + }; + + protected static string GetJsonFilePath(string name, [CallerFilePath] string sourceFile = "") + { + return Path.Combine( + Path.GetDirectoryName(sourceFile) ?? + throw new InvalidOperationException("Could not get directory of source file"), + name); + } + + protected static string SerializeRegressionData(JsonArray jsonArray) + { + return JsonSerializer.Serialize(jsonArray, new JsonSerializerOptions + { + WriteIndented = true, + Encoder = Options.Encoder, + }) + // The "+" in DateTimeOffsets does not get escaped by our standard crdt serializer, + // but it does here. Presumably, because it's reading it as a string and not a DateTimeOffset + .Replace("\\u002B", "+"); + } + + private static readonly JsonWriterOptions GenericJsonWriterOptions = new() + { + Indented = true, + Encoder = Options.Encoder, + }; + + protected static string ToNormalizedIndentedJsonString(JsonNode element) + { + var buffer = new ArrayBufferWriter(); + using (var writer = new Utf8JsonWriter(buffer, GenericJsonWriterOptions)) + { + element.WriteTo(writer); + } + return Encoding.UTF8.GetString(buffer.WrittenSpan) + // The "+" in DateTimeOffsets does not get escaped by our standard crdt serializer, + // but it does here. Presumably, because it's reading it as a string and not a DateTimeOffset + .Replace("\\u002B", "+"); + } + + protected static JsonArray ReadJsonArrayFromFile(string path) + { + if (!File.Exists(path)) return []; + + using var stream = File.OpenRead(path); + var node = JsonNode.Parse(stream, null, new() + { + AllowTrailingCommas = true, + CommentHandling = JsonCommentHandling.Skip + }) ?? throw new InvalidOperationException("Could not parse json array"); + return node.AsArray(); + } +} diff --git a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs index 4dc79198c5..51e31b07ee 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests.cs @@ -1,17 +1,29 @@ +using System.Diagnostics.CodeAnalysis; using System.Runtime.CompilerServices; +using System.Text.Json; +using LcmCrdt.Changes; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Options; +using SIL.Harmony.Changes; +using SIL.Harmony.Core; +using SIL.Harmony.Db; namespace LcmCrdt.Tests.Data; -public class MigrationTests: IAsyncLifetime +public class MigrationTests : IAsyncLifetime { private readonly RegressionTestHelper _helper = new("MigrationTest"); - public async Task InitializeAsync() + [ModuleInitializer] + internal static void Init() { - await _helper.InitializeAsync(); + VerifySystemJson.Initialize(); + } + + public Task InitializeAsync() + { + return Task.CompletedTask; } public async Task DisposeAsync() @@ -19,9 +31,12 @@ public async Task DisposeAsync() await _helper.DisposeAsync(); } - [Fact] - public async Task GetEntries_WorksAfterMigrationFromScriptedDb() + [Theory] + [InlineData(RegressionTestHelper.RegressionVersion.v1)] + [InlineData(RegressionTestHelper.RegressionVersion.v2)] + public async Task GetEntries_WorksAfterMigrationFromScriptedDb(RegressionTestHelper.RegressionVersion regressionVersion) { + await _helper.InitializeAsync(regressionVersion); var api = _helper.Services.GetRequiredService(); var hasEntries = false; await foreach (var entry in api.GetEntries(new(Count: 100))) @@ -32,4 +47,167 @@ public async Task GetEntries_WorksAfterMigrationFromScriptedDb() hasEntries.Should().BeTrue(); } + + [Theory] + [InlineData(RegressionTestHelper.RegressionVersion.v1)] + [InlineData(RegressionTestHelper.RegressionVersion.v2)] + public async Task VerifyAfterMigrationFromScriptedDb(RegressionTestHelper.RegressionVersion regressionVersion) + { + await _helper.InitializeAsync(regressionVersion); + var api = _helper.Services.GetRequiredService(); + var crdtConfig = _helper.Services.GetRequiredService>().Value; + // todo use TestJsonOptions instead + var jsonSerializerOptions = new JsonSerializerOptions(crdtConfig.JsonSerializerOptions) + { + WriteIndented = true + }; + + await using var dbContext = await _helper.Services.GetRequiredService().CreateDbContextAsync(); + var snapshots = await dbContext.Snapshots.AsNoTracking() + .OrderBy(s => s.TypeName) + .ThenBy(s => s.EntityId) + .ThenBy(c => c.Commit.HybridDateTime.DateTime) + .ThenBy(c => c.Commit.HybridDateTime.Counter) + .ThenBy(c => c.Commit.Id) + .ToArrayAsync(); + + var entityIdToTypeName = snapshots + .GroupBy(s => s.EntityId) + .ToDictionary(g => g.Key, g => g.First().TypeName); + var changes = (await dbContext.Commits.AsNoTracking().Include(c => c.ChangeEntities) + .ToArrayAsync()) + .SelectMany(c => c.ChangeEntities.Select(changeEntity => new { ChangeEntity = changeEntity, c.HybridDateTime })) + .OrderBy(s => entityIdToTypeName[s.ChangeEntity.EntityId]) + .ThenBy(c => c.ChangeEntity.EntityId) + .ThenBy(c => c.HybridDateTime.DateTime) + .ThenBy(c => c.HybridDateTime.Counter) + .ThenBy(c => c.ChangeEntity.CommitId) + .Select(c => c.ChangeEntity) + .ToArray(); + var project = await TakeProjectSnapshot(api); + + var snapshotsJson = JsonSerializer.Serialize(snapshots, jsonSerializerOptions); + var changesJson = JsonSerializer.Serialize(changes, jsonSerializerOptions); + var projectJson = JsonSerializer.Serialize(project, jsonSerializerOptions); + + await Task.WhenAll( + Verify(snapshotsJson) + .UseStrictJson() + .UseFileName($"MigrationTests_FromScriptedDb.{regressionVersion}.Snapshots"), + Verify(changesJson) + .UseStrictJson() + .UseFileName($"MigrationTests_FromScriptedDb.{regressionVersion}.ChangeEntities"), + Verify(projectJson) + .UseStrictJson() + .UseFileName($"MigrationTests_FromScriptedDb.{regressionVersion}.ProjectSnapshot") + ); + } + + + [Theory] + [InlineData(RegressionTestHelper.RegressionVersion.v1)] + [InlineData(RegressionTestHelper.RegressionVersion.v2)] + public async Task VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb(RegressionTestHelper.RegressionVersion regressionVersion) + { + await _helper.InitializeAsync(regressionVersion); + var api = _helper.Services.GetRequiredService(); + var crdtConfig = _helper.Services.GetRequiredService>().Value; + // todo use TestJsonOptions instead + var jsonSerializerOptions = new JsonSerializerOptions(crdtConfig.JsonSerializerOptions) + { + WriteIndented = true + }; + + await using var dbContext = await _helper.Services.GetRequiredService().CreateDbContextAsync(); + await using var dataModel = _helper.Services.GetRequiredService(); + var syncable = dataModel as ISyncable; + + // slighty hacky way to regenerate snapshots + // could also use dataModel.RegenerateSnapshots(), but that currently has a connection issue + // and it also doesn't support regenerating from a given point in time + var (noOpCommit, noOpEntityId) = NewNoOpCommit(new HybridDateTime(DateTimeOffset.MinValue, 0)); + await syncable.AddRangeFromSync([noOpCommit]); + + var commits = await dbContext.Commits.AsNoTracking().ToArrayAsync(); + var commitIdToHybridDateTime = commits.ToDictionary(c => c.Id, c => c.HybridDateTime); + + var latestSnapshots = (await dataModel.GetLatestSnapshots() + .Where(s => s.EntityId != noOpEntityId) + .ToArrayAsync()) + .OrderBy(s => s.TypeName) + .ThenBy(s => s.EntityId) + .ThenBy(c => commitIdToHybridDateTime[c.CommitId].DateTime) + .ThenBy(c => commitIdToHybridDateTime[c.CommitId].Counter) + .ThenBy(c => c.CommitId); + + // this happens to result in null properties being omitted, which is probably fine + // strangely VerifyJson(string).UseStrictJson() keeps null properties, but omits empty arrays and objects, which seems bizarre + var snapshotsJson = JsonSerializer.SerializeToDocument(latestSnapshots, jsonSerializerOptions); + + // it would be nice to only scrub the snapshot Guid, because those are the only ones that should be different, + // but Verify doesn't have a way to do that, so we just let it scrub all of them + await Verify(snapshotsJson) + .UseStrictJson() + .UseFileName($"VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.{regressionVersion}"); + } + + private static async Task TakeProjectSnapshot(IMiniLcmReadApi api) + { + return new ProjectSnapshot( + await api.GetAllEntries() + .OrderBy(e => e.Id) + .ToArrayAsync(), + await api.GetPartsOfSpeech() + .OrderBy(p => p.Id) + .ToArrayAsync(), + await api.GetPublications() + .OrderBy(p => p.Id) + .ToArrayAsync(), + await api.GetSemanticDomains() + .OrderBy(d => d.Id) + .ToArrayAsync(), + await api.GetComplexFormTypes() + .OrderBy(c => c.Id) + .ToArrayAsync(), + await api.GetWritingSystems()); + } + + private static (Commit Commit, Guid EntityId) NewNoOpCommit(HybridDateTime hybridDate) + { + var commitId = Guid.NewGuid(); + var entityId = Guid.NewGuid(); + return (new FakeCommit(commitId, hybridDate) + { + ClientId = Guid.NewGuid(), + ChangeEntities = [ + new ChangeEntity() + { + Index = 0, + CommitId = commitId, + EntityId = entityId, + Change = new CreateEntryChange(new Entry() + { + Id = entityId, + }), + }, + new ChangeEntity() + { + Index = 1, + CommitId = commitId, + EntityId = entityId, + Change = new DeleteChange(Guid.NewGuid()), + }, + ], + }, entityId); + } + + private class FakeCommit : Commit + { + [SetsRequiredMembers] + public FakeCommit(Guid id, HybridDateTime hybridDateTime) : base(id, "", NullParentHash, hybridDateTime) + { + HybridDateTime = hybridDateTime; + SetParentHash(NullParentHash); + } + } } 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 new file mode 100644 index 0000000000..ddc46f1e59 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ChangeEntities.verified.txt @@ -0,0 +1,299 @@ +[ + { + "Index": 0, + "CommitId": "dc60d2a9-0cc2-48ed-803c-a238a14b6eae", + "EntityId": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "Change": { + "$type": "CreateComplexFormType", + "Name": { + "en": "Compound" + }, + "EntityId": "c36f55ed-d1ea-4069-90b3-3f35ff696273" + } + }, + { + "Index": 1, + "CommitId": "dc60d2a9-0cc2-48ed-803c-a238a14b6eae", + "EntityId": "eeb78fce-6009-4932-aaa6-85faeb180c69", + "Change": { + "$type": "CreateComplexFormType", + "Name": { + "en": "Unspecified" + }, + "EntityId": "eeb78fce-6009-4932-aaa6-85faeb180c69" + } + }, + { + "Index": 0, + "CommitId": "0e5ca1d3-7502-43ec-b03d-fa83899e0972", + "EntityId": "b802e01f-fac1-42b8-b605-a5bbb7efcdc1", + "Change": { + "$type": "CreateEntryChange", + "LexemeForm": { + "en": "Apple" + }, + "CitationForm": { + "en": "Apple" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "Note": {}, + "MorphType": null, + "EntityId": "b802e01f-fac1-42b8-b605-a5bbb7efcdc1" + } + }, + { + "Index": 2, + "CommitId": "0e5ca1d3-7502-43ec-b03d-fa83899e0972", + "EntityId": "30a0dcc4-06b1-4402-b78e-745712c4cd2d", + "Change": { + "$type": "CreateExampleSentenceChange", + "SenseId": "d510aa82-5557-4dd4-8b1f-1ec89facb979", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "We ate an apple", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "EntityId": "30a0dcc4-06b1-4402-b78e-745712c4cd2d" + } + }, + { + "Index": 0, + "CommitId": "023faebb-711b-4d2f-b34f-a15621fc66bb", + "EntityId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Change": { + "$type": "CreatePartOfSpeechChange", + "Name": { + "en": "Adverb" + }, + "Predefined": true, + "EntityId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" + } + }, + { + "Index": 0, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d0", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Universe, Creation" + }, + "Predefined": true, + "Code": "1", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d0" + } + }, + { + "Index": 1, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d1", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Sky" + }, + "Predefined": true, + "Code": "1.1", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d1" + } + }, + { + "Index": 2, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d2", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "World" + }, + "Predefined": true, + "Code": "1.2", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d2" + } + }, + { + "Index": 3, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d3", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Person" + }, + "Predefined": true, + "Code": "2", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d3" + } + }, + { + "Index": 4, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Body" + }, + "Predefined": true, + "Code": "2.1", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4" + } + }, + { + "Index": 5, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Head" + }, + "Predefined": true, + "Code": "2.1.1", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5" + } + }, + { + "Index": 6, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Eye" + }, + "Predefined": true, + "Code": "2.1.1.1", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6" + } + }, + { + "Index": 1, + "CommitId": "0e5ca1d3-7502-43ec-b03d-fa83899e0972", + "EntityId": "d510aa82-5557-4dd4-8b1f-1ec89facb979", + "Change": { + "$type": "CreateSenseChange", + "EntryId": "b802e01f-fac1-42b8-b605-a5bbb7efcdc1", + "Order": 1, + "Definition": { + "en": { + "Spans": [ + { + "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeechId": null, + "SemanticDomains": [], + "EntityId": "d510aa82-5557-4dd4-8b1f-1ec89facb979" + } + }, + { + "Index": 0, + "CommitId": "edf0c210-1d19-49aa-977c-1c2b99c05a05", + "EntityId": "1d6f788d-b5a7-4dd8-bdbc-e10b6ac78ef7", + "Change": { + "$type": "CreateWritingSystemChange", + "WsId": "en", + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Type": 1, + "Order": 0, + "EntityId": "1d6f788d-b5a7-4dd8-bdbc-e10b6ac78ef7" + } + }, + { + "Index": 0, + "CommitId": "b9ee0129-fe8a-48d4-95db-32548df39267", + "EntityId": "e8b2b514-e1ee-4a2b-9b52-6e32291aa407", + "Change": { + "$type": "CreateWritingSystemChange", + "WsId": "en", + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Type": 0, + "Order": 0, + "EntityId": "e8b2b514-e1ee-4a2b-9b52-6e32291aa407" + } + } +] \ No newline at end of file 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 new file mode 100644 index 0000000000..a9fba5e844 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.ProjectSnapshot.verified.txt @@ -0,0 +1,252 @@ +{ + "Entries": [ + { + "Id": "b802e01f-fac1-42b8-b605-a5bbb7efcdc1", + "DeletedAt": null, + "LexemeForm": { + "en": "Apple" + }, + "CitationForm": { + "en": "Apple" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Unknown", + "Senses": [ + { + "Id": "d510aa82-5557-4dd4-8b1f-1ec89facb979", + "Order": 1, + "DeletedAt": null, + "EntryId": "b802e01f-fac1-42b8-b605-a5bbb7efcdc1", + "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": [ + { + "Id": "30a0dcc4-06b1-4402-b78e-745712c4cd2d", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "We ate an apple", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "d510aa82-5557-4dd4-8b1f-1ec89facb979", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + } + ], + "PartsOfSpeech": [ + { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb" + }, + "DeletedAt": null, + "Predefined": true + } + ], + "Publications": [], + "SemanticDomains": [ + { + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d0", + "Name": { + "en": "Universe, Creation" + }, + "Code": "1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d1", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d2", + "Name": { + "en": "World" + }, + "Code": "1.2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d3", + "Name": { + "en": "Person" + }, + "Code": "2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4", + "Name": { + "en": "Body" + }, + "Code": "2.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5", + "Name": { + "en": "Head" + }, + "Code": "2.1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6", + "Name": { + "en": "Eye" + }, + "Code": "2.1.1.1", + "DeletedAt": null, + "Predefined": true + } + ], + "ComplexFormTypes": [ + { + "Id": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + }, + { + "Id": "eeb78fce-6009-4932-aaa6-85faeb180c69", + "Name": { + "en": "Unspecified" + }, + "DeletedAt": null + } + ], + "WritingSystems": { + "Analysis": [ + { + "Id": "1d6f788d-b5a7-4dd8-bdbc-e10b6ac78ef7", + "MaybeId": "1d6f788d-b5a7-4dd8-bdbc-e10b6ac78ef7", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + } + ], + "Vernacular": [ + { + "Id": "e8b2b514-e1ee-4a2b-9b52-6e32291aa407", + "MaybeId": "e8b2b514-e1ee-4a2b-9b52-6e32291aa407", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + } + ] + } +} \ No newline at end of file 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 new file mode 100644 index 0000000000..3eee5f44c1 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v1.Snapshots.verified.txt @@ -0,0 +1,479 @@ +[ + { + "Id": "c72418fd-3344-493b-b1b5-3bd5846f368d", + "TypeName": "ComplexFormType", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + }, + "Id": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "DeletedAt": null + }, + "References": [], + "EntityId": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "EntityIsDeleted": false, + "CommitId": "dc60d2a9-0cc2-48ed-803c-a238a14b6eae", + "Commit": null, + "IsRoot": true + }, + { + "Id": "f0a3cfe7-7f4b-4b34-9d3e-24c89ed202eb", + "TypeName": "ComplexFormType", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "eeb78fce-6009-4932-aaa6-85faeb180c69", + "Name": { + "en": "Unspecified" + }, + "DeletedAt": null + }, + "Id": "eeb78fce-6009-4932-aaa6-85faeb180c69", + "DeletedAt": null + }, + "References": [], + "EntityId": "eeb78fce-6009-4932-aaa6-85faeb180c69", + "EntityIsDeleted": false, + "CommitId": "dc60d2a9-0cc2-48ed-803c-a238a14b6eae", + "Commit": null, + "IsRoot": true + }, + { + "Id": "55ec97c3-a7d7-416b-b30a-6a242a71cdaf", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "b802e01f-fac1-42b8-b605-a5bbb7efcdc1", + "DeletedAt": null, + "LexemeForm": { + "en": "Apple" + }, + "CitationForm": { + "en": "Apple" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "b802e01f-fac1-42b8-b605-a5bbb7efcdc1", + "DeletedAt": null + }, + "References": [], + "EntityId": "b802e01f-fac1-42b8-b605-a5bbb7efcdc1", + "EntityIsDeleted": false, + "CommitId": "0e5ca1d3-7502-43ec-b03d-fa83899e0972", + "Commit": null, + "IsRoot": true + }, + { + "Id": "5bc2c0b3-a1c8-4d81-bfef-fbe2153cf1c9", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "30a0dcc4-06b1-4402-b78e-745712c4cd2d", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "We ate an apple", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "d510aa82-5557-4dd4-8b1f-1ec89facb979", + "DeletedAt": null + }, + "Id": "30a0dcc4-06b1-4402-b78e-745712c4cd2d", + "DeletedAt": null + }, + "References": [ + "d510aa82-5557-4dd4-8b1f-1ec89facb979" + ], + "EntityId": "30a0dcc4-06b1-4402-b78e-745712c4cd2d", + "EntityIsDeleted": false, + "CommitId": "0e5ca1d3-7502-43ec-b03d-fa83899e0972", + "Commit": null, + "IsRoot": true + }, + { + "Id": "5f0470e1-16e3-4a0a-8565-b0077b6f4ac4", + "TypeName": "PartOfSpeech", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb" + }, + "DeletedAt": null, + "Predefined": true + }, + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-b34f-a15621fc66bb", + "Commit": null, + "IsRoot": true + }, + { + "Id": "6ccb66b0-9670-4235-8270-0a1df297c10a", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d0", + "Name": { + "en": "Universe, Creation" + }, + "Code": "1", + "DeletedAt": null, + "Predefined": true + }, + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d0", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d0", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "82b1727d-516f-46f3-8c02-6e26044f8835", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d1", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + }, + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d1", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d1", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "99df0598-795d-4efb-b4e6-2117c0eb82ba", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d2", + "Name": { + "en": "World" + }, + "Code": "1.2", + "DeletedAt": null, + "Predefined": true + }, + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d2", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d2", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "7be5bed0-d04c-461d-b788-65a40d73d091", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d3", + "Name": { + "en": "Person" + }, + "Code": "2", + "DeletedAt": null, + "Predefined": true + }, + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d3", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d3", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "b42bd81f-29d0-483a-94a4-c5acc27d10d4", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4", + "Name": { + "en": "Body" + }, + "Code": "2.1", + "DeletedAt": null, + "Predefined": true + }, + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "624480d1-941c-458f-bdd2-704500605784", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5", + "Name": { + "en": "Head" + }, + "Code": "2.1.1", + "DeletedAt": null, + "Predefined": true + }, + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "845dcd67-8d87-42a2-9d70-465e2d53dd98", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6", + "Name": { + "en": "Eye" + }, + "Code": "2.1.1.1", + "DeletedAt": null, + "Predefined": true + }, + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "2ebe5828-d6f6-4000-82e2-8b127e06c5e7", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "d510aa82-5557-4dd4-8b1f-1ec89facb979", + "Order": 1, + "DeletedAt": null, + "EntryId": "b802e01f-fac1-42b8-b605-a5bbb7efcdc1", + "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": [] + }, + "Id": "d510aa82-5557-4dd4-8b1f-1ec89facb979", + "DeletedAt": null + }, + "References": [ + "b802e01f-fac1-42b8-b605-a5bbb7efcdc1" + ], + "EntityId": "d510aa82-5557-4dd4-8b1f-1ec89facb979", + "EntityIsDeleted": false, + "CommitId": "0e5ca1d3-7502-43ec-b03d-fa83899e0972", + "Commit": null, + "IsRoot": true + }, + { + "Id": "799bc576-e362-4dda-ad07-75ebcc9ff71a", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "1d6f788d-b5a7-4dd8-bdbc-e10b6ac78ef7", + "MaybeId": "1d6f788d-b5a7-4dd8-bdbc-e10b6ac78ef7", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + }, + "Id": "1d6f788d-b5a7-4dd8-bdbc-e10b6ac78ef7", + "DeletedAt": null + }, + "References": [], + "EntityId": "1d6f788d-b5a7-4dd8-bdbc-e10b6ac78ef7", + "EntityIsDeleted": false, + "CommitId": "edf0c210-1d19-49aa-977c-1c2b99c05a05", + "Commit": null, + "IsRoot": true + }, + { + "Id": "33d349fa-d518-4875-916d-edfa17fa5f22", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "e8b2b514-e1ee-4a2b-9b52-6e32291aa407", + "MaybeId": "e8b2b514-e1ee-4a2b-9b52-6e32291aa407", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + }, + "Id": "e8b2b514-e1ee-4a2b-9b52-6e32291aa407", + "DeletedAt": null + }, + "References": [], + "EntityId": "e8b2b514-e1ee-4a2b-9b52-6e32291aa407", + "EntityIsDeleted": false, + "CommitId": "b9ee0129-fe8a-48d4-95db-32548df39267", + "Commit": null, + "IsRoot": true + } +] \ No newline at end of file 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 new file mode 100644 index 0000000000..7e9957b770 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ChangeEntities.verified.txt @@ -0,0 +1,942 @@ +[ + { + "Index": 0, + "CommitId": "276ef0d5-677c-46aa-af7e-d518abba15b5", + "EntityId": "a4a74738-3914-43ca-8c25-bee34eb517b7", + "Change": { + "$type": "AddEntryComponentChange", + "Order": 1, + "ComplexFormEntryId": "75050583-70d7-4605-a6e6-872b8f36c482", + "ComponentEntryId": "00edefeb-173e-45cd-836c-eea2ba514429", + "ComponentSenseId": null, + "EntityId": "a4a74738-3914-43ca-8c25-bee34eb517b7" + } + }, + { + "Index": 0, + "CommitId": "dc60d2a9-0cc2-48ed-803c-a238a14b6eae", + "EntityId": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "Change": { + "$type": "CreateComplexFormType", + "Name": { + "en": "Compound" + }, + "EntityId": "c36f55ed-d1ea-4069-90b3-3f35ff696273" + } + }, + { + "Index": 1, + "CommitId": "dc60d2a9-0cc2-48ed-803c-a238a14b6eae", + "EntityId": "eeb78fce-6009-4932-aaa6-85faeb180c69", + "Change": { + "$type": "CreateComplexFormType", + "Name": { + "en": "Unspecified" + }, + "EntityId": "eeb78fce-6009-4932-aaa6-85faeb180c69" + } + }, + { + "Index": 0, + "CommitId": "6a5981b6-d840-44cf-adf2-d51d4908314b", + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Change": { + "$type": "CreateEntryChange", + "LexemeForm": { + "en": "Apple" + }, + "CitationForm": { + "en": "Apple" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "Note": {}, + "MorphType": "Stem", + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429" + } + }, + { + "Index": 0, + "CommitId": "5dba93af-7604-410f-b109-ec4961bb608f", + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Change": { + "$type": "jsonPatch:Entry", + "PatchDocument": [ + { + "op": "add", + "path": "/LexemeForm/de", + "value": "de" + } + ], + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429" + } + }, + { + "Index": 0, + "CommitId": "64308e87-7710-48fe-b4d8-2fa131f2456d", + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Change": { + "$type": "jsonPatch:Entry", + "PatchDocument": [ + { + "op": "add", + "path": "/CitationForm/de", + "value": "de" + } + ], + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429" + } + }, + { + "Index": 0, + "CommitId": "4e078d12-ba55-42a8-8772-f0db0891fa71", + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Change": { + "$type": "AddComplexFormTypeChange", + "ComplexFormType": { + "Id": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + }, + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429" + } + }, + { + "Index": 0, + "CommitId": "df118748-6170-40fa-a38f-7addf0aa4b4d", + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Change": { + "$type": "jsonPatch:Entry", + "PatchDocument": [ + { + "op": "add", + "path": "/LiteralMeaning/fr", + "value": { + "Spans": [ + { + "Text": "fr", + "Ws": "fr" + } + ] + } + } + ], + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429" + } + }, + { + "Index": 0, + "CommitId": "2f476f0d-baae-4428-a534-2447a3e6338c", + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Change": { + "$type": "jsonPatch:Entry", + "PatchDocument": [ + { + "op": "add", + "path": "/Note/en", + "value": { + "Spans": [ + { + "Text": "note", + "Ws": "en" + } + ] + } + } + ], + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429" + } + }, + { + "Index": 0, + "CommitId": "191b4774-f571-4e57-8639-d215106e8abf", + "EntityId": "75050583-70d7-4605-a6e6-872b8f36c482", + "Change": { + "$type": "CreateEntryChange", + "LexemeForm": { + "en": "Orange" + }, + "CitationForm": { + "en": "Orange" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "Note": {}, + "MorphType": "Stem", + "EntityId": "75050583-70d7-4605-a6e6-872b8f36c482" + } + }, + { + "Index": 0, + "CommitId": "cd77d4cb-fbb6-4004-9159-f7f28482ca75", + "EntityId": "9e84db09-1885-4bbb-9482-4891a46f6f49", + "Change": { + "$type": "CreateEntryChange", + "LexemeForm": { + "en": "Grape" + }, + "CitationForm": { + "en": "Grape" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "Note": {}, + "MorphType": "Stem", + "EntityId": "9e84db09-1885-4bbb-9482-4891a46f6f49" + } + }, + { + "Index": 0, + "CommitId": "a867ff78-ba45-41fb-986b-6ffaf8e4d5b5", + "EntityId": "d9f70cf9-a479-4141-92e5-44155d063da2", + "Change": { + "$type": "CreateEntryChange", + "LexemeForm": { + "en": "Banana" + }, + "CitationForm": { + "en": "Banana" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "Note": {}, + "MorphType": "Stem", + "EntityId": "d9f70cf9-a479-4141-92e5-44155d063da2" + } + }, + { + "Index": 2, + "CommitId": "6a5981b6-d840-44cf-adf2-d51d4908314b", + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "Change": { + "$type": "CreateExampleSentenceChange", + "SenseId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "We ate an apple", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb" + } + }, + { + "Index": 0, + "CommitId": "5aac4ff6-0dd8-4266-875c-00f1800efad4", + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "Change": { + "$type": "jsonPatch:ExampleSentence", + "PatchDocument": [ + { + "op": "add", + "path": "/Sentence/de", + "value": { + "Spans": [ + { + "Text": "de", + "Ws": "de" + } + ] + } + } + ], + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb" + } + }, + { + "Index": 0, + "CommitId": "5b954c9f-c86f-463a-baa2-15ebb7a6074b", + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "Change": { + "$type": "jsonPatch:ExampleSentence", + "PatchDocument": [ + { + "op": "add", + "path": "/Translation/en", + "value": { + "Spans": [ + { + "Text": "en", + "Ws": "en" + } + ] + } + } + ], + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb" + } + }, + { + "Index": 0, + "CommitId": "baf9da29-2187-4d2e-9c67-92c295c3fbd7", + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "Change": { + "$type": "jsonPatch:ExampleSentence", + "PatchDocument": [ + { + "op": "replace", + "path": "/Reference", + "value": { + "Spans": [ + { + "Text": "ref", + "Ws": "en" + } + ] + } + } + ], + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb" + } + }, + { + "Index": 2, + "CommitId": "cd77d4cb-fbb6-4004-9159-f7f28482ca75", + "EntityId": "288d64c3-93f9-48a2-a014-d8773369b4a8", + "Change": { + "$type": "CreateExampleSentenceChange", + "SenseId": "1b423127-deb2-468d-8100-e1f1bff20826", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "The vineyard was full of ripe grapes", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "EntityId": "288d64c3-93f9-48a2-a014-d8773369b4a8" + } + }, + { + "Index": 2, + "CommitId": "191b4774-f571-4e57-8639-d215106e8abf", + "EntityId": "9aa9f5a4-faea-45e9-bee7-42929eebf691", + "Change": { + "$type": "CreateExampleSentenceChange", + "SenseId": "241d95a7-6d90-411b-8569-5648cc40b42b", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "I squeezed the orange for juice", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "EntityId": "9aa9f5a4-faea-45e9-bee7-42929eebf691" + } + }, + { + "Index": 2, + "CommitId": "a867ff78-ba45-41fb-986b-6ffaf8e4d5b5", + "EntityId": "d9d515e8-d695-44c3-9766-afbeab8c470f", + "Change": { + "$type": "CreateExampleSentenceChange", + "SenseId": "c77d7553-209d-45be-a83e-d07e69808873", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "The monkey peeled a banana", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "EntityId": "d9d515e8-d695-44c3-9766-afbeab8c470f" + } + }, + { + "Index": 0, + "CommitId": "023faebb-711b-4d2f-b34f-a15621fc66bb", + "EntityId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Change": { + "$type": "CreatePartOfSpeechChange", + "Name": { + "en": "Adverb" + }, + "Predefined": true, + "EntityId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" + } + }, + { + "Index": 3, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "1bd42665-0610-4442-8d8d-7c666fee3a6d", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Person" + }, + "Predefined": true, + "Code": "2", + "EntityId": "1bd42665-0610-4442-8d8d-7c666fee3a6d" + } + }, + { + "Index": 4, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Body" + }, + "Predefined": false, + "Code": "2.1", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4" + } + }, + { + "Index": 5, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Head" + }, + "Predefined": false, + "Code": "2.1.1", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5" + } + }, + { + "Index": 6, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Eye" + }, + "Predefined": false, + "Code": "2.1.1.1", + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6" + } + }, + { + "Index": 0, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "63403699-07c1-43f3-a47c-069d6e4316e5", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Universe, Creation" + }, + "Predefined": true, + "Code": "1", + "EntityId": "63403699-07c1-43f3-a47c-069d6e4316e5" + } + }, + { + "Index": 1, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "Sky" + }, + "Predefined": true, + "Code": "1.1", + "EntityId": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c" + } + }, + { + "Index": 2, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "EntityId": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb", + "Change": { + "$type": "CreateSemanticDomainChange", + "Name": { + "en": "World" + }, + "Predefined": true, + "Code": "1.2", + "EntityId": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb" + } + }, + { + "Index": 1, + "CommitId": "cd77d4cb-fbb6-4004-9159-f7f28482ca75", + "EntityId": "1b423127-deb2-468d-8100-e1f1bff20826", + "Change": { + "$type": "CreateSenseChange", + "EntryId": "9e84db09-1885-4bbb-9482-4891a46f6f49", + "Order": 1, + "Definition": { + "en": { + "Spans": [ + { + "Text": "small round or oval fruit growing in clusters, used for wine or eating", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeechId": null, + "SemanticDomains": [], + "EntityId": "1b423127-deb2-468d-8100-e1f1bff20826" + } + }, + { + "Index": 1, + "CommitId": "191b4774-f571-4e57-8639-d215106e8abf", + "EntityId": "241d95a7-6d90-411b-8569-5648cc40b42b", + "Change": { + "$type": "CreateSenseChange", + "EntryId": "75050583-70d7-4605-a6e6-872b8f36c482", + "Order": 1, + "Definition": { + "en": { + "Spans": [ + { + "Text": "round citrus fruit with orange skin and juicy segments inside", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeechId": null, + "SemanticDomains": [], + "EntityId": "241d95a7-6d90-411b-8569-5648cc40b42b" + } + }, + { + "Index": 1, + "CommitId": "6a5981b6-d840-44cf-adf2-d51d4908314b", + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Change": { + "$type": "CreateSenseChange", + "EntryId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Order": 1, + "Definition": { + "en": { + "Spans": [ + { + "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeechId": null, + "SemanticDomains": [], + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d" + } + }, + { + "Index": 0, + "CommitId": "6c1e0dc4-e30b-43dc-889c-dc5787fbf282", + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Change": { + "$type": "jsonPatch:Sense", + "PatchDocument": [ + { + "op": "add", + "path": "/Gloss/fr", + "value": "fr" + } + ], + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d" + } + }, + { + "Index": 0, + "CommitId": "241f2698-c899-4476-986b-b339fa50fce8", + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Change": { + "$type": "jsonPatch:Sense", + "PatchDocument": [ + { + "op": "add", + "path": "/Definition/fr", + "value": { + "Spans": [ + { + "Text": "fr", + "Ws": "fr" + } + ] + } + } + ], + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d" + } + }, + { + "Index": 0, + "CommitId": "16f056b3-c19a-42d0-a824-ba2640597ac2", + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Change": { + "$type": "SetPartOfSpeechChange", + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d" + } + }, + { + "Index": 0, + "CommitId": "c2c3e5cc-4e0a-4e3d-a300-d004dacb5a7e", + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Change": { + "$type": "AddSemanticDomainChange", + "SemanticDomain": { + "Id": "63403699-07c1-43f3-a47c-069d6e4316e5", + "Name": { + "en": "Universe, Creation" + }, + "Code": "1", + "DeletedAt": null, + "Predefined": true + }, + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d" + } + }, + { + "Index": 1, + "CommitId": "a867ff78-ba45-41fb-986b-6ffaf8e4d5b5", + "EntityId": "c77d7553-209d-45be-a83e-d07e69808873", + "Change": { + "$type": "CreateSenseChange", + "EntryId": "d9f70cf9-a479-4141-92e5-44155d063da2", + "Order": 1, + "Definition": { + "en": { + "Spans": [ + { + "Text": "long curved fruit with yellow skin and soft sweet flesh", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeechId": null, + "SemanticDomains": [], + "EntityId": "c77d7553-209d-45be-a83e-d07e69808873" + } + }, + { + "Index": 0, + "CommitId": "6917532b-c05c-481e-bed7-a0d075822e89", + "EntityId": "0b76099f-a102-4d24-8fd7-2c44b6eb3623", + "Change": { + "$type": "CreateWritingSystemChange", + "WsId": "en", + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Type": 1, + "Order": 1, + "EntityId": "0b76099f-a102-4d24-8fd7-2c44b6eb3623" + } + }, + { + "Index": 0, + "CommitId": "b76cb8f9-4854-4e93-af3c-1c2eec00e216", + "EntityId": "33c8a15a-1bd4-429e-a400-3304a3e1d997", + "Change": { + "$type": "CreateWritingSystemChange", + "WsId": "de", + "Name": "German", + "Abbreviation": "de", + "Font": "Arial", + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Type": 0, + "Order": 1, + "EntityId": "33c8a15a-1bd4-429e-a400-3304a3e1d997" + } + }, + { + "Index": 0, + "CommitId": "2c649b96-4aba-4d4d-9cca-3670d4469210", + "EntityId": "485bd12f-976e-40df-b66c-16d70ee916fa", + "Change": { + "$type": "CreateWritingSystemChange", + "WsId": "en-Zxxx-x-audio", + "Name": "English (A)", + "Abbreviation": "Eng \uD83D\uDD0A", + "Font": "Arial", + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Type": 0, + "Order": 3, + "EntityId": "485bd12f-976e-40df-b66c-16d70ee916fa" + } + }, + { + "Index": 0, + "CommitId": "d341a388-62f7-41c2-af50-2854b2ed941f", + "EntityId": "9fd79197-95ef-46d7-81a8-bb21aa2579c0", + "Change": { + "$type": "CreateWritingSystemChange", + "WsId": "en", + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Type": 0, + "Order": 2, + "EntityId": "9fd79197-95ef-46d7-81a8-bb21aa2579c0" + } + }, + { + "Index": 0, + "CommitId": "98cac228-5353-4bd2-811f-e11119ac8694", + "EntityId": "abeaeb03-1a56-49d5-8cc8-a3afe5ffe89e", + "Change": { + "$type": "CreateWritingSystemChange", + "WsId": "en-Zxxx-x-audio", + "Name": "English (A)", + "Abbreviation": "Eng \uD83D\uDD0A", + "Font": "Arial", + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Type": 1, + "Order": 3, + "EntityId": "abeaeb03-1a56-49d5-8cc8-a3afe5ffe89e" + } + }, + { + "Index": 0, + "CommitId": "6113b384-911c-4a3c-a8cc-85f36bb92106", + "EntityId": "d4078989-6c7b-4cc5-8501-ce968405484a", + "Change": { + "$type": "CreateWritingSystemChange", + "WsId": "fr", + "Name": "French", + "Abbreviation": "fr", + "Font": "Arial", + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Type": 1, + "Order": 2, + "EntityId": "d4078989-6c7b-4cc5-8501-ce968405484a" + } + } +] \ No newline at end of file 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 new file mode 100644 index 0000000000..930bda5229 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.ProjectSnapshot.verified.txt @@ -0,0 +1,723 @@ +{ + "Entries": [ + { + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null, + "LexemeForm": { + "en": "Apple", + "de": "de" + }, + "CitationForm": { + "en": "Apple", + "de": "de" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + }, + "fr": { + "Spans": [ + { + "Text": "fr", + "Ws": "fr" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [ + { + "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Order": 1, + "DeletedAt": null, + "EntryId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Ws": "en" + } + ] + }, + "fr": { + "Spans": [ + { + "Text": "fr", + "Ws": "fr" + } + ] + } + }, + "Gloss": { + "en": "Fruit", + "fr": "fr" + }, + "PartOfSpeech": { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb" + }, + "DeletedAt": null, + "Predefined": true + }, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [ + { + "Id": "63403699-07c1-43f3-a47c-069d6e4316e5", + "Name": { + "en": "Universe, Creation" + }, + "Code": "1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [ + { + "Id": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "We ate an apple", + "Ws": "en" + } + ] + }, + "de": { + "Spans": [ + { + "Text": "de", + "Ws": "de" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "en", + "Ws": "en" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "ref", + "Ws": "en" + } + ] + }, + "SenseId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "DeletedAt": null + } + ] + } + ], + "Note": { + "en": { + "Spans": [ + { + "Text": "note", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [ + { + "Id": "a4a74738-3914-43ca-8c25-bee34eb517b7", + "MaybeId": "a4a74738-3914-43ca-8c25-bee34eb517b7", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "75050583-70d7-4605-a6e6-872b8f36c482", + "ComplexFormHeadword": "Orange", + "ComponentEntryId": "00edefeb-173e-45cd-836c-eea2ba514429", + "ComponentSenseId": null, + "ComponentHeadword": "de" + } + ], + "ComplexFormTypes": [ + { + "Id": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + } + ], + "PublishIn": [] + }, + { + "Id": "75050583-70d7-4605-a6e6-872b8f36c482", + "DeletedAt": null, + "LexemeForm": { + "en": "Orange" + }, + "CitationForm": { + "en": "Orange" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [ + { + "Id": "241d95a7-6d90-411b-8569-5648cc40b42b", + "Order": 1, + "DeletedAt": null, + "EntryId": "75050583-70d7-4605-a6e6-872b8f36c482", + "Definition": { + "en": { + "Spans": [ + { + "Text": "round citrus fruit with orange skin and juicy segments inside", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "9aa9f5a4-faea-45e9-bee7-42929eebf691", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "I squeezed the orange for juice", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "241d95a7-6d90-411b-8569-5648cc40b42b", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [ + { + "Id": "a4a74738-3914-43ca-8c25-bee34eb517b7", + "MaybeId": "a4a74738-3914-43ca-8c25-bee34eb517b7", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "75050583-70d7-4605-a6e6-872b8f36c482", + "ComplexFormHeadword": "Orange", + "ComponentEntryId": "00edefeb-173e-45cd-836c-eea2ba514429", + "ComponentSenseId": null, + "ComponentHeadword": "de" + } + ], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + { + "Id": "9e84db09-1885-4bbb-9482-4891a46f6f49", + "DeletedAt": null, + "LexemeForm": { + "en": "Grape" + }, + "CitationForm": { + "en": "Grape" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [ + { + "Id": "1b423127-deb2-468d-8100-e1f1bff20826", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e84db09-1885-4bbb-9482-4891a46f6f49", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small round or oval fruit growing in clusters, used for wine or eating", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "288d64c3-93f9-48a2-a014-d8773369b4a8", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "The vineyard was full of ripe grapes", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "1b423127-deb2-468d-8100-e1f1bff20826", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + { + "Id": "d9f70cf9-a479-4141-92e5-44155d063da2", + "DeletedAt": null, + "LexemeForm": { + "en": "Banana" + }, + "CitationForm": { + "en": "Banana" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [ + { + "Id": "c77d7553-209d-45be-a83e-d07e69808873", + "Order": 1, + "DeletedAt": null, + "EntryId": "d9f70cf9-a479-4141-92e5-44155d063da2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "long curved fruit with yellow skin and soft sweet flesh", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [ + { + "Id": "d9d515e8-d695-44c3-9766-afbeab8c470f", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "The monkey peeled a banana", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "c77d7553-209d-45be-a83e-d07e69808873", + "DeletedAt": null + } + ] + } + ], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + } + ], + "PartsOfSpeech": [ + { + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb" + }, + "DeletedAt": null, + "Predefined": true + } + ], + "Publications": [], + "SemanticDomains": [ + { + "Id": "1bd42665-0610-4442-8d8d-7c666fee3a6d", + "Name": { + "en": "Person" + }, + "Code": "2", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4", + "Name": { + "en": "Body" + }, + "Code": "2.1", + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5", + "Name": { + "en": "Head" + }, + "Code": "2.1.1", + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6", + "Name": { + "en": "Eye" + }, + "Code": "2.1.1.1", + "DeletedAt": null, + "Predefined": false + }, + { + "Id": "63403699-07c1-43f3-a47c-069d6e4316e5", + "Name": { + "en": "Universe, Creation" + }, + "Code": "1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + }, + { + "Id": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb", + "Name": { + "en": "World" + }, + "Code": "1.2", + "DeletedAt": null, + "Predefined": true + } + ], + "ComplexFormTypes": [ + { + "Id": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + }, + { + "Id": "eeb78fce-6009-4932-aaa6-85faeb180c69", + "Name": { + "en": "Unspecified" + }, + "DeletedAt": null + } + ], + "WritingSystems": { + "Analysis": [ + { + "Id": "0b76099f-a102-4d24-8fd7-2c44b6eb3623", + "MaybeId": "0b76099f-a102-4d24-8fd7-2c44b6eb3623", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 1 + }, + { + "Id": "d4078989-6c7b-4cc5-8501-ce968405484a", + "MaybeId": "d4078989-6c7b-4cc5-8501-ce968405484a", + "WsId": "fr", + "IsAudio": false, + "Name": "French", + "Abbreviation": "fr", + "Font": "Arial", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 2 + }, + { + "Id": "abeaeb03-1a56-49d5-8cc8-a3afe5ffe89e", + "MaybeId": "abeaeb03-1a56-49d5-8cc8-a3afe5ffe89e", + "WsId": "en-Zxxx-x-audio", + "IsAudio": true, + "Name": "English (A)", + "Abbreviation": "Eng \uD83D\uDD0A", + "Font": "Arial", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 3 + } + ], + "Vernacular": [ + { + "Id": "33c8a15a-1bd4-429e-a400-3304a3e1d997", + "MaybeId": "33c8a15a-1bd4-429e-a400-3304a3e1d997", + "WsId": "de", + "IsAudio": false, + "Name": "German", + "Abbreviation": "de", + "Font": "Arial", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 1 + }, + { + "Id": "9fd79197-95ef-46d7-81a8-bb21aa2579c0", + "MaybeId": "9fd79197-95ef-46d7-81a8-bb21aa2579c0", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 2 + }, + { + "Id": "485bd12f-976e-40df-b66c-16d70ee916fa", + "MaybeId": "485bd12f-976e-40df-b66c-16d70ee916fa", + "WsId": "en-Zxxx-x-audio", + "IsAudio": true, + "Name": "English (A)", + "Abbreviation": "Eng \uD83D\uDD0A", + "Font": "Arial", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 3 + } + ] + } +} \ No newline at end of file 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 new file mode 100644 index 0000000000..4118121ca1 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/MigrationTests_FromScriptedDb.v2.Snapshots.verified.txt @@ -0,0 +1,1728 @@ +[ + { + "Id": "3823e325-8715-4da1-995d-8f39c8e3af29", + "TypeName": "ComplexFormComponent", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormComponent", + "Id": "a4a74738-3914-43ca-8c25-bee34eb517b7", + "MaybeId": "a4a74738-3914-43ca-8c25-bee34eb517b7", + "Order": 1, + "DeletedAt": null, + "ComplexFormEntryId": "75050583-70d7-4605-a6e6-872b8f36c482", + "ComplexFormHeadword": "Orange", + "ComponentEntryId": "00edefeb-173e-45cd-836c-eea2ba514429", + "ComponentSenseId": null, + "ComponentHeadword": "de" + }, + "Id": "a4a74738-3914-43ca-8c25-bee34eb517b7", + "DeletedAt": null + }, + "References": [ + "75050583-70d7-4605-a6e6-872b8f36c482", + "00edefeb-173e-45cd-836c-eea2ba514429" + ], + "EntityId": "a4a74738-3914-43ca-8c25-bee34eb517b7", + "EntityIsDeleted": false, + "CommitId": "276ef0d5-677c-46aa-af7e-d518abba15b5", + "Commit": null, + "IsRoot": true + }, + { + "Id": "d9672868-5457-4132-acb1-40a736cb6286", + "TypeName": "ComplexFormType", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + }, + "Id": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "DeletedAt": null + }, + "References": [], + "EntityId": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "EntityIsDeleted": false, + "CommitId": "dc60d2a9-0cc2-48ed-803c-a238a14b6eae", + "Commit": null, + "IsRoot": true + }, + { + "Id": "83ca281b-4698-4ddd-8c5e-45fe1a9b5128", + "TypeName": "ComplexFormType", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "eeb78fce-6009-4932-aaa6-85faeb180c69", + "Name": { + "en": "Unspecified" + }, + "DeletedAt": null + }, + "Id": "eeb78fce-6009-4932-aaa6-85faeb180c69", + "DeletedAt": null + }, + "References": [], + "EntityId": "eeb78fce-6009-4932-aaa6-85faeb180c69", + "EntityIsDeleted": false, + "CommitId": "dc60d2a9-0cc2-48ed-803c-a238a14b6eae", + "Commit": null, + "IsRoot": true + }, + { + "Id": "99c1758f-1ce7-4fe7-b261-6af7c66a031a", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null, + "LexemeForm": { + "en": "Apple" + }, + "CitationForm": { + "en": "Apple" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null + }, + "References": [], + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "EntityIsDeleted": false, + "CommitId": "6a5981b6-d840-44cf-adf2-d51d4908314b", + "Commit": null, + "IsRoot": true + }, + { + "Id": "32b90ac0-9184-487c-866a-8152a9ea17fc", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null, + "LexemeForm": { + "en": "Apple", + "de": "de" + }, + "CitationForm": { + "en": "Apple" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null + }, + "References": [], + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "EntityIsDeleted": false, + "CommitId": "5dba93af-7604-410f-b109-ec4961bb608f", + "Commit": null, + "IsRoot": false + }, + { + "Id": "ebcc8e22-2ff8-4911-a1b3-a40b2c6606aa", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null, + "LexemeForm": { + "en": "Apple", + "de": "de" + }, + "CitationForm": { + "en": "Apple", + "de": "de" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null + }, + "References": [], + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "EntityIsDeleted": false, + "CommitId": "64308e87-7710-48fe-b4d8-2fa131f2456d", + "Commit": null, + "IsRoot": false + }, + { + "Id": "8cde8dac-409c-4276-b018-499cf92409ca", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null, + "LexemeForm": { + "en": "Apple", + "de": "de" + }, + "CitationForm": { + "en": "Apple", + "de": "de" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + } + ], + "PublishIn": [] + }, + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null + }, + "References": [], + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "EntityIsDeleted": false, + "CommitId": "4e078d12-ba55-42a8-8772-f0db0891fa71", + "Commit": null, + "IsRoot": false + }, + { + "Id": "82afbbfd-3c0c-4465-a467-31242c50eecf", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null, + "LexemeForm": { + "en": "Apple", + "de": "de" + }, + "CitationForm": { + "en": "Apple", + "de": "de" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + }, + "fr": { + "Spans": [ + { + "Text": "fr", + "Ws": "fr" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + } + ], + "PublishIn": [] + }, + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null + }, + "References": [], + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "EntityIsDeleted": false, + "CommitId": "df118748-6170-40fa-a38f-7addf0aa4b4d", + "Commit": null, + "IsRoot": false + }, + { + "Id": "2fda581c-6c02-4b64-908b-1e0509f9edbe", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null, + "LexemeForm": { + "en": "Apple", + "de": "de" + }, + "CitationForm": { + "en": "Apple", + "de": "de" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + }, + "fr": { + "Spans": [ + { + "Text": "fr", + "Ws": "fr" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": { + "en": { + "Spans": [ + { + "Text": "note", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "c36f55ed-d1ea-4069-90b3-3f35ff696273", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + } + ], + "PublishIn": [] + }, + "Id": "00edefeb-173e-45cd-836c-eea2ba514429", + "DeletedAt": null + }, + "References": [], + "EntityId": "00edefeb-173e-45cd-836c-eea2ba514429", + "EntityIsDeleted": false, + "CommitId": "2f476f0d-baae-4428-a534-2447a3e6338c", + "Commit": null, + "IsRoot": false + }, + { + "Id": "82c4e9d7-883b-46c3-8837-dd5e85065350", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "75050583-70d7-4605-a6e6-872b8f36c482", + "DeletedAt": null, + "LexemeForm": { + "en": "Orange" + }, + "CitationForm": { + "en": "Orange" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "75050583-70d7-4605-a6e6-872b8f36c482", + "DeletedAt": null + }, + "References": [], + "EntityId": "75050583-70d7-4605-a6e6-872b8f36c482", + "EntityIsDeleted": false, + "CommitId": "191b4774-f571-4e57-8639-d215106e8abf", + "Commit": null, + "IsRoot": true + }, + { + "Id": "5e1e9631-d246-4a9d-8052-1084b2d07441", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "9e84db09-1885-4bbb-9482-4891a46f6f49", + "DeletedAt": null, + "LexemeForm": { + "en": "Grape" + }, + "CitationForm": { + "en": "Grape" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "9e84db09-1885-4bbb-9482-4891a46f6f49", + "DeletedAt": null + }, + "References": [], + "EntityId": "9e84db09-1885-4bbb-9482-4891a46f6f49", + "EntityIsDeleted": false, + "CommitId": "cd77d4cb-fbb6-4004-9159-f7f28482ca75", + "Commit": null, + "IsRoot": true + }, + { + "Id": "ecf9a05c-0e55-4342-b674-16fa1b347fed", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "d9f70cf9-a479-4141-92e5-44155d063da2", + "DeletedAt": null, + "LexemeForm": { + "en": "Banana" + }, + "CitationForm": { + "en": "Banana" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "d9f70cf9-a479-4141-92e5-44155d063da2", + "DeletedAt": null + }, + "References": [], + "EntityId": "d9f70cf9-a479-4141-92e5-44155d063da2", + "EntityIsDeleted": false, + "CommitId": "a867ff78-ba45-41fb-986b-6ffaf8e4d5b5", + "Commit": null, + "IsRoot": true + }, + { + "Id": "929ef062-41e8-45e5-abf3-3c20507a80dc", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "We ate an apple", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "DeletedAt": null + }, + "Id": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "DeletedAt": null + }, + "References": [ + "b9440091-a9fc-4769-82b1-2ee8d030808d" + ], + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "EntityIsDeleted": false, + "CommitId": "6a5981b6-d840-44cf-adf2-d51d4908314b", + "Commit": null, + "IsRoot": true + }, + { + "Id": "94950c41-d5f9-442f-b91f-1807ee743904", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "We ate an apple", + "Ws": "en" + } + ] + }, + "de": { + "Spans": [ + { + "Text": "de", + "Ws": "de" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "DeletedAt": null + }, + "Id": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "DeletedAt": null + }, + "References": [ + "b9440091-a9fc-4769-82b1-2ee8d030808d" + ], + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "EntityIsDeleted": false, + "CommitId": "5aac4ff6-0dd8-4266-875c-00f1800efad4", + "Commit": null, + "IsRoot": false + }, + { + "Id": "beb54e61-57f8-4227-9d2e-4ad56982cb70", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "We ate an apple", + "Ws": "en" + } + ] + }, + "de": { + "Spans": [ + { + "Text": "de", + "Ws": "de" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "en", + "Ws": "en" + } + ] + } + }, + "Reference": null, + "SenseId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "DeletedAt": null + }, + "Id": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "DeletedAt": null + }, + "References": [ + "b9440091-a9fc-4769-82b1-2ee8d030808d" + ], + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "EntityIsDeleted": false, + "CommitId": "5b954c9f-c86f-463a-baa2-15ebb7a6074b", + "Commit": null, + "IsRoot": false + }, + { + "Id": "7d383194-90e8-45de-839b-e53fbc9bcfb7", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "We ate an apple", + "Ws": "en" + } + ] + }, + "de": { + "Spans": [ + { + "Text": "de", + "Ws": "de" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "en", + "Ws": "en" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "ref", + "Ws": "en" + } + ] + }, + "SenseId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "DeletedAt": null + }, + "Id": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "DeletedAt": null + }, + "References": [ + "b9440091-a9fc-4769-82b1-2ee8d030808d" + ], + "EntityId": "135d7c84-95d8-4707-a400-e1f3619d90fb", + "EntityIsDeleted": false, + "CommitId": "baf9da29-2187-4d2e-9c67-92c295c3fbd7", + "Commit": null, + "IsRoot": false + }, + { + "Id": "4b52c42e-4781-45ec-bab9-a2c55d6d394d", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "288d64c3-93f9-48a2-a014-d8773369b4a8", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "The vineyard was full of ripe grapes", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "1b423127-deb2-468d-8100-e1f1bff20826", + "DeletedAt": null + }, + "Id": "288d64c3-93f9-48a2-a014-d8773369b4a8", + "DeletedAt": null + }, + "References": [ + "1b423127-deb2-468d-8100-e1f1bff20826" + ], + "EntityId": "288d64c3-93f9-48a2-a014-d8773369b4a8", + "EntityIsDeleted": false, + "CommitId": "cd77d4cb-fbb6-4004-9159-f7f28482ca75", + "Commit": null, + "IsRoot": true + }, + { + "Id": "8994d7ee-7ef6-4c19-9549-dfd8a40144c2", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "9aa9f5a4-faea-45e9-bee7-42929eebf691", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "I squeezed the orange for juice", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "241d95a7-6d90-411b-8569-5648cc40b42b", + "DeletedAt": null + }, + "Id": "9aa9f5a4-faea-45e9-bee7-42929eebf691", + "DeletedAt": null + }, + "References": [ + "241d95a7-6d90-411b-8569-5648cc40b42b" + ], + "EntityId": "9aa9f5a4-faea-45e9-bee7-42929eebf691", + "EntityIsDeleted": false, + "CommitId": "191b4774-f571-4e57-8639-d215106e8abf", + "Commit": null, + "IsRoot": true + }, + { + "Id": "2f77033c-f317-4d01-a486-2f976ce7850e", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "d9d515e8-d695-44c3-9766-afbeab8c470f", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "The monkey peeled a banana", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "c77d7553-209d-45be-a83e-d07e69808873", + "DeletedAt": null + }, + "Id": "d9d515e8-d695-44c3-9766-afbeab8c470f", + "DeletedAt": null + }, + "References": [ + "c77d7553-209d-45be-a83e-d07e69808873" + ], + "EntityId": "d9d515e8-d695-44c3-9766-afbeab8c470f", + "EntityIsDeleted": false, + "CommitId": "a867ff78-ba45-41fb-986b-6ffaf8e4d5b5", + "Commit": null, + "IsRoot": true + }, + { + "Id": "659a8536-28da-4671-a63d-36ee158619a1", + "TypeName": "PartOfSpeech", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "Name": { + "en": "Adverb" + }, + "DeletedAt": null, + "Predefined": true + }, + "Id": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-b34f-a15621fc66bb", + "Commit": null, + "IsRoot": true + }, + { + "Id": "9689dd1f-0084-464d-89f2-52a05361daec", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "1bd42665-0610-4442-8d8d-7c666fee3a6d", + "Name": { + "en": "Person" + }, + "Code": "2", + "DeletedAt": null, + "Predefined": true + }, + "Id": "1bd42665-0610-4442-8d8d-7c666fee3a6d", + "DeletedAt": null + }, + "References": [], + "EntityId": "1bd42665-0610-4442-8d8d-7c666fee3a6d", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "eab8b267-9e9b-48a3-a593-c890771b743d", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4", + "Name": { + "en": "Body" + }, + "Code": "2.1", + "DeletedAt": null, + "Predefined": false + }, + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d4", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "d8f964b5-312d-4d2e-9d47-3a00c42b7b52", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5", + "Name": { + "en": "Head" + }, + "Code": "2.1.1", + "DeletedAt": null, + "Predefined": false + }, + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d5", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "b4940dd3-2ad6-4391-98bf-8c26cd6d9ba9", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6", + "Name": { + "en": "Eye" + }, + "Code": "2.1.1.1", + "DeletedAt": null, + "Predefined": false + }, + "Id": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6", + "DeletedAt": null + }, + "References": [], + "EntityId": "46e4fe08-ffa0-4c8b-bf88-2c56f38904d6", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "14acc90e-f0b8-4c54-a73a-d72e08d08319", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "63403699-07c1-43f3-a47c-069d6e4316e5", + "Name": { + "en": "Universe, Creation" + }, + "Code": "1", + "DeletedAt": null, + "Predefined": true + }, + "Id": "63403699-07c1-43f3-a47c-069d6e4316e5", + "DeletedAt": null + }, + "References": [], + "EntityId": "63403699-07c1-43f3-a47c-069d6e4316e5", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "6984026f-f359-464b-8c0a-38911d6b432b", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "DeletedAt": null, + "Predefined": true + }, + "Id": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "DeletedAt": null + }, + "References": [], + "EntityId": "999581c4-1611-4acb-ae1b-5e6c1dfe6f0c", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "7edd8e1f-47fd-48bc-9b59-4cec9c1ad2a4", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb", + "Name": { + "en": "World" + }, + "Code": "1.2", + "DeletedAt": null, + "Predefined": true + }, + "Id": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb", + "DeletedAt": null + }, + "References": [], + "EntityId": "dc1a2c6f-1b32-4631-8823-36dacc8cb7bb", + "EntityIsDeleted": false, + "CommitId": "023faebb-711b-4d2f-a14f-a15621fc66bc", + "Commit": null, + "IsRoot": true + }, + { + "Id": "45ca39e0-64cd-4ee3-b721-476791cbcfed", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "1b423127-deb2-468d-8100-e1f1bff20826", + "Order": 1, + "DeletedAt": null, + "EntryId": "9e84db09-1885-4bbb-9482-4891a46f6f49", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small round or oval fruit growing in clusters, used for wine or eating", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "1b423127-deb2-468d-8100-e1f1bff20826", + "DeletedAt": null + }, + "References": [ + "9e84db09-1885-4bbb-9482-4891a46f6f49" + ], + "EntityId": "1b423127-deb2-468d-8100-e1f1bff20826", + "EntityIsDeleted": false, + "CommitId": "cd77d4cb-fbb6-4004-9159-f7f28482ca75", + "Commit": null, + "IsRoot": true + }, + { + "Id": "abc7fa87-8a65-4c55-8243-719da4372bdb", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "241d95a7-6d90-411b-8569-5648cc40b42b", + "Order": 1, + "DeletedAt": null, + "EntryId": "75050583-70d7-4605-a6e6-872b8f36c482", + "Definition": { + "en": { + "Spans": [ + { + "Text": "round citrus fruit with orange skin and juicy segments inside", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "241d95a7-6d90-411b-8569-5648cc40b42b", + "DeletedAt": null + }, + "References": [ + "75050583-70d7-4605-a6e6-872b8f36c482" + ], + "EntityId": "241d95a7-6d90-411b-8569-5648cc40b42b", + "EntityIsDeleted": false, + "CommitId": "191b4774-f571-4e57-8639-d215106e8abf", + "Commit": null, + "IsRoot": true + }, + { + "Id": "c18904b3-5d12-4eec-a239-b5a3b5ae6a7d", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Order": 1, + "DeletedAt": null, + "EntryId": "00edefeb-173e-45cd-836c-eea2ba514429", + "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": [] + }, + "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "DeletedAt": null + }, + "References": [ + "00edefeb-173e-45cd-836c-eea2ba514429" + ], + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "EntityIsDeleted": false, + "CommitId": "6a5981b6-d840-44cf-adf2-d51d4908314b", + "Commit": null, + "IsRoot": true + }, + { + "Id": "b0d152af-5fa5-4df4-81a6-630dd552499f", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Order": 1, + "DeletedAt": null, + "EntryId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit", + "fr": "fr" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "DeletedAt": null + }, + "References": [ + "00edefeb-173e-45cd-836c-eea2ba514429" + ], + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "EntityIsDeleted": false, + "CommitId": "6c1e0dc4-e30b-43dc-889c-dc5787fbf282", + "Commit": null, + "IsRoot": false + }, + { + "Id": "04a68ec6-1b56-4303-a379-35da06346e0b", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Order": 1, + "DeletedAt": null, + "EntryId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Ws": "en" + } + ] + }, + "fr": { + "Spans": [ + { + "Text": "fr", + "Ws": "fr" + } + ] + } + }, + "Gloss": { + "en": "Fruit", + "fr": "fr" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "DeletedAt": null + }, + "References": [ + "00edefeb-173e-45cd-836c-eea2ba514429" + ], + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "EntityIsDeleted": false, + "CommitId": "241f2698-c899-4476-986b-b339fa50fce8", + "Commit": null, + "IsRoot": false + }, + { + "Id": "0a5be7b9-9c5c-4786-abe3-2310dae6ccca", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Order": 1, + "DeletedAt": null, + "EntryId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Ws": "en" + } + ] + }, + "fr": { + "Spans": [ + { + "Text": "fr", + "Ws": "fr" + } + ] + } + }, + "Gloss": { + "en": "Fruit", + "fr": "fr" + }, + "PartOfSpeech": null, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "DeletedAt": null + }, + "References": [ + "00edefeb-173e-45cd-836c-eea2ba514429", + "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9" + ], + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "EntityIsDeleted": false, + "CommitId": "16f056b3-c19a-42d0-a824-ba2640597ac2", + "Commit": null, + "IsRoot": false + }, + { + "Id": "87f3bbad-ed5d-4cbe-987c-786746a94c06", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "Order": 1, + "DeletedAt": null, + "EntryId": "00edefeb-173e-45cd-836c-eea2ba514429", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Ws": "en" + } + ] + }, + "fr": { + "Spans": [ + { + "Text": "fr", + "Ws": "fr" + } + ] + } + }, + "Gloss": { + "en": "Fruit", + "fr": "fr" + }, + "PartOfSpeech": null, + "PartOfSpeechId": "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "SemanticDomains": [ + { + "Id": "63403699-07c1-43f3-a47c-069d6e4316e5", + "Name": { + "en": "Universe, Creation" + }, + "Code": "1", + "DeletedAt": null, + "Predefined": true + } + ], + "ExampleSentences": [] + }, + "Id": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "DeletedAt": null + }, + "References": [ + "00edefeb-173e-45cd-836c-eea2ba514429", + "46e4fe08-ffa0-4c8b-bf98-2c56f38904d9", + "63403699-07c1-43f3-a47c-069d6e4316e5" + ], + "EntityId": "b9440091-a9fc-4769-82b1-2ee8d030808d", + "EntityIsDeleted": false, + "CommitId": "c2c3e5cc-4e0a-4e3d-a300-d004dacb5a7e", + "Commit": null, + "IsRoot": false + }, + { + "Id": "dcfd50ce-413b-4d12-b4e7-6eed289d3ab2", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "c77d7553-209d-45be-a83e-d07e69808873", + "Order": 1, + "DeletedAt": null, + "EntryId": "d9f70cf9-a479-4141-92e5-44155d063da2", + "Definition": { + "en": { + "Spans": [ + { + "Text": "long curved fruit with yellow skin and soft sweet flesh", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "c77d7553-209d-45be-a83e-d07e69808873", + "DeletedAt": null + }, + "References": [ + "d9f70cf9-a479-4141-92e5-44155d063da2" + ], + "EntityId": "c77d7553-209d-45be-a83e-d07e69808873", + "EntityIsDeleted": false, + "CommitId": "a867ff78-ba45-41fb-986b-6ffaf8e4d5b5", + "Commit": null, + "IsRoot": true + }, + { + "Id": "0f01f15d-938d-495a-b3cb-948caede7540", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "0b76099f-a102-4d24-8fd7-2c44b6eb3623", + "MaybeId": "0b76099f-a102-4d24-8fd7-2c44b6eb3623", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 1 + }, + "Id": "0b76099f-a102-4d24-8fd7-2c44b6eb3623", + "DeletedAt": null + }, + "References": [], + "EntityId": "0b76099f-a102-4d24-8fd7-2c44b6eb3623", + "EntityIsDeleted": false, + "CommitId": "6917532b-c05c-481e-bed7-a0d075822e89", + "Commit": null, + "IsRoot": true + }, + { + "Id": "f001c69d-04b4-4b0f-b049-a56e94041caf", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "33c8a15a-1bd4-429e-a400-3304a3e1d997", + "MaybeId": "33c8a15a-1bd4-429e-a400-3304a3e1d997", + "WsId": "de", + "IsAudio": false, + "Name": "German", + "Abbreviation": "de", + "Font": "Arial", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 1 + }, + "Id": "33c8a15a-1bd4-429e-a400-3304a3e1d997", + "DeletedAt": null + }, + "References": [], + "EntityId": "33c8a15a-1bd4-429e-a400-3304a3e1d997", + "EntityIsDeleted": false, + "CommitId": "b76cb8f9-4854-4e93-af3c-1c2eec00e216", + "Commit": null, + "IsRoot": true + }, + { + "Id": "b03e10de-3708-4d19-8a9e-dac133fa1a74", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "485bd12f-976e-40df-b66c-16d70ee916fa", + "MaybeId": "485bd12f-976e-40df-b66c-16d70ee916fa", + "WsId": "en-Zxxx-x-audio", + "IsAudio": true, + "Name": "English (A)", + "Abbreviation": "Eng \uD83D\uDD0A", + "Font": "Arial", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 3 + }, + "Id": "485bd12f-976e-40df-b66c-16d70ee916fa", + "DeletedAt": null + }, + "References": [], + "EntityId": "485bd12f-976e-40df-b66c-16d70ee916fa", + "EntityIsDeleted": false, + "CommitId": "2c649b96-4aba-4d4d-9cca-3670d4469210", + "Commit": null, + "IsRoot": true + }, + { + "Id": "1a9e7520-9d95-476b-ba35-a4962ad9a0b6", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "9fd79197-95ef-46d7-81a8-bb21aa2579c0", + "MaybeId": "9fd79197-95ef-46d7-81a8-bb21aa2579c0", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 2 + }, + "Id": "9fd79197-95ef-46d7-81a8-bb21aa2579c0", + "DeletedAt": null + }, + "References": [], + "EntityId": "9fd79197-95ef-46d7-81a8-bb21aa2579c0", + "EntityIsDeleted": false, + "CommitId": "d341a388-62f7-41c2-af50-2854b2ed941f", + "Commit": null, + "IsRoot": true + }, + { + "Id": "2923d72f-238a-44ee-af1d-c5613d7cbe54", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "abeaeb03-1a56-49d5-8cc8-a3afe5ffe89e", + "MaybeId": "abeaeb03-1a56-49d5-8cc8-a3afe5ffe89e", + "WsId": "en-Zxxx-x-audio", + "IsAudio": true, + "Name": "English (A)", + "Abbreviation": "Eng \uD83D\uDD0A", + "Font": "Arial", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 3 + }, + "Id": "abeaeb03-1a56-49d5-8cc8-a3afe5ffe89e", + "DeletedAt": null + }, + "References": [], + "EntityId": "abeaeb03-1a56-49d5-8cc8-a3afe5ffe89e", + "EntityIsDeleted": false, + "CommitId": "98cac228-5353-4bd2-811f-e11119ac8694", + "Commit": null, + "IsRoot": true + }, + { + "Id": "a2380046-bc58-4b62-9815-86e6e4d68304", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "d4078989-6c7b-4cc5-8501-ce968405484a", + "MaybeId": "d4078989-6c7b-4cc5-8501-ce968405484a", + "WsId": "fr", + "IsAudio": false, + "Name": "French", + "Abbreviation": "fr", + "Font": "Arial", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 2 + }, + "Id": "d4078989-6c7b-4cc5-8501-ce968405484a", + "DeletedAt": null + }, + "References": [], + "EntityId": "d4078989-6c7b-4cc5-8501-ce968405484a", + "EntityIsDeleted": false, + "CommitId": "6113b384-911c-4a3c-a8cc-85f36bb92106", + "Commit": null, + "IsRoot": true + } +] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/Data/RegressionTestHelper.cs b/backend/FwLite/LcmCrdt.Tests/Data/RegressionTestHelper.cs index 2ec8292aab..412b433c9d 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/RegressionTestHelper.cs +++ b/backend/FwLite/LcmCrdt.Tests/Data/RegressionTestHelper.cs @@ -11,9 +11,9 @@ public class RegressionTestHelper(string dbName): IAsyncLifetime private AsyncServiceScope _asyncScope; public IServiceProvider Services => _asyncScope.ServiceProvider; - private async Task InitDbFromScripts() + private async Task InitDbFromScripts(RegressionVersion version) { - var initialSqlFile = GetFilePath("Scripts/v1.sql"); + var initialSqlFile = GetFilePath($"Scripts/{version}.sql"); var projectsService = _asyncScope.ServiceProvider.GetRequiredService(); var crdtProject = new CrdtProject(dbName, $"{dbName}.sqlite"); if (File.Exists(crdtProject.DbPath)) File.Delete(crdtProject.DbPath); @@ -23,8 +23,12 @@ private async Task InitDbFromScripts() var dbConnection = lcmCrdtDbContext.Database.GetDbConnection(); await dbConnection.OpenAsync(); var dbCommand = dbConnection.CreateCommand(); - dbCommand.CommandText = sql; + // Make virtual tables immediately useable (included here so we don't have to update future sql dumps) + // see: https://sqlite.org/forum/info/b68bc59ddd4aeca38d44823611fa931a671158403e4af522105bf2ba21a96327 + var resetSchema = "PRAGMA writable_schema=RESET;"; + dbCommand.CommandText = $"{sql}\n{resetSchema}"; await dbCommand.ExecuteNonQueryAsync(); + //need to close the connection, otherwise the collations won't get created, they would normally be created on open or save, so we're closing so they get created when EF opens the connection. await dbConnection.CloseAsync(); @@ -32,14 +36,20 @@ private async Task InitDbFromScripts() await projectsService.RefreshProjectData(); } - public async Task InitializeAsync() + + public Task InitializeAsync() + { + return InitializeAsync(RegressionVersion.v2); + } + + public async Task InitializeAsync(RegressionVersion version) { var builder = Host.CreateEmptyApplicationBuilder(null); builder.Services.AddTestLcmCrdtClient(); _host = builder.Build(); var services = _host.Services; _asyncScope = services.CreateAsyncScope(); - await InitDbFromScripts(); + await InitDbFromScripts(version); } public async Task DisposeAsync() @@ -59,4 +69,10 @@ private static string GetFilePath(string name, [CallerFilePath] string sourceFil throw new InvalidOperationException("Could not get directory of source file"), name); } + + public enum RegressionVersion + { + v1, + v2 + } } diff --git a/backend/FwLite/LcmCrdt.Tests/Data/Scripts/generating-versions.MD b/backend/FwLite/LcmCrdt.Tests/Data/Scripts/generating-versions.MD new file mode 100644 index 0000000000..50b9981b39 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/Scripts/generating-versions.MD @@ -0,0 +1,6 @@ +These sql files were generated with the sqlite command line tool. + +Example +```bash +sqlite3 .\Example-Project-dev-2025-09-11-04-40-41-412.sqlite .dump > v2.sql +``` diff --git a/backend/FwLite/LcmCrdt.Tests/Data/Scripts/v2.sql b/backend/FwLite/LcmCrdt.Tests/Data/Scripts/v2.sql new file mode 100644 index 0000000000..c96ff9fe44 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/Scripts/v2.sql @@ -0,0 +1,507 @@ +PRAGMA foreign_keys=OFF; +BEGIN TRANSACTION; +CREATE TABLE IF NOT EXISTS "__EFMigrationsLock" ( + + "Id" INTEGER NOT NULL CONSTRAINT "PK___EFMigrationsLock" PRIMARY KEY, + + "Timestamp" TEXT NOT NULL + +); +CREATE TABLE IF NOT EXISTS "__EFMigrationsHistory" ( + + "MigrationId" TEXT NOT NULL CONSTRAINT "PK___EFMigrationsHistory" PRIMARY KEY, + + "ProductVersion" TEXT NOT NULL + +); +INSERT INTO __EFMigrationsHistory VALUES('20250115085006_InitialCreate','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250115143740_PartOfSpeechNowObject','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250115153509_Add Order to Complex Form Components','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250120033055_AddProjectDataLastUserInfo','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250225100659_AddPublications','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250306152556_AddCodeToProjectData','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250415063756_AddHarmonyUpdate','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250526075433_MigrateReferenceColumn','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250530084107_AddProjectDataRole','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250609090931_AddEntrySearchTable','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250709092804_AddResources','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250806084710_AddMorphTypes','9.0.6'); +INSERT INTO __EFMigrationsHistory VALUES('20250814034436_SetPosIdNullOnDelete','9.0.6'); +CREATE TABLE IF NOT EXISTS "Commits" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_Commits" PRIMARY KEY, + + "Hash" TEXT NOT NULL, + + "ParentHash" TEXT NOT NULL, + + "Counter" INTEGER NOT NULL, + + "DateTime" TEXT NOT NULL, + + "Metadata" jsonb NOT NULL, + + "ClientId" TEXT NOT NULL + +); +INSERT INTO Commits VALUES('DC60D2A9-0CC2-48ED-803C-A238A14B6EAE','DBBDEACCCD3C4FF6','0000',0,'2025-09-11 04:40:42.5375312','{"AuthorName":null,"AuthorId":null,"ClientVersion":null,"ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('023FAEBB-711B-4D2F-B34F-A15621FC66BB','3D9DDAC54A23C3F9','DBBDEACCCD3C4FF6',0,'2025-09-11 04:40:42.7714242','{"AuthorName":null,"AuthorId":null,"ClientVersion":null,"ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('023FAEBB-711B-4D2F-A14F-A15621FC66BC','998AF2D62BB93C3C','3D9DDAC54A23C3F9',0,'2025-09-11 04:40:42.8070906','{"AuthorName":null,"AuthorId":null,"ClientVersion":null,"ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('B76CB8F9-4854-4E93-AF3C-1C2EEC00E216','1A237AAD83E03371','998AF2D62BB93C3C',0,'2025-09-11 04:40:42.8488206','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('D341A388-62F7-41C2-AF50-2854B2ED941F','1EFCEA3A5BA963EE','1A237AAD83E03371',0,'2025-09-11 04:40:42.9130875','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('2C649B96-4ABA-4D4D-9CCA-3670D4469210','E8F0E82971EE0CC4','1EFCEA3A5BA963EE',0,'2025-09-11 04:40:42.9263159','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('6917532B-C05C-481E-BED7-A0D075822E89','6982446BFA81DCB5','E8F0E82971EE0CC4',0,'2025-09-11 04:40:42.9338667','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('6113B384-911C-4A3C-A8CC-85F36BB92106','2D64A91EE86B4686','6982446BFA81DCB5',0,'2025-09-11 04:40:42.9409786','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('98CAC228-5353-4BD2-811F-E11119AC8694','F823069D7CC2EF02','2D64A91EE86B4686',0,'2025-09-11 04:40:42.9491801','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('6A5981B6-D840-44CF-ADF2-D51D4908314B','3A4690D55ACE201A','F823069D7CC2EF02',0,'2025-09-11 04:40:42.9687415','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('A867FF78-BA45-41FB-986B-6FFAF8E4D5B5','CAC40ACE42202EAA','3A4690D55ACE201A',0,'2025-09-11 04:40:43.3549441','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('191B4774-F571-4E57-8639-D215106E8ABF','3AAB167808CD32C7','CAC40ACE42202EAA',0,'2025-09-11 04:40:43.3713259','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('CD77D4CB-FBB6-4004-9159-F7F28482CA75','DB9C6BD7E0C77F29','3AAB167808CD32C7',0,'2025-09-11 04:40:43.383049','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('5DBA93AF-7604-410F-B109-EC4961BB608F','A560F9ADCFB6C303','DB9C6BD7E0C77F29',0,'2025-09-11 04:41:10.4780385','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('64308E87-7710-48FE-B4D8-2FA131F2456D','75A589E1E908EF6B','A560F9ADCFB6C303',0,'2025-09-11 04:41:12.4029032','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('276EF0D5-677C-46AA-AF7E-D518ABBA15B5','2F7476D19CDB2077','75A589E1E908EF6B',0,'2025-09-11 04:41:22.058834','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('4E078D12-BA55-42A8-8772-F0DB0891FA71','1EE26E7C69C2F5F3','2F7476D19CDB2077',0,'2025-09-11 04:41:24.672275','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('DF118748-6170-40FA-A38F-7ADDF0AA4B4D','A65F0FC4CB76A580','1EE26E7C69C2F5F3',0,'2025-09-11 04:41:29.8914754','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('2F476F0D-BAAE-4428-A534-2447A3E6338C','780F1840B75CB9F9','A65F0FC4CB76A580',0,'2025-09-11 04:41:31.7484795','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('6C1E0DC4-E30B-43DC-889C-DC5787FBF282','A29F9A03435C098B','780F1840B75CB9F9',0,'2025-09-11 04:41:34.4277594','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('241F2698-C899-4476-986B-B339FA50FCE8','9CC759185DF95724','A29F9A03435C098B',0,'2025-09-11 04:41:38.2877384','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('16F056B3-C19A-42D0-A824-BA2640597AC2','04B4308D308C6166','9CC759185DF95724',0,'2025-09-11 04:41:39.5996003','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('C2C3E5CC-4E0A-4E3D-A300-D004DACB5A7E','A1C0623BB8367B51','04B4308D308C6166',0,'2025-09-11 04:41:43.4740918','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('5AAC4FF6-0DD8-4266-875C-00F1800EFAD4','B5098096A23C7B07','A1C0623BB8367B51',0,'2025-09-11 04:41:46.1064111','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('5B954C9F-C86F-463A-BAA2-15EBB7A6074B','56F7E637ED4D61B6','B5098096A23C7B07',0,'2025-09-11 04:41:48.6612136','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +INSERT INTO Commits VALUES('BAF9DA29-2187-4D2E-9C67-92C295C3FBD7','E412344CF0C2090F','56F7E637ED4D61B6',0,'2025-09-11 04:41:51.1824641','{"AuthorName":null,"AuthorId":null,"ClientVersion":"v2025-09-05-d8051b6c\u002Bd8051b6cc48f8b51b22b9231cd45d23ab59bdc00","ExtraMetadata":{}}','ED59326F-B0AA-406F-857A-50FA2B1DC417'); +CREATE TABLE IF NOT EXISTS "ChangeEntities" ( + + "Index" INTEGER NOT NULL, + + "CommitId" TEXT NOT NULL, + + "EntityId" TEXT NOT NULL, + + "Change" jsonb NULL, + + CONSTRAINT "PK_ChangeEntities" PRIMARY KEY ("CommitId", "Index"), + + CONSTRAINT "FK_ChangeEntities_Commits_CommitId" FOREIGN KEY ("CommitId") REFERENCES "Commits" ("Id") ON DELETE CASCADE + +); +INSERT INTO ChangeEntities VALUES(0,'DC60D2A9-0CC2-48ED-803C-A238A14B6EAE','C36F55ED-D1EA-4069-90B3-3F35FF696273','{"$type":"CreateComplexFormType","Name":{"en":"Compound"},"EntityId":"c36f55ed-d1ea-4069-90b3-3f35ff696273"}'); +INSERT INTO ChangeEntities VALUES(1,'DC60D2A9-0CC2-48ED-803C-A238A14B6EAE','EEB78FCE-6009-4932-AAA6-85FAEB180C69','{"$type":"CreateComplexFormType","Name":{"en":"Unspecified"},"EntityId":"eeb78fce-6009-4932-aaa6-85faeb180c69"}'); +INSERT INTO ChangeEntities VALUES(0,'023FAEBB-711B-4D2F-B34F-A15621FC66BB','46E4FE08-FFA0-4C8B-BF98-2C56F38904D9','{"$type":"CreatePartOfSpeechChange","Name":{"en":"Adverb"},"Predefined":true,"EntityId":"46e4fe08-ffa0-4c8b-bf98-2c56f38904d9"}'); +INSERT INTO ChangeEntities VALUES(0,'023FAEBB-711B-4D2F-A14F-A15621FC66BC','63403699-07C1-43F3-A47C-069D6E4316E5','{"$type":"CreateSemanticDomainChange","Name":{"en":"Universe, Creation"},"Predefined":true,"Code":"1","EntityId":"63403699-07c1-43f3-a47c-069d6e4316e5"}'); +INSERT INTO ChangeEntities VALUES(1,'023FAEBB-711B-4D2F-A14F-A15621FC66BC','999581C4-1611-4ACB-AE1B-5E6C1DFE6F0C','{"$type":"CreateSemanticDomainChange","Name":{"en":"Sky"},"Predefined":true,"Code":"1.1","EntityId":"999581c4-1611-4acb-ae1b-5e6c1dfe6f0c"}'); +INSERT INTO ChangeEntities VALUES(2,'023FAEBB-711B-4D2F-A14F-A15621FC66BC','DC1A2C6F-1B32-4631-8823-36DACC8CB7BB','{"$type":"CreateSemanticDomainChange","Name":{"en":"World"},"Predefined":true,"Code":"1.2","EntityId":"dc1a2c6f-1b32-4631-8823-36dacc8cb7bb"}'); +INSERT INTO ChangeEntities VALUES(3,'023FAEBB-711B-4D2F-A14F-A15621FC66BC','1BD42665-0610-4442-8D8D-7C666FEE3A6D','{"$type":"CreateSemanticDomainChange","Name":{"en":"Person"},"Predefined":true,"Code":"2","EntityId":"1bd42665-0610-4442-8d8d-7c666fee3a6d"}'); +INSERT INTO ChangeEntities VALUES(4,'023FAEBB-711B-4D2F-A14F-A15621FC66BC','46E4FE08-FFA0-4C8B-BF88-2C56F38904D4','{"$type":"CreateSemanticDomainChange","Name":{"en":"Body"},"Predefined":false,"Code":"2.1","EntityId":"46e4fe08-ffa0-4c8b-bf88-2c56f38904d4"}'); +INSERT INTO ChangeEntities VALUES(5,'023FAEBB-711B-4D2F-A14F-A15621FC66BC','46E4FE08-FFA0-4C8B-BF88-2C56F38904D5','{"$type":"CreateSemanticDomainChange","Name":{"en":"Head"},"Predefined":false,"Code":"2.1.1","EntityId":"46e4fe08-ffa0-4c8b-bf88-2c56f38904d5"}'); +INSERT INTO ChangeEntities VALUES(6,'023FAEBB-711B-4D2F-A14F-A15621FC66BC','46E4FE08-FFA0-4C8B-BF88-2C56F38904D6','{"$type":"CreateSemanticDomainChange","Name":{"en":"Eye"},"Predefined":false,"Code":"2.1.1.1","EntityId":"46e4fe08-ffa0-4c8b-bf88-2c56f38904d6"}'); +INSERT INTO ChangeEntities VALUES(0,'B76CB8F9-4854-4E93-AF3C-1C2EEC00E216','33C8A15A-1BD4-429E-A400-3304A3E1D997','{"$type":"CreateWritingSystemChange","WsId":"de","Name":"German","Abbreviation":"de","Font":"Arial","Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Type":0,"Order":1,"EntityId":"33c8a15a-1bd4-429e-a400-3304a3e1d997"}'); +INSERT INTO ChangeEntities VALUES(0,'D341A388-62F7-41C2-AF50-2854B2ED941F','9FD79197-95EF-46D7-81A8-BB21AA2579C0','{"$type":"CreateWritingSystemChange","WsId":"en","Name":"English","Abbreviation":"en","Font":"Arial","Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Type":0,"Order":2,"EntityId":"9fd79197-95ef-46d7-81a8-bb21aa2579c0"}'); +INSERT INTO ChangeEntities VALUES(0,'2C649B96-4ABA-4D4D-9CCA-3670D4469210','485BD12F-976E-40DF-B66C-16D70EE916FA','{"$type":"CreateWritingSystemChange","WsId":"en-Zxxx-x-audio","Name":"English (A)","Abbreviation":"Eng \uD83D\uDD0A","Font":"Arial","Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Type":0,"Order":3,"EntityId":"485bd12f-976e-40df-b66c-16d70ee916fa"}'); +INSERT INTO ChangeEntities VALUES(0,'6917532B-C05C-481E-BED7-A0D075822E89','0B76099F-A102-4D24-8FD7-2C44B6EB3623','{"$type":"CreateWritingSystemChange","WsId":"en","Name":"English","Abbreviation":"en","Font":"Arial","Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Type":1,"Order":1,"EntityId":"0b76099f-a102-4d24-8fd7-2c44b6eb3623"}'); +INSERT INTO ChangeEntities VALUES(0,'6113B384-911C-4A3C-A8CC-85F36BB92106','D4078989-6C7B-4CC5-8501-CE968405484A','{"$type":"CreateWritingSystemChange","WsId":"fr","Name":"French","Abbreviation":"fr","Font":"Arial","Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Type":1,"Order":2,"EntityId":"d4078989-6c7b-4cc5-8501-ce968405484a"}'); +INSERT INTO ChangeEntities VALUES(0,'98CAC228-5353-4BD2-811F-E11119AC8694','ABEAEB03-1A56-49D5-8CC8-A3AFE5FFE89E','{"$type":"CreateWritingSystemChange","WsId":"en-Zxxx-x-audio","Name":"English (A)","Abbreviation":"Eng \uD83D\uDD0A","Font":"Arial","Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Type":1,"Order":3,"EntityId":"abeaeb03-1a56-49d5-8cc8-a3afe5ffe89e"}'); +INSERT INTO ChangeEntities VALUES(0,'6A5981B6-D840-44CF-ADF2-D51D4908314B','00EDEFEB-173E-45CD-836C-EEA2BA514429','{"$type":"CreateEntryChange","LexemeForm":{"en":"Apple"},"CitationForm":{"en":"Apple"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}},"Note":{},"MorphType":"Stem","EntityId":"00edefeb-173e-45cd-836c-eea2ba514429"}'); +INSERT INTO ChangeEntities VALUES(1,'6A5981B6-D840-44CF-ADF2-D51D4908314B','B9440091-A9FC-4769-82B1-2EE8D030808D','{"$type":"CreateSenseChange","EntryId":"00edefeb-173e-45cd-836c-eea2ba514429","Order":1,"Definition":{"en":{"Spans":[{"Text":"fruit with red, yellow, or green skin with a sweet or tart crispy white flesh","Ws":"en"}]}},"Gloss":{"en":"Fruit"},"PartOfSpeechId":null,"SemanticDomains":[],"EntityId":"b9440091-a9fc-4769-82b1-2ee8d030808d"}'); +INSERT INTO ChangeEntities VALUES(2,'6A5981B6-D840-44CF-ADF2-D51D4908314B','135D7C84-95D8-4707-A400-E1F3619D90FB','{"$type":"CreateExampleSentenceChange","SenseId":"b9440091-a9fc-4769-82b1-2ee8d030808d","Order":1,"Sentence":{"en":{"Spans":[{"Text":"We ate an apple","Ws":"en"}]}},"Translation":{},"Reference":null,"EntityId":"135d7c84-95d8-4707-a400-e1f3619d90fb"}'); +INSERT INTO ChangeEntities VALUES(0,'A867FF78-BA45-41FB-986B-6FFAF8E4D5B5','D9F70CF9-A479-4141-92E5-44155D063DA2','{"$type":"CreateEntryChange","LexemeForm":{"en":"Banana"},"CitationForm":{"en":"Banana"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}},"Note":{},"MorphType":"Stem","EntityId":"d9f70cf9-a479-4141-92e5-44155d063da2"}'); +INSERT INTO ChangeEntities VALUES(1,'A867FF78-BA45-41FB-986B-6FFAF8E4D5B5','C77D7553-209D-45BE-A83E-D07E69808873','{"$type":"CreateSenseChange","EntryId":"d9f70cf9-a479-4141-92e5-44155d063da2","Order":1,"Definition":{"en":{"Spans":[{"Text":"long curved fruit with yellow skin and soft sweet flesh","Ws":"en"}]}},"Gloss":{"en":"Fruit"},"PartOfSpeechId":null,"SemanticDomains":[],"EntityId":"c77d7553-209d-45be-a83e-d07e69808873"}'); +INSERT INTO ChangeEntities VALUES(2,'A867FF78-BA45-41FB-986B-6FFAF8E4D5B5','D9D515E8-D695-44C3-9766-AFBEAB8C470F','{"$type":"CreateExampleSentenceChange","SenseId":"c77d7553-209d-45be-a83e-d07e69808873","Order":1,"Sentence":{"en":{"Spans":[{"Text":"The monkey peeled a banana","Ws":"en"}]}},"Translation":{},"Reference":null,"EntityId":"d9d515e8-d695-44c3-9766-afbeab8c470f"}'); +INSERT INTO ChangeEntities VALUES(0,'191B4774-F571-4E57-8639-D215106E8ABF','75050583-70D7-4605-A6E6-872B8F36C482','{"$type":"CreateEntryChange","LexemeForm":{"en":"Orange"},"CitationForm":{"en":"Orange"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}},"Note":{},"MorphType":"Stem","EntityId":"75050583-70d7-4605-a6e6-872b8f36c482"}'); +INSERT INTO ChangeEntities VALUES(1,'191B4774-F571-4E57-8639-D215106E8ABF','241D95A7-6D90-411B-8569-5648CC40B42B','{"$type":"CreateSenseChange","EntryId":"75050583-70d7-4605-a6e6-872b8f36c482","Order":1,"Definition":{"en":{"Spans":[{"Text":"round citrus fruit with orange skin and juicy segments inside","Ws":"en"}]}},"Gloss":{"en":"Fruit"},"PartOfSpeechId":null,"SemanticDomains":[],"EntityId":"241d95a7-6d90-411b-8569-5648cc40b42b"}'); +INSERT INTO ChangeEntities VALUES(2,'191B4774-F571-4E57-8639-D215106E8ABF','9AA9F5A4-FAEA-45E9-BEE7-42929EEBF691','{"$type":"CreateExampleSentenceChange","SenseId":"241d95a7-6d90-411b-8569-5648cc40b42b","Order":1,"Sentence":{"en":{"Spans":[{"Text":"I squeezed the orange for juice","Ws":"en"}]}},"Translation":{},"Reference":null,"EntityId":"9aa9f5a4-faea-45e9-bee7-42929eebf691"}'); +INSERT INTO ChangeEntities VALUES(0,'CD77D4CB-FBB6-4004-9159-F7F28482CA75','9E84DB09-1885-4BBB-9482-4891A46F6F49','{"$type":"CreateEntryChange","LexemeForm":{"en":"Grape"},"CitationForm":{"en":"Grape"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}},"Note":{},"MorphType":"Stem","EntityId":"9e84db09-1885-4bbb-9482-4891a46f6f49"}'); +INSERT INTO ChangeEntities VALUES(1,'CD77D4CB-FBB6-4004-9159-F7F28482CA75','1B423127-DEB2-468D-8100-E1F1BFF20826','{"$type":"CreateSenseChange","EntryId":"9e84db09-1885-4bbb-9482-4891a46f6f49","Order":1,"Definition":{"en":{"Spans":[{"Text":"small round or oval fruit growing in clusters, used for wine or eating","Ws":"en"}]}},"Gloss":{"en":"Fruit"},"PartOfSpeechId":null,"SemanticDomains":[],"EntityId":"1b423127-deb2-468d-8100-e1f1bff20826"}'); +INSERT INTO ChangeEntities VALUES(2,'CD77D4CB-FBB6-4004-9159-F7F28482CA75','288D64C3-93F9-48A2-A014-D8773369B4A8','{"$type":"CreateExampleSentenceChange","SenseId":"1b423127-deb2-468d-8100-e1f1bff20826","Order":1,"Sentence":{"en":{"Spans":[{"Text":"The vineyard was full of ripe grapes","Ws":"en"}]}},"Translation":{},"Reference":null,"EntityId":"288d64c3-93f9-48a2-a014-d8773369b4a8"}'); +INSERT INTO ChangeEntities VALUES(0,'5DBA93AF-7604-410F-B109-EC4961BB608F','00EDEFEB-173E-45CD-836C-EEA2BA514429','{"$type":"jsonPatch:Entry","PatchDocument":[{"op":"add","path":"/LexemeForm/de","value":"de"}],"EntityId":"00edefeb-173e-45cd-836c-eea2ba514429"}'); +INSERT INTO ChangeEntities VALUES(0,'64308E87-7710-48FE-B4D8-2FA131F2456D','00EDEFEB-173E-45CD-836C-EEA2BA514429','{"$type":"jsonPatch:Entry","PatchDocument":[{"op":"add","path":"/CitationForm/de","value":"de"}],"EntityId":"00edefeb-173e-45cd-836c-eea2ba514429"}'); +INSERT INTO ChangeEntities VALUES(0,'276EF0D5-677C-46AA-AF7E-D518ABBA15B5','A4A74738-3914-43CA-8C25-BEE34EB517B7','{"$type":"AddEntryComponentChange","Order":1,"ComplexFormEntryId":"75050583-70d7-4605-a6e6-872b8f36c482","ComponentEntryId":"00edefeb-173e-45cd-836c-eea2ba514429","ComponentSenseId":null,"EntityId":"a4a74738-3914-43ca-8c25-bee34eb517b7"}'); +INSERT INTO ChangeEntities VALUES(0,'4E078D12-BA55-42A8-8772-F0DB0891FA71','00EDEFEB-173E-45CD-836C-EEA2BA514429','{"$type":"AddComplexFormTypeChange","ComplexFormType":{"Id":"c36f55ed-d1ea-4069-90b3-3f35ff696273","Name":{"en":"Compound"},"DeletedAt":null},"EntityId":"00edefeb-173e-45cd-836c-eea2ba514429"}'); +INSERT INTO ChangeEntities VALUES(0,'DF118748-6170-40FA-A38F-7ADDF0AA4B4D','00EDEFEB-173E-45CD-836C-EEA2BA514429','{"$type":"jsonPatch:Entry","PatchDocument":[{"op":"add","path":"/LiteralMeaning/fr","value":{"Spans":[{"Text":"fr","Ws":"fr"}]}}],"EntityId":"00edefeb-173e-45cd-836c-eea2ba514429"}'); +INSERT INTO ChangeEntities VALUES(0,'2F476F0D-BAAE-4428-A534-2447A3E6338C','00EDEFEB-173E-45CD-836C-EEA2BA514429','{"$type":"jsonPatch:Entry","PatchDocument":[{"op":"add","path":"/Note/en","value":{"Spans":[{"Text":"note","Ws":"en"}]}}],"EntityId":"00edefeb-173e-45cd-836c-eea2ba514429"}'); +INSERT INTO ChangeEntities VALUES(0,'6C1E0DC4-E30B-43DC-889C-DC5787FBF282','B9440091-A9FC-4769-82B1-2EE8D030808D','{"$type":"jsonPatch:Sense","PatchDocument":[{"op":"add","path":"/Gloss/fr","value":"fr"}],"EntityId":"b9440091-a9fc-4769-82b1-2ee8d030808d"}'); +INSERT INTO ChangeEntities VALUES(0,'241F2698-C899-4476-986B-B339FA50FCE8','B9440091-A9FC-4769-82B1-2EE8D030808D','{"$type":"jsonPatch:Sense","PatchDocument":[{"op":"add","path":"/Definition/fr","value":{"Spans":[{"Text":"fr","Ws":"fr"}]}}],"EntityId":"b9440091-a9fc-4769-82b1-2ee8d030808d"}'); +INSERT INTO ChangeEntities VALUES(0,'16F056B3-C19A-42D0-A824-BA2640597AC2','B9440091-A9FC-4769-82B1-2EE8D030808D','{"$type":"SetPartOfSpeechChange","PartOfSpeechId":"46e4fe08-ffa0-4c8b-bf98-2c56f38904d9","EntityId":"b9440091-a9fc-4769-82b1-2ee8d030808d"}'); +INSERT INTO ChangeEntities VALUES(0,'C2C3E5CC-4E0A-4E3D-A300-D004DACB5A7E','B9440091-A9FC-4769-82B1-2EE8D030808D','{"$type":"AddSemanticDomainChange","SemanticDomain":{"Id":"63403699-07c1-43f3-a47c-069d6e4316e5","Name":{"en":"Universe, Creation"},"Code":"1","DeletedAt":null,"Predefined":true},"EntityId":"b9440091-a9fc-4769-82b1-2ee8d030808d"}'); +INSERT INTO ChangeEntities VALUES(0,'5AAC4FF6-0DD8-4266-875C-00F1800EFAD4','135D7C84-95D8-4707-A400-E1F3619D90FB','{"$type":"jsonPatch:ExampleSentence","PatchDocument":[{"op":"add","path":"/Sentence/de","value":{"Spans":[{"Text":"de","Ws":"de"}]}}],"EntityId":"135d7c84-95d8-4707-a400-e1f3619d90fb"}'); +INSERT INTO ChangeEntities VALUES(0,'5B954C9F-C86F-463A-BAA2-15EBB7A6074B','135D7C84-95D8-4707-A400-E1F3619D90FB','{"$type":"jsonPatch:ExampleSentence","PatchDocument":[{"op":"add","path":"/Translation/en","value":{"Spans":[{"Text":"en","Ws":"en"}]}}],"EntityId":"135d7c84-95d8-4707-a400-e1f3619d90fb"}'); +INSERT INTO ChangeEntities VALUES(0,'BAF9DA29-2187-4D2E-9C67-92C295C3FBD7','135D7C84-95D8-4707-A400-E1F3619D90FB','{"$type":"jsonPatch:ExampleSentence","PatchDocument":[{"op":"replace","path":"/Reference","value":{"Spans":[{"Text":"ref","Ws":"en"}]}}],"EntityId":"135d7c84-95d8-4707-a400-e1f3619d90fb"}'); +CREATE TABLE IF NOT EXISTS "Snapshots" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_Snapshots" PRIMARY KEY, + + "TypeName" TEXT NOT NULL, + + "Entity" jsonb NOT NULL, + + "References" TEXT NOT NULL, + + "EntityId" TEXT NOT NULL, + + "EntityIsDeleted" INTEGER NOT NULL, + + "CommitId" TEXT NOT NULL, + + "IsRoot" INTEGER NOT NULL, + + CONSTRAINT "FK_Snapshots_Commits_CommitId" FOREIGN KEY ("CommitId") REFERENCES "Commits" ("Id") ON DELETE CASCADE + +); +INSERT INTO Snapshots VALUES('83CA281B-4698-4DDD-8C5E-45FE1A9B5128','ComplexFormType','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"ComplexFormType","Id":"eeb78fce-6009-4932-aaa6-85faeb180c69","Name":{"en":"Unspecified"},"DeletedAt":null},"Id":"eeb78fce-6009-4932-aaa6-85faeb180c69","DeletedAt":null}','[]','EEB78FCE-6009-4932-AAA6-85FAEB180C69',0,'DC60D2A9-0CC2-48ED-803C-A238A14B6EAE',1); +INSERT INTO Snapshots VALUES('D9672868-5457-4132-ACB1-40A736CB6286','ComplexFormType','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"ComplexFormType","Id":"c36f55ed-d1ea-4069-90b3-3f35ff696273","Name":{"en":"Compound"},"DeletedAt":null},"Id":"c36f55ed-d1ea-4069-90b3-3f35ff696273","DeletedAt":null}','[]','C36F55ED-D1EA-4069-90B3-3F35FF696273',0,'DC60D2A9-0CC2-48ED-803C-A238A14B6EAE',1); +INSERT INTO Snapshots VALUES('659A8536-28DA-4671-A63D-36EE158619A1','PartOfSpeech','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"PartOfSpeech","Id":"46e4fe08-ffa0-4c8b-bf98-2c56f38904d9","Name":{"en":"Adverb"},"DeletedAt":null,"Predefined":true},"Id":"46e4fe08-ffa0-4c8b-bf98-2c56f38904d9","DeletedAt":null}','[]','46E4FE08-FFA0-4C8B-BF98-2C56F38904D9',0,'023FAEBB-711B-4D2F-B34F-A15621FC66BB',1); +INSERT INTO Snapshots VALUES('14ACC90E-F0B8-4C54-A73A-D72E08D08319','SemanticDomain','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"SemanticDomain","Id":"63403699-07c1-43f3-a47c-069d6e4316e5","Name":{"en":"Universe, Creation"},"Code":"1","DeletedAt":null,"Predefined":true},"Id":"63403699-07c1-43f3-a47c-069d6e4316e5","DeletedAt":null}','[]','63403699-07C1-43F3-A47C-069D6E4316E5',0,'023FAEBB-711B-4D2F-A14F-A15621FC66BC',1); +INSERT INTO Snapshots VALUES('6984026F-F359-464B-8C0A-38911D6B432B','SemanticDomain','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"SemanticDomain","Id":"999581c4-1611-4acb-ae1b-5e6c1dfe6f0c","Name":{"en":"Sky"},"Code":"1.1","DeletedAt":null,"Predefined":true},"Id":"999581c4-1611-4acb-ae1b-5e6c1dfe6f0c","DeletedAt":null}','[]','999581C4-1611-4ACB-AE1B-5E6C1DFE6F0C',0,'023FAEBB-711B-4D2F-A14F-A15621FC66BC',1); +INSERT INTO Snapshots VALUES('7EDD8E1F-47FD-48BC-9B59-4CEC9C1AD2A4','SemanticDomain','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"SemanticDomain","Id":"dc1a2c6f-1b32-4631-8823-36dacc8cb7bb","Name":{"en":"World"},"Code":"1.2","DeletedAt":null,"Predefined":true},"Id":"dc1a2c6f-1b32-4631-8823-36dacc8cb7bb","DeletedAt":null}','[]','DC1A2C6F-1B32-4631-8823-36DACC8CB7BB',0,'023FAEBB-711B-4D2F-A14F-A15621FC66BC',1); +INSERT INTO Snapshots VALUES('9689DD1F-0084-464D-89F2-52A05361DAEC','SemanticDomain','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"SemanticDomain","Id":"1bd42665-0610-4442-8d8d-7c666fee3a6d","Name":{"en":"Person"},"Code":"2","DeletedAt":null,"Predefined":true},"Id":"1bd42665-0610-4442-8d8d-7c666fee3a6d","DeletedAt":null}','[]','1BD42665-0610-4442-8D8D-7C666FEE3A6D',0,'023FAEBB-711B-4D2F-A14F-A15621FC66BC',1); +INSERT INTO Snapshots VALUES('B4940DD3-2AD6-4391-98BF-8C26CD6D9BA9','SemanticDomain','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"SemanticDomain","Id":"46e4fe08-ffa0-4c8b-bf88-2c56f38904d6","Name":{"en":"Eye"},"Code":"2.1.1.1","DeletedAt":null,"Predefined":false},"Id":"46e4fe08-ffa0-4c8b-bf88-2c56f38904d6","DeletedAt":null}','[]','46E4FE08-FFA0-4C8B-BF88-2C56F38904D6',0,'023FAEBB-711B-4D2F-A14F-A15621FC66BC',1); +INSERT INTO Snapshots VALUES('D8F964B5-312D-4D2E-9D47-3A00C42B7B52','SemanticDomain','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"SemanticDomain","Id":"46e4fe08-ffa0-4c8b-bf88-2c56f38904d5","Name":{"en":"Head"},"Code":"2.1.1","DeletedAt":null,"Predefined":false},"Id":"46e4fe08-ffa0-4c8b-bf88-2c56f38904d5","DeletedAt":null}','[]','46E4FE08-FFA0-4C8B-BF88-2C56F38904D5',0,'023FAEBB-711B-4D2F-A14F-A15621FC66BC',1); +INSERT INTO Snapshots VALUES('EAB8B267-9E9B-48A3-A593-C890771B743D','SemanticDomain','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"SemanticDomain","Id":"46e4fe08-ffa0-4c8b-bf88-2c56f38904d4","Name":{"en":"Body"},"Code":"2.1","DeletedAt":null,"Predefined":false},"Id":"46e4fe08-ffa0-4c8b-bf88-2c56f38904d4","DeletedAt":null}','[]','46E4FE08-FFA0-4C8B-BF88-2C56F38904D4',0,'023FAEBB-711B-4D2F-A14F-A15621FC66BC',1); +INSERT INTO Snapshots VALUES('F001C69D-04B4-4B0F-B049-A56E94041CAF','WritingSystem','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"WritingSystem","Id":"33c8a15a-1bd4-429e-a400-3304a3e1d997","WsId":"de","IsAudio":false,"Name":"German","Abbreviation":"de","Font":"Arial","DeletedAt":null,"Type":0,"Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Order":1},"Id":"33c8a15a-1bd4-429e-a400-3304a3e1d997","DeletedAt":null}','[]','33C8A15A-1BD4-429E-A400-3304A3E1D997',0,'B76CB8F9-4854-4E93-AF3C-1C2EEC00E216',1); +INSERT INTO Snapshots VALUES('1A9E7520-9D95-476B-BA35-A4962AD9A0B6','WritingSystem','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"WritingSystem","Id":"9fd79197-95ef-46d7-81a8-bb21aa2579c0","WsId":"en","IsAudio":false,"Name":"English","Abbreviation":"en","Font":"Arial","DeletedAt":null,"Type":0,"Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Order":2},"Id":"9fd79197-95ef-46d7-81a8-bb21aa2579c0","DeletedAt":null}','[]','9FD79197-95EF-46D7-81A8-BB21AA2579C0',0,'D341A388-62F7-41C2-AF50-2854B2ED941F',1); +INSERT INTO Snapshots VALUES('B03E10DE-3708-4D19-8A9E-DAC133FA1A74','WritingSystem','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"WritingSystem","Id":"485bd12f-976e-40df-b66c-16d70ee916fa","WsId":"en-Zxxx-x-audio","IsAudio":true,"Name":"English (A)","Abbreviation":"Eng \uD83D\uDD0A","Font":"Arial","DeletedAt":null,"Type":0,"Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Order":3},"Id":"485bd12f-976e-40df-b66c-16d70ee916fa","DeletedAt":null}','[]','485BD12F-976E-40DF-B66C-16D70EE916FA',0,'2C649B96-4ABA-4D4D-9CCA-3670D4469210',1); +INSERT INTO Snapshots VALUES('0F01F15D-938D-495A-B3CB-948CAEDE7540','WritingSystem','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"WritingSystem","Id":"0b76099f-a102-4d24-8fd7-2c44b6eb3623","WsId":"en","IsAudio":false,"Name":"English","Abbreviation":"en","Font":"Arial","DeletedAt":null,"Type":1,"Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Order":1},"Id":"0b76099f-a102-4d24-8fd7-2c44b6eb3623","DeletedAt":null}','[]','0B76099F-A102-4D24-8FD7-2C44B6EB3623',0,'6917532B-C05C-481E-BED7-A0D075822E89',1); +INSERT INTO Snapshots VALUES('A2380046-BC58-4B62-9815-86E6E4D68304','WritingSystem','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"WritingSystem","Id":"d4078989-6c7b-4cc5-8501-ce968405484a","WsId":"fr","IsAudio":false,"Name":"French","Abbreviation":"fr","Font":"Arial","DeletedAt":null,"Type":1,"Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Order":2},"Id":"d4078989-6c7b-4cc5-8501-ce968405484a","DeletedAt":null}','[]','D4078989-6C7B-4CC5-8501-CE968405484A',0,'6113B384-911C-4A3C-A8CC-85F36BB92106',1); +INSERT INTO Snapshots VALUES('2923D72F-238A-44EE-AF1D-C5613D7CBE54','WritingSystem','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"WritingSystem","Id":"abeaeb03-1a56-49d5-8cc8-a3afe5ffe89e","WsId":"en-Zxxx-x-audio","IsAudio":true,"Name":"English (A)","Abbreviation":"Eng \uD83D\uDD0A","Font":"Arial","DeletedAt":null,"Type":1,"Exemplars":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],"Order":3},"Id":"abeaeb03-1a56-49d5-8cc8-a3afe5ffe89e","DeletedAt":null}','[]','ABEAEB03-1A56-49D5-8CC8-A3AFE5FFE89E',0,'98CAC228-5353-4BD2-811F-E11119AC8694',1); +INSERT INTO Snapshots VALUES('929EF062-41E8-45E5-ABF3-3C20507A80DC','ExampleSentence','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"ExampleSentence","Id":"135d7c84-95d8-4707-a400-e1f3619d90fb","Order":1,"Sentence":{"en":{"Spans":[{"Text":"We ate an apple","Ws":"en"}]}},"Translation":{},"Reference":null,"SenseId":"b9440091-a9fc-4769-82b1-2ee8d030808d","DeletedAt":null},"Id":"135d7c84-95d8-4707-a400-e1f3619d90fb","DeletedAt":null}','["B9440091-A9FC-4769-82B1-2EE8D030808D"]','135D7C84-95D8-4707-A400-E1F3619D90FB',0,'6A5981B6-D840-44CF-ADF2-D51D4908314B',1); +INSERT INTO Snapshots VALUES('99C1758F-1CE7-4FE7-B261-6AF7C66A031A','Entry','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Entry","Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null,"LexemeForm":{"en":"Apple"},"CitationForm":{"en":"Apple"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}},"MorphType":"Stem","Senses":[],"Note":{},"Components":[],"ComplexForms":[],"ComplexFormTypes":[],"PublishIn":[]},"Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null}','[]','00EDEFEB-173E-45CD-836C-EEA2BA514429',0,'6A5981B6-D840-44CF-ADF2-D51D4908314B',1); +INSERT INTO Snapshots VALUES('C18904B3-5D12-4EEC-A239-B5A3B5AE6A7D','Sense','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Sense","Id":"b9440091-a9fc-4769-82b1-2ee8d030808d","Order":1,"DeletedAt":null,"EntryId":"00edefeb-173e-45cd-836c-eea2ba514429","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":[]},"Id":"b9440091-a9fc-4769-82b1-2ee8d030808d","DeletedAt":null}','["00EDEFEB-173E-45CD-836C-EEA2BA514429"]','B9440091-A9FC-4769-82B1-2EE8D030808D',0,'6A5981B6-D840-44CF-ADF2-D51D4908314B',1); +INSERT INTO Snapshots VALUES('2F77033C-F317-4D01-A486-2F976CE7850E','ExampleSentence','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"ExampleSentence","Id":"d9d515e8-d695-44c3-9766-afbeab8c470f","Order":1,"Sentence":{"en":{"Spans":[{"Text":"The monkey peeled a banana","Ws":"en"}]}},"Translation":{},"Reference":null,"SenseId":"c77d7553-209d-45be-a83e-d07e69808873","DeletedAt":null},"Id":"d9d515e8-d695-44c3-9766-afbeab8c470f","DeletedAt":null}','["C77D7553-209D-45BE-A83E-D07E69808873"]','D9D515E8-D695-44C3-9766-AFBEAB8C470F',0,'A867FF78-BA45-41FB-986B-6FFAF8E4D5B5',1); +INSERT INTO Snapshots VALUES('DCFD50CE-413B-4D12-B4E7-6EED289D3AB2','Sense','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Sense","Id":"c77d7553-209d-45be-a83e-d07e69808873","Order":1,"DeletedAt":null,"EntryId":"d9f70cf9-a479-4141-92e5-44155d063da2","Definition":{"en":{"Spans":[{"Text":"long curved fruit with yellow skin and soft sweet flesh","Ws":"en"}]}},"Gloss":{"en":"Fruit"},"PartOfSpeech":null,"PartOfSpeechId":null,"SemanticDomains":[],"ExampleSentences":[]},"Id":"c77d7553-209d-45be-a83e-d07e69808873","DeletedAt":null}','["D9F70CF9-A479-4141-92E5-44155D063DA2"]','C77D7553-209D-45BE-A83E-D07E69808873',0,'A867FF78-BA45-41FB-986B-6FFAF8E4D5B5',1); +INSERT INTO Snapshots VALUES('ECF9A05C-0E55-4342-B674-16FA1B347FED','Entry','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Entry","Id":"d9f70cf9-a479-4141-92e5-44155d063da2","DeletedAt":null,"LexemeForm":{"en":"Banana"},"CitationForm":{"en":"Banana"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}},"MorphType":"Stem","Senses":[],"Note":{},"Components":[],"ComplexForms":[],"ComplexFormTypes":[],"PublishIn":[]},"Id":"d9f70cf9-a479-4141-92e5-44155d063da2","DeletedAt":null}','[]','D9F70CF9-A479-4141-92E5-44155D063DA2',0,'A867FF78-BA45-41FB-986B-6FFAF8E4D5B5',1); +INSERT INTO Snapshots VALUES('82C4E9D7-883B-46C3-8837-DD5E85065350','Entry','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Entry","Id":"75050583-70d7-4605-a6e6-872b8f36c482","DeletedAt":null,"LexemeForm":{"en":"Orange"},"CitationForm":{"en":"Orange"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}},"MorphType":"Stem","Senses":[],"Note":{},"Components":[],"ComplexForms":[],"ComplexFormTypes":[],"PublishIn":[]},"Id":"75050583-70d7-4605-a6e6-872b8f36c482","DeletedAt":null}','[]','75050583-70D7-4605-A6E6-872B8F36C482',0,'191B4774-F571-4E57-8639-D215106E8ABF',1); +INSERT INTO Snapshots VALUES('8994D7EE-7EF6-4C19-9549-DFD8A40144C2','ExampleSentence','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"ExampleSentence","Id":"9aa9f5a4-faea-45e9-bee7-42929eebf691","Order":1,"Sentence":{"en":{"Spans":[{"Text":"I squeezed the orange for juice","Ws":"en"}]}},"Translation":{},"Reference":null,"SenseId":"241d95a7-6d90-411b-8569-5648cc40b42b","DeletedAt":null},"Id":"9aa9f5a4-faea-45e9-bee7-42929eebf691","DeletedAt":null}','["241D95A7-6D90-411B-8569-5648CC40B42B"]','9AA9F5A4-FAEA-45E9-BEE7-42929EEBF691',0,'191B4774-F571-4E57-8639-D215106E8ABF',1); +INSERT INTO Snapshots VALUES('ABC7FA87-8A65-4C55-8243-719DA4372BDB','Sense','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Sense","Id":"241d95a7-6d90-411b-8569-5648cc40b42b","Order":1,"DeletedAt":null,"EntryId":"75050583-70d7-4605-a6e6-872b8f36c482","Definition":{"en":{"Spans":[{"Text":"round citrus fruit with orange skin and juicy segments inside","Ws":"en"}]}},"Gloss":{"en":"Fruit"},"PartOfSpeech":null,"PartOfSpeechId":null,"SemanticDomains":[],"ExampleSentences":[]},"Id":"241d95a7-6d90-411b-8569-5648cc40b42b","DeletedAt":null}','["75050583-70D7-4605-A6E6-872B8F36C482"]','241D95A7-6D90-411B-8569-5648CC40B42B',0,'191B4774-F571-4E57-8639-D215106E8ABF',1); +INSERT INTO Snapshots VALUES('45CA39E0-64CD-4EE3-B721-476791CBCFED','Sense','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Sense","Id":"1b423127-deb2-468d-8100-e1f1bff20826","Order":1,"DeletedAt":null,"EntryId":"9e84db09-1885-4bbb-9482-4891a46f6f49","Definition":{"en":{"Spans":[{"Text":"small round or oval fruit growing in clusters, used for wine or eating","Ws":"en"}]}},"Gloss":{"en":"Fruit"},"PartOfSpeech":null,"PartOfSpeechId":null,"SemanticDomains":[],"ExampleSentences":[]},"Id":"1b423127-deb2-468d-8100-e1f1bff20826","DeletedAt":null}','["9E84DB09-1885-4BBB-9482-4891A46F6F49"]','1B423127-DEB2-468D-8100-E1F1BFF20826',0,'CD77D4CB-FBB6-4004-9159-F7F28482CA75',1); +INSERT INTO Snapshots VALUES('4B52C42E-4781-45EC-BAB9-A2C55D6D394D','ExampleSentence','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"ExampleSentence","Id":"288d64c3-93f9-48a2-a014-d8773369b4a8","Order":1,"Sentence":{"en":{"Spans":[{"Text":"The vineyard was full of ripe grapes","Ws":"en"}]}},"Translation":{},"Reference":null,"SenseId":"1b423127-deb2-468d-8100-e1f1bff20826","DeletedAt":null},"Id":"288d64c3-93f9-48a2-a014-d8773369b4a8","DeletedAt":null}','["1B423127-DEB2-468D-8100-E1F1BFF20826"]','288D64C3-93F9-48A2-A014-D8773369B4A8',0,'CD77D4CB-FBB6-4004-9159-F7F28482CA75',1); +INSERT INTO Snapshots VALUES('5E1E9631-D246-4A9D-8052-1084B2D07441','Entry','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Entry","Id":"9e84db09-1885-4bbb-9482-4891a46f6f49","DeletedAt":null,"LexemeForm":{"en":"Grape"},"CitationForm":{"en":"Grape"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}},"MorphType":"Stem","Senses":[],"Note":{},"Components":[],"ComplexForms":[],"ComplexFormTypes":[],"PublishIn":[]},"Id":"9e84db09-1885-4bbb-9482-4891a46f6f49","DeletedAt":null}','[]','9E84DB09-1885-4BBB-9482-4891A46F6F49',0,'CD77D4CB-FBB6-4004-9159-F7F28482CA75',1); +INSERT INTO Snapshots VALUES('32B90AC0-9184-487C-866A-8152A9EA17FC','Entry','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Entry","Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null,"LexemeForm":{"en":"Apple","de":"de"},"CitationForm":{"en":"Apple"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}},"MorphType":"Stem","Senses":[],"Note":{},"Components":[],"ComplexForms":[],"ComplexFormTypes":[],"PublishIn":[]},"Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null}','[]','00EDEFEB-173E-45CD-836C-EEA2BA514429',0,'5DBA93AF-7604-410F-B109-EC4961BB608F',0); +INSERT INTO Snapshots VALUES('EBCC8E22-2FF8-4911-A1B3-A40B2C6606AA','Entry','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Entry","Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null,"LexemeForm":{"en":"Apple","de":"de"},"CitationForm":{"en":"Apple","de":"de"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}},"MorphType":"Stem","Senses":[],"Note":{},"Components":[],"ComplexForms":[],"ComplexFormTypes":[],"PublishIn":[]},"Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null}','[]','00EDEFEB-173E-45CD-836C-EEA2BA514429',0,'64308E87-7710-48FE-B4D8-2FA131F2456D',0); +INSERT INTO Snapshots VALUES('3823E325-8715-4DA1-995D-8F39C8E3AF29','ComplexFormComponent','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"ComplexFormComponent","Id":"a4a74738-3914-43ca-8c25-bee34eb517b7","MaybeId":"a4a74738-3914-43ca-8c25-bee34eb517b7","Order":1,"DeletedAt":null,"ComplexFormEntryId":"75050583-70d7-4605-a6e6-872b8f36c482","ComplexFormHeadword":"Orange","ComponentEntryId":"00edefeb-173e-45cd-836c-eea2ba514429","ComponentSenseId":null,"ComponentHeadword":"de"},"Id":"a4a74738-3914-43ca-8c25-bee34eb517b7","DeletedAt":null}','["75050583-70D7-4605-A6E6-872B8F36C482","00EDEFEB-173E-45CD-836C-EEA2BA514429"]','A4A74738-3914-43CA-8C25-BEE34EB517B7',0,'276EF0D5-677C-46AA-AF7E-D518ABBA15B5',1); +INSERT INTO Snapshots VALUES('8CDE8DAC-409C-4276-B018-499CF92409CA','Entry','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Entry","Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null,"LexemeForm":{"en":"Apple","de":"de"},"CitationForm":{"en":"Apple","de":"de"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}},"MorphType":"Stem","Senses":[],"Note":{},"Components":[],"ComplexForms":[],"ComplexFormTypes":[{"Id":"c36f55ed-d1ea-4069-90b3-3f35ff696273","Name":{"en":"Compound"},"DeletedAt":null}],"PublishIn":[]},"Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null}','[]','00EDEFEB-173E-45CD-836C-EEA2BA514429',0,'4E078D12-BA55-42A8-8772-F0DB0891FA71',0); +INSERT INTO Snapshots VALUES('82AFBBFD-3C0C-4465-A467-31242C50EECF','Entry','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Entry","Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null,"LexemeForm":{"en":"Apple","de":"de"},"CitationForm":{"en":"Apple","de":"de"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]},"fr":{"Spans":[{"Text":"fr","Ws":"fr"}]}},"MorphType":"Stem","Senses":[],"Note":{},"Components":[],"ComplexForms":[],"ComplexFormTypes":[{"Id":"c36f55ed-d1ea-4069-90b3-3f35ff696273","Name":{"en":"Compound"},"DeletedAt":null}],"PublishIn":[]},"Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null}','[]','00EDEFEB-173E-45CD-836C-EEA2BA514429',0,'DF118748-6170-40FA-A38F-7ADDF0AA4B4D',0); +INSERT INTO Snapshots VALUES('2FDA581C-6C02-4B64-908B-1E0509F9EDBE','Entry','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Entry","Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null,"LexemeForm":{"en":"Apple","de":"de"},"CitationForm":{"en":"Apple","de":"de"},"LiteralMeaning":{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]},"fr":{"Spans":[{"Text":"fr","Ws":"fr"}]}},"MorphType":"Stem","Senses":[],"Note":{"en":{"Spans":[{"Text":"note","Ws":"en"}]}},"Components":[],"ComplexForms":[],"ComplexFormTypes":[{"Id":"c36f55ed-d1ea-4069-90b3-3f35ff696273","Name":{"en":"Compound"},"DeletedAt":null}],"PublishIn":[]},"Id":"00edefeb-173e-45cd-836c-eea2ba514429","DeletedAt":null}','[]','00EDEFEB-173E-45CD-836C-EEA2BA514429',0,'2F476F0D-BAAE-4428-A534-2447A3E6338C',0); +INSERT INTO Snapshots VALUES('B0D152AF-5FA5-4DF4-81A6-630DD552499F','Sense','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Sense","Id":"b9440091-a9fc-4769-82b1-2ee8d030808d","Order":1,"DeletedAt":null,"EntryId":"00edefeb-173e-45cd-836c-eea2ba514429","Definition":{"en":{"Spans":[{"Text":"fruit with red, yellow, or green skin with a sweet or tart crispy white flesh","Ws":"en"}]}},"Gloss":{"en":"Fruit","fr":"fr"},"PartOfSpeech":null,"PartOfSpeechId":null,"SemanticDomains":[],"ExampleSentences":[]},"Id":"b9440091-a9fc-4769-82b1-2ee8d030808d","DeletedAt":null}','["00EDEFEB-173E-45CD-836C-EEA2BA514429"]','B9440091-A9FC-4769-82B1-2EE8D030808D',0,'6C1E0DC4-E30B-43DC-889C-DC5787FBF282',0); +INSERT INTO Snapshots VALUES('04A68EC6-1B56-4303-A379-35DA06346E0B','Sense','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Sense","Id":"b9440091-a9fc-4769-82b1-2ee8d030808d","Order":1,"DeletedAt":null,"EntryId":"00edefeb-173e-45cd-836c-eea2ba514429","Definition":{"en":{"Spans":[{"Text":"fruit with red, yellow, or green skin with a sweet or tart crispy white flesh","Ws":"en"}]},"fr":{"Spans":[{"Text":"fr","Ws":"fr"}]}},"Gloss":{"en":"Fruit","fr":"fr"},"PartOfSpeech":null,"PartOfSpeechId":null,"SemanticDomains":[],"ExampleSentences":[]},"Id":"b9440091-a9fc-4769-82b1-2ee8d030808d","DeletedAt":null}','["00EDEFEB-173E-45CD-836C-EEA2BA514429"]','B9440091-A9FC-4769-82B1-2EE8D030808D',0,'241F2698-C899-4476-986B-B339FA50FCE8',0); +INSERT INTO Snapshots VALUES('0A5BE7B9-9C5C-4786-ABE3-2310DAE6CCCA','Sense','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Sense","Id":"b9440091-a9fc-4769-82b1-2ee8d030808d","Order":1,"DeletedAt":null,"EntryId":"00edefeb-173e-45cd-836c-eea2ba514429","Definition":{"en":{"Spans":[{"Text":"fruit with red, yellow, or green skin with a sweet or tart crispy white flesh","Ws":"en"}]},"fr":{"Spans":[{"Text":"fr","Ws":"fr"}]}},"Gloss":{"en":"Fruit","fr":"fr"},"PartOfSpeech":null,"PartOfSpeechId":"46e4fe08-ffa0-4c8b-bf98-2c56f38904d9","SemanticDomains":[],"ExampleSentences":[]},"Id":"b9440091-a9fc-4769-82b1-2ee8d030808d","DeletedAt":null}','["00EDEFEB-173E-45CD-836C-EEA2BA514429","46E4FE08-FFA0-4C8B-BF98-2C56F38904D9"]','B9440091-A9FC-4769-82B1-2EE8D030808D',0,'16F056B3-C19A-42D0-A824-BA2640597AC2',0); +INSERT INTO Snapshots VALUES('87F3BBAD-ED5D-4CBE-987C-786746A94C06','Sense','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"Sense","Id":"b9440091-a9fc-4769-82b1-2ee8d030808d","Order":1,"DeletedAt":null,"EntryId":"00edefeb-173e-45cd-836c-eea2ba514429","Definition":{"en":{"Spans":[{"Text":"fruit with red, yellow, or green skin with a sweet or tart crispy white flesh","Ws":"en"}]},"fr":{"Spans":[{"Text":"fr","Ws":"fr"}]}},"Gloss":{"en":"Fruit","fr":"fr"},"PartOfSpeech":null,"PartOfSpeechId":"46e4fe08-ffa0-4c8b-bf98-2c56f38904d9","SemanticDomains":[{"Id":"63403699-07c1-43f3-a47c-069d6e4316e5","Name":{"en":"Universe, Creation"},"Code":"1","DeletedAt":null,"Predefined":true}],"ExampleSentences":[]},"Id":"b9440091-a9fc-4769-82b1-2ee8d030808d","DeletedAt":null}','["00EDEFEB-173E-45CD-836C-EEA2BA514429","46E4FE08-FFA0-4C8B-BF98-2C56F38904D9","63403699-07C1-43F3-A47C-069D6E4316E5"]','B9440091-A9FC-4769-82B1-2EE8D030808D',0,'C2C3E5CC-4E0A-4E3D-A300-D004DACB5A7E',0); +INSERT INTO Snapshots VALUES('94950C41-D5F9-442F-B91F-1807EE743904','ExampleSentence','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"ExampleSentence","Id":"135d7c84-95d8-4707-a400-e1f3619d90fb","Order":1,"Sentence":{"en":{"Spans":[{"Text":"We ate an apple","Ws":"en"}]},"de":{"Spans":[{"Text":"de","Ws":"de"}]}},"Translation":{},"Reference":null,"SenseId":"b9440091-a9fc-4769-82b1-2ee8d030808d","DeletedAt":null},"Id":"135d7c84-95d8-4707-a400-e1f3619d90fb","DeletedAt":null}','["B9440091-A9FC-4769-82B1-2EE8D030808D"]','135D7C84-95D8-4707-A400-E1F3619D90FB',0,'5AAC4FF6-0DD8-4266-875C-00F1800EFAD4',0); +INSERT INTO Snapshots VALUES('BEB54E61-57F8-4227-9D2E-4AD56982CB70','ExampleSentence','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"ExampleSentence","Id":"135d7c84-95d8-4707-a400-e1f3619d90fb","Order":1,"Sentence":{"en":{"Spans":[{"Text":"We ate an apple","Ws":"en"}]},"de":{"Spans":[{"Text":"de","Ws":"de"}]}},"Translation":{"en":{"Spans":[{"Text":"en","Ws":"en"}]}},"Reference":null,"SenseId":"b9440091-a9fc-4769-82b1-2ee8d030808d","DeletedAt":null},"Id":"135d7c84-95d8-4707-a400-e1f3619d90fb","DeletedAt":null}','["B9440091-A9FC-4769-82B1-2EE8D030808D"]','135D7C84-95D8-4707-A400-E1F3619D90FB',0,'5B954C9F-C86F-463A-BAA2-15EBB7A6074B',0); +INSERT INTO Snapshots VALUES('7D383194-90E8-45DE-839B-E53FBC9BCFB7','ExampleSentence','{"$type":"MiniLcmCrdtAdapter","Obj":{"$type":"ExampleSentence","Id":"135d7c84-95d8-4707-a400-e1f3619d90fb","Order":1,"Sentence":{"en":{"Spans":[{"Text":"We ate an apple","Ws":"en"}]},"de":{"Spans":[{"Text":"de","Ws":"de"}]}},"Translation":{"en":{"Spans":[{"Text":"en","Ws":"en"}]}},"Reference":{"Spans":[{"Text":"ref","Ws":"en"}]},"SenseId":"b9440091-a9fc-4769-82b1-2ee8d030808d","DeletedAt":null},"Id":"135d7c84-95d8-4707-a400-e1f3619d90fb","DeletedAt":null}','["B9440091-A9FC-4769-82B1-2EE8D030808D"]','135D7C84-95D8-4707-A400-E1F3619D90FB',0,'BAF9DA29-2187-4D2E-9C67-92C295C3FBD7',0); +CREATE TABLE IF NOT EXISTS "ComplexFormType" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_ComplexFormType" PRIMARY KEY, + + "Name" jsonb NOT NULL, + + "DeletedAt" TEXT NULL, + + "SnapshotId" TEXT NULL, + + CONSTRAINT "FK_ComplexFormType_Snapshots_SnapshotId" FOREIGN KEY ("SnapshotId") REFERENCES "Snapshots" ("Id") ON DELETE SET NULL + +); +INSERT INTO ComplexFormType VALUES('C36F55ED-D1EA-4069-90B3-3F35FF696273','{"en":"Compound"}',NULL,'D9672868-5457-4132-ACB1-40A736CB6286'); +INSERT INTO ComplexFormType VALUES('EEB78FCE-6009-4932-AAA6-85FAEB180C69','{"en":"Unspecified"}',NULL,'83CA281B-4698-4DDD-8C5E-45FE1A9B5128'); +CREATE TABLE IF NOT EXISTS "Entry" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_Entry" PRIMARY KEY, + + "DeletedAt" TEXT NULL, + + "LexemeForm" jsonb NOT NULL, + + "CitationForm" jsonb NOT NULL, + + "LiteralMeaning" jsonb NOT NULL, + + "Note" jsonb NOT NULL, + + "ComplexFormTypes" jsonb NOT NULL, + + "SnapshotId" TEXT NULL, "PublishIn" jsonb NOT NULL DEFAULT '', "MorphType" INTEGER NOT NULL DEFAULT 0, + + CONSTRAINT "FK_Entry_Snapshots_SnapshotId" FOREIGN KEY ("SnapshotId") REFERENCES "Snapshots" ("Id") ON DELETE SET NULL + +); +INSERT INTO Entry VALUES('00EDEFEB-173E-45CD-836C-EEA2BA514429',NULL,'{"en":"Apple","de":"de"}','{"en":"Apple","de":"de"}','{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]},"fr":{"Spans":[{"Text":"fr","Ws":"fr"}]}}','{"en":{"Spans":[{"Text":"note","Ws":"en"}]}}','[{"Id":"c36f55ed-d1ea-4069-90b3-3f35ff696273","Name":{"en":"Compound"},"DeletedAt":null}]','2FDA581C-6C02-4B64-908B-1E0509F9EDBE','[]',12); +INSERT INTO Entry VALUES('D9F70CF9-A479-4141-92E5-44155D063DA2',NULL,'{"en":"Banana"}','{"en":"Banana"}','{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}}','{}','[]','ECF9A05C-0E55-4342-B674-16FA1B347FED','[]',12); +INSERT INTO Entry VALUES('75050583-70D7-4605-A6E6-872B8F36C482',NULL,'{"en":"Orange"}','{"en":"Orange"}','{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}}','{}','[]','82C4E9D7-883B-46C3-8837-DD5E85065350','[]',12); +INSERT INTO Entry VALUES('9E84DB09-1885-4BBB-9482-4891A46F6F49',NULL,'{"en":"Grape"}','{"en":"Grape"}','{"en":{"Spans":[{"Text":"Fruit","Ws":"en"}]}}','{}','[]','5E1E9631-D246-4A9D-8052-1084B2D07441','[]',12); +CREATE TABLE IF NOT EXISTS "PartOfSpeech" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_PartOfSpeech" PRIMARY KEY, + + "Name" jsonb NOT NULL, + + "DeletedAt" TEXT NULL, + + "Predefined" INTEGER NOT NULL, + + "SnapshotId" TEXT NULL, + + CONSTRAINT "FK_PartOfSpeech_Snapshots_SnapshotId" FOREIGN KEY ("SnapshotId") REFERENCES "Snapshots" ("Id") ON DELETE SET NULL + +); +INSERT INTO PartOfSpeech VALUES('46E4FE08-FFA0-4C8B-BF98-2C56F38904D9','{"en":"Adverb"}',NULL,1,'659A8536-28DA-4671-A63D-36EE158619A1'); +CREATE TABLE IF NOT EXISTS "SemanticDomain" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_SemanticDomain" PRIMARY KEY, + + "Name" jsonb NOT NULL, + + "Code" TEXT NOT NULL, + + "DeletedAt" TEXT NULL, + + "Predefined" INTEGER NOT NULL, + + "SnapshotId" TEXT NULL, + + CONSTRAINT "FK_SemanticDomain_Snapshots_SnapshotId" FOREIGN KEY ("SnapshotId") REFERENCES "Snapshots" ("Id") ON DELETE SET NULL + +); +INSERT INTO SemanticDomain VALUES('1BD42665-0610-4442-8D8D-7C666FEE3A6D','{"en":"Person"}','2',NULL,1,'9689DD1F-0084-464D-89F2-52A05361DAEC'); +INSERT INTO SemanticDomain VALUES('46E4FE08-FFA0-4C8B-BF88-2C56F38904D4','{"en":"Body"}','2.1',NULL,0,'EAB8B267-9E9B-48A3-A593-C890771B743D'); +INSERT INTO SemanticDomain VALUES('46E4FE08-FFA0-4C8B-BF88-2C56F38904D5','{"en":"Head"}','2.1.1',NULL,0,'D8F964B5-312D-4D2E-9D47-3A00C42B7B52'); +INSERT INTO SemanticDomain VALUES('46E4FE08-FFA0-4C8B-BF88-2C56F38904D6','{"en":"Eye"}','2.1.1.1',NULL,0,'B4940DD3-2AD6-4391-98BF-8C26CD6D9BA9'); +INSERT INTO SemanticDomain VALUES('63403699-07C1-43F3-A47C-069D6E4316E5','{"en":"Universe, Creation"}','1',NULL,1,'14ACC90E-F0B8-4C54-A73A-D72E08D08319'); +INSERT INTO SemanticDomain VALUES('999581C4-1611-4ACB-AE1B-5E6C1DFE6F0C','{"en":"Sky"}','1.1',NULL,1,'6984026F-F359-464B-8C0A-38911D6B432B'); +INSERT INTO SemanticDomain VALUES('DC1A2C6F-1B32-4631-8823-36DACC8CB7BB','{"en":"World"}','1.2',NULL,1,'7EDD8E1F-47FD-48BC-9B59-4CEC9C1AD2A4'); +CREATE TABLE IF NOT EXISTS "WritingSystem" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_WritingSystem" PRIMARY KEY, + + "WsId" TEXT NOT NULL, + + "Name" TEXT NOT NULL, + + "Abbreviation" TEXT NOT NULL, + + "Font" TEXT NOT NULL, + + "DeletedAt" TEXT NULL, + + "Type" INTEGER NOT NULL, + + "Exemplars" jsonb NOT NULL, + + "Order" REAL NOT NULL, + + "SnapshotId" TEXT NULL, + + CONSTRAINT "FK_WritingSystem_Snapshots_SnapshotId" FOREIGN KEY ("SnapshotId") REFERENCES "Snapshots" ("Id") ON DELETE SET NULL + +); +INSERT INTO WritingSystem VALUES('33C8A15A-1BD4-429E-A400-3304A3E1D997','de','German','de','Arial',NULL,0,'["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]',1.0,'F001C69D-04B4-4B0F-B049-A56E94041CAF'); +INSERT INTO WritingSystem VALUES('9FD79197-95EF-46D7-81A8-BB21AA2579C0','en','English','en','Arial',NULL,0,'["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]',2.0,'1A9E7520-9D95-476B-BA35-A4962AD9A0B6'); +INSERT INTO WritingSystem VALUES('485BD12F-976E-40DF-B66C-16D70EE916FA','en-Zxxx-x-audio','English (A)','Eng 🔊','Arial',NULL,0,'["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]',3.0,'B03E10DE-3708-4D19-8A9E-DAC133FA1A74'); +INSERT INTO WritingSystem VALUES('0B76099F-A102-4D24-8FD7-2C44B6EB3623','en','English','en','Arial',NULL,1,'["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]',1.0,'0F01F15D-938D-495A-B3CB-948CAEDE7540'); +INSERT INTO WritingSystem VALUES('D4078989-6C7B-4CC5-8501-CE968405484A','fr','French','fr','Arial',NULL,1,'["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]',2.0,'A2380046-BC58-4B62-9815-86E6E4D68304'); +INSERT INTO WritingSystem VALUES('ABEAEB03-1A56-49D5-8CC8-A3AFE5FFE89E','en-Zxxx-x-audio','English (A)','Eng 🔊','Arial',NULL,1,'["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]',3.0,'2923D72F-238A-44EE-AF1D-C5613D7CBE54'); +CREATE TABLE IF NOT EXISTS "ComplexFormComponents" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_ComplexFormComponents" PRIMARY KEY, + + "DeletedAt" TEXT NULL, + + "ComplexFormEntryId" TEXT NOT NULL, + + "ComplexFormHeadword" TEXT NULL, + + "ComponentEntryId" TEXT NOT NULL, + + "ComponentSenseId" TEXT NULL, + + "ComponentHeadword" TEXT NULL, + + "SnapshotId" TEXT NULL, "Order" REAL NOT NULL DEFAULT 0.0, + + CONSTRAINT "FK_ComplexFormComponents_Entry_ComplexFormEntryId" FOREIGN KEY ("ComplexFormEntryId") REFERENCES "Entry" ("Id") ON DELETE CASCADE, + + CONSTRAINT "FK_ComplexFormComponents_Entry_ComponentEntryId" FOREIGN KEY ("ComponentEntryId") REFERENCES "Entry" ("Id") ON DELETE CASCADE, + + CONSTRAINT "FK_ComplexFormComponents_Sense_ComponentSenseId" FOREIGN KEY ("ComponentSenseId") REFERENCES "Sense" ("Id") ON DELETE CASCADE, + + CONSTRAINT "FK_ComplexFormComponents_Snapshots_SnapshotId" FOREIGN KEY ("SnapshotId") REFERENCES "Snapshots" ("Id") ON DELETE SET NULL + +); +INSERT INTO ComplexFormComponents VALUES('A4A74738-3914-43CA-8C25-BEE34EB517B7',NULL,'75050583-70D7-4605-A6E6-872B8F36C482','Orange','00EDEFEB-173E-45CD-836C-EEA2BA514429',NULL,'de','3823E325-8715-4DA1-995D-8F39C8E3AF29',1.0); +CREATE TABLE IF NOT EXISTS "Publication" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_Publication" PRIMARY KEY, + + "DeletedAt" TEXT NULL, + + "Name" jsonb NOT NULL, + + "SnapshotId" TEXT NULL, + + CONSTRAINT "FK_Publication_Snapshots_SnapshotId" FOREIGN KEY ("SnapshotId") REFERENCES "Snapshots" ("Id") ON DELETE SET NULL + +); +CREATE TABLE IF NOT EXISTS "ProjectData" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_ProjectData" PRIMARY KEY, + + "ClientId" TEXT NOT NULL, + + "Code" TEXT NOT NULL, + + "FwProjectId" TEXT NULL, + + "LastUserId" TEXT NULL, + + "LastUserName" TEXT NULL, + + "Name" TEXT NOT NULL, + + "OriginDomain" TEXT NULL + +, "Role" TEXT NOT NULL DEFAULT 'Editor'); +INSERT INTO ProjectData VALUES('B467051E-A492-4E5B-9C17-858D7797292C','ED59326F-B0AA-406F-857A-50FA2B1DC417','Example-Project-dev-2025-09-11-04-40-41-412',NULL,NULL,NULL,'Example-Project-dev-2025-09-11-04-40-41-412',NULL,'Editor'); +CREATE TABLE IF NOT EXISTS "ExampleSentence" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_ExampleSentence" PRIMARY KEY, + + "DeletedAt" TEXT NULL, + + "Order" REAL NOT NULL, + + "Reference" jsonb NULL, + + "SenseId" TEXT NOT NULL, + + "Sentence" jsonb NOT NULL, + + "SnapshotId" TEXT NULL, + + "Translation" jsonb NOT NULL, + + CONSTRAINT "FK_ExampleSentence_Sense_SenseId" FOREIGN KEY ("SenseId") REFERENCES "Sense" ("Id") ON DELETE CASCADE, + + CONSTRAINT "FK_ExampleSentence_Snapshots_SnapshotId" FOREIGN KEY ("SnapshotId") REFERENCES "Snapshots" ("Id") ON DELETE SET NULL + +); +INSERT INTO ExampleSentence VALUES('135D7C84-95D8-4707-A400-E1F3619D90FB',NULL,1.0,'{"Spans":[{"Text":"ref","Ws":"en"}]}','B9440091-A9FC-4769-82B1-2EE8D030808D','{"en":{"Spans":[{"Text":"We ate an apple","Ws":"en"}]},"de":{"Spans":[{"Text":"de","Ws":"de"}]}}','7D383194-90E8-45DE-839B-E53FBC9BCFB7','{"en":{"Spans":[{"Text":"en","Ws":"en"}]}}'); +INSERT INTO ExampleSentence VALUES('D9D515E8-D695-44C3-9766-AFBEAB8C470F',NULL,1.0,NULL,'C77D7553-209D-45BE-A83E-D07E69808873','{"en":{"Spans":[{"Text":"The monkey peeled a banana","Ws":"en"}]}}','2F77033C-F317-4D01-A486-2F976CE7850E','{}'); +INSERT INTO ExampleSentence VALUES('9AA9F5A4-FAEA-45E9-BEE7-42929EEBF691',NULL,1.0,NULL,'241D95A7-6D90-411B-8569-5648CC40B42B','{"en":{"Spans":[{"Text":"I squeezed the orange for juice","Ws":"en"}]}}','8994D7EE-7EF6-4C19-9549-DFD8A40144C2','{}'); +INSERT INTO ExampleSentence VALUES('288D64C3-93F9-48A2-A014-D8773369B4A8',NULL,1.0,NULL,'1B423127-DEB2-468D-8100-E1F1BFF20826','{"en":{"Spans":[{"Text":"The vineyard was full of ripe grapes","Ws":"en"}]}}','4B52C42E-4781-45EC-BAB9-A2C55D6D394D','{}'); +PRAGMA writable_schema=ON; +INSERT INTO sqlite_schema(type,name,tbl_name,rootpage,sql)VALUES('table','EntrySearchRecord','EntrySearchRecord',0,'CREATE VIRTUAL TABLE EntrySearchRecord USING fts5(Headword, LexemeForm, CitationForm, Definition, Gloss, Id UNINDEXED, tokenize="trigram remove_diacritics 1")'); +CREATE TABLE IF NOT EXISTS 'EntrySearchRecord_data'(id INTEGER PRIMARY KEY, block BLOB); +INSERT INTO EntrySearchRecord_data VALUES(1,X'0400111182020f00'); +INSERT INTO EntrySearchRecord_data VALUES(10,X'00000001010d0d000d0101010201010301010401010501010601010701010801010901010a01010b01010c01010d0101'); +INSERT INTO EntrySearchRecord_data VALUES(137438953473,X'000002ad0430206120010601032c02026372010601033c0202666c010601034902026772010601031c02026f7201080103191d02027265010601030c0202736b0106010322030177010601032e02027461010601033702027768010601034303016901080103072202027965010601031101032c206f010601031803017901060103100103612073010601032d02027070010c0101020102020202727401060103390103637269010601033d0103642c20010601030f010365206601060103480202642c010601030e0202656e010601031f030174010601033102026c6c010601031302026e20010601032002027368010601034c0202742001060103320103666c65010601034a02027275010c0103020104020103677265010601031d0103682061010601032b030172010601030b0202697401060103450103696e20010601032502027370010601033f020274200106010305030165010601034603016801080103092201036b696e010601032401036c6573010601034b02026c6f010601031402026f77010601031501036e20730106010321030177010601032601036f7220010801031a1d0202772c01060103160103706c65010c0101040102040202706c010c0101030102030202792001060103410103722067010601031b030174010601033602026564010601030d030165010601031e02026973010601033e02027420010601033a02027569010c0103030104030103736b69010601032302027079010601034002027765010601032f0103742063010601033b03016f0106010333030177010601030602026172010601033802026520010601034702026820010801030a220103756974010c0103040104040103772c20010601031702026565010601033002026869010601034402026974010801030822010379207701060103420202656c0106010312040a0909090a090908090909090a080a0c090a0a0a090908090909090a0c0a0a08090a090908090a0a09090a080b090d0c090a08090809090c0a09090a080809090a0d0a09090a0a'); +INSERT INTO EntrySearchRecord_data VALUES(274877906945,X'0000021c043020616e02060103240202637502060103060202666c0206010333030172020601030d0202736b020601031f03016f0206010328030177020601032d0202776902060103130202796502060103180103616e61021001010304010203040301640206010325010362616e020c010102010202010363757202060103070103642066020601030c03017302060103270103656420020601030b02026574020601033002026c6c020601031a0202736802060103360202742002060103310103666c65020601033402027275020c01030e01040202027420020601032b01036720630206010305010368207902060103170103696e200206010322020274200206010311030168020601031501036b696e020601032101036c6573020601033502026c6f020601031b02026f6e0206010302030177020601031c01036e206102060103230202616e020c01010401020402026420020601032602026720020601030401036f6674020601032a02026e67020601030302027720020601031d0103727569020c01030f0104030202766502060103090103736b69020601032002026f66020601032902027765020601032e01037420660206010332030173020601032c03017702060103120202682002060103160103756974020c0103100104040202727602060103080103766564020601030a0103772073020601031e02026565020601032f020269740206010314010379656c0206010319040a09090809080809090f080d0a0a080a090909090a0c090a0a0a09080a0a0909080a0c09090a09090d090a09090a0808090d090a0a0909'); +INSERT INTO EntrySearchRecord_data VALUES(412316860417,X'0000023b043020616e030601032502026369030601030702026672030601030e0202696e030601033802026a75030601032902026f72030601031902027365030601032f03016b03060103200202776903060103140103616e640306010326030167031201010401020401031c0103636974030601030802027920030601032d0103642063030601030603016a03060103280103652073030601031f0202676d030601033102026e7403060103340103667275030c01030f0104020103676520030601031e02026d650306010332010368206f03060103180103696379030601032c02026465030601033c02026e20030601032303017303060103390202742003060103120301680306010316030172030601030901036a7569030601032a01036b696e030601032201036d656e030601033301036e206103060103240202642003080103052402026765031201010501020501031d02027369030601033a02027473030601033501036f7261031201010201020201031a0202756e0306010303010372616e031201010301020301031b02026f75030601030202027569030c010310010403030173030601030b0103732066030601030d030169030601033702026567030601033002026964030601033b02026b6903060103210103742077030601031302026820030601031702027275030601030a0202732003060103360103756963030601032b030174030c01031101040402026e64030601030402027320030601030c010377697403060103150103792073030601032e040a09090909090908090a0e0a090a080a09090d0a090a0a0909080908080a0a0a0a0a0f0909100910090c080a080909090a0909090a0b09090a'); +INSERT INTO EntrySearchRecord_data VALUES(549755813889,X'00000274043020636c04060103260202656104060103410202666f0406010335030172040601031502026772040601031b0202696e040601032302026f72040801030d3303017604060103100202726f040601030702027573040601033002027769040601033901032c2075040601032f0103616c20040601031303016c040601030402027065040c0101040102040202746904060103430103636c7504060103270103642066040601033403016f040601030c010365206f040601033d02026174040601034202026420040601033302027273040601032c0103666f72040601033602027275040c0103160104020103672069040601032202027261040c01010201020203016f040601031c0103696e200406010324030165040601033b03016704080103202702027420040601031901036c20660406010314030172040601030602026c20040601030502027573040601032801036d616c040601030301036e2063040601032502026420040601030b02026520040601033c02026720040601032101036f7220040a01030e2b0a0202756e040601030902027661040601031102027769040601031e0103722065040601034003016f040601030f030177040601033802026170040c01010301020302026f750406010308030177040601031d0202732c040601032d02027569040c0103170104030103732c20040601032e02026564040601033202026d61040601030202027465040601032a0103742067040601031a02026572040601032b0202696e04060103440103756974040c01031801040402026e64040601030a0202736504060103310301740406010329010376616c0406010312010377696e040801031f1d040a09090809090a080909090a0a080c090a0a080a0909090a0c0a0c080a0809090a0809090a0a0909090c0909090a08080c0908090c0a0909090a09090d0909080a'); +INSERT INTO EntrySearchRecord_data VALUES(687194767361,X'000002c60430206120010701032c030170010601010402026372010701033c0202666c010701034902026772010701031c02026f7201090103191d02027265010701030c0202736b0107010322030177010701032e02027461010701033702027768010701034303016901090103072202027965010701031101032c206f010701031803017901070103100103612073010701032d02027070010d0101050102020202727401070103390103637269010701033d0103642c20010701030f0202652001060101020103652061010601010303016601070103480202642c010701030e0202656e010701031f030174010701033102026c6c010701031302026e20010701032002027368010701034c0202742001070103320103666c65010701034a02027275010d0103020104020103677265010701031d0103682061010701032b030172010701030b0202697401070103450103696e20010701032502027370010701033f020274200107010305030165010701034603016801090103092201036b696e010701032401036c6573010701034b02026c6f010701031402026f77010701031501036e20730107010321030177010701032601036f7220010901031a1d0202772c01070103160103706c65010d0101070102040202706c010d0101060102030202792001070103410103722067010701031b030174010701033602026564010701030d030165010701031e02026973010701033e02027420010701033a02027569010d0103030104030103736b69010701032302027079010701034002027765010701032f0103742063010701033b03016f0107010333030177010701030602026172010701033802026520010701034702026820010901030a220103756974010d0103040104040103772c20010701031702026565010701033002026869010701034402026974010901030822010379207701070103420202656c0107010312040a080909090a090908090909090a080a0c090a0a090a08090908090909090a0c0a0a08090a090908090a0a09090a080b090d0c090a08090809090c0a09090a080809090a0d0a09090a0a'); +INSERT INTO EntrySearchRecord_data VALUES(824633720833,X'000002cf0430206120010701032c030170010d01010401020402026372010701033c0202666c010701034902026772010701031c02026f7201090103191d02027265010701030c0202736b0107010322030177010701032e02027461010701033702027768010701034303016901090103072202027965010701031101032c206f010701031803017901070103100103612073010701032d02027070010d0101050102050202727401070103390103637269010701033d0103642c20010701030f02026520010d0101020102020103652061010d01010301020303016601070103480202642c010701030e0202656e010701031f030174010701033102026c6c010701031302026e20010701032002027368010701034c0202742001070103320103666c65010701034a02027275010d0103020104020103677265010701031d0103682061010701032b030172010701030b0202697401070103450103696e20010701032502027370010701033f020274200107010305030165010701034603016801090103092201036b696e010701032401036c6573010701034b02026c6f010701031402026f77010701031501036e20730107010321030177010701032601036f7220010901031a1d0202772c01070103160103706c65010d0101070102070202706c010d0101060102060202792001070103410103722067010701031b030174010701033602026564010701030d030165010701031e02026973010701033e02027420010701033a02027569010d0103030104030103736b69010701032302027079010701034002027765010701032f0103742063010701033b03016f0107010333030177010701030602026172010701033802026520010701034702026820010901030a220103756974010d0103040104040103772c20010701031702026565010701033002026869010701034402026974010901030822010379207701070103420202656c0107010312040a0b0909090a090908090909090a080a0c090a0a0c0d08090908090909090a0c0a0a08090a090908090a0a09090a080b090d0c090a08090809090c0a09090a080809090a0d0a09090a0a'); +INSERT INTO EntrySearchRecord_data VALUES(962072674305,X'000002cf0430206120010701032c030170010d01010401020402026372010701033c0202666c010701034902026772010701031c02026f7201090103191d02027265010701030c0202736b0107010322030177010701032e02027461010701033702027768010701034303016901090103072202027965010701031101032c206f010701031803017901070103100103612073010701032d02027070010d0101050102050202727401070103390103637269010701033d0103642c20010701030f02026520010d0101020102020103652061010d01010301020303016601070103480202642c010701030e0202656e010701031f030174010701033102026c6c010701031302026e20010701032002027368010701034c0202742001070103320103666c65010701034a02027275010d0103020104020103677265010701031d0103682061010701032b030172010701030b0202697401070103450103696e20010701032502027370010701033f020274200107010305030165010701034603016801090103092201036b696e010701032401036c6573010701034b02026c6f010701031402026f77010701031501036e20730107010321030177010701032601036f7220010901031a1d0202772c01070103160103706c65010d0101070102070202706c010d0101060102060202792001070103410103722067010701031b030174010701033602026564010701030d030165010701031e02026973010701033e02027420010701033a02027569010d0103030104030103736b69010701032302027079010701034002027765010701032f0103742063010701033b03016f0107010333030177010701030602026172010701033802026520010701034702026820010901030a220103756974010d0103040104040103772c20010701031702026565010701033002026869010701034402026974010901030822010379207701070103420202656c0107010312040a0b0909090a090908090909090a080a0c090a0a0c0d08090908090909090a0c0a0a08090a090908090a0a09090a080b090d0c090a08090809090c0a09090a080809090a0d0a09090a0a'); +INSERT INTO EntrySearchRecord_data VALUES(1099511627777,X'000002cf0430206120010701032c030170010d01010401020402026372010701033c0202666c010701034902026772010701031c02026f7201090103191d02027265010701030c0202736b0107010322030177010701032e02027461010701033702027768010701034303016901090103072202027965010701031101032c206f010701031803017901070103100103612073010701032d02027070010d0101050102050202727401070103390103637269010701033d0103642c20010701030f02026520010d0101020102020103652061010d01010301020303016601070103480202642c010701030e0202656e010701031f030174010701033102026c6c010701031302026e20010701032002027368010701034c0202742001070103320103666c65010701034a02027275010d0103020104020103677265010701031d0103682061010701032b030172010701030b0202697401070103450103696e20010701032502027370010701033f020274200107010305030165010701034603016801090103092201036b696e010701032401036c6573010701034b02026c6f010701031402026f77010701031501036e20730107010321030177010701032601036f7220010901031a1d0202772c01070103160103706c65010d0101070102070202706c010d0101060102060202792001070103410103722067010701031b030174010701033602026564010701030d030165010701031e02026973010701033e02027420010701033a02027569010d0103030104030103736b69010701032302027079010701034002027765010701032f0103742063010701033b03016f0107010333030177010701030602026172010701033802026520010701034702026820010901030a220103756974010d0103040104040103772c20010701031702026565010701033002026869010701034402026974010901030822010379207701070103420202656c0107010312040a0b0909090a090908090909090a080a0c090a0a0c0d08090908090909090a0c0a0a08090a090908090a0a09090a080b090d0c090a08090809090c0a09090a080809090a0d0a09090a0a'); +INSERT INTO EntrySearchRecord_data VALUES(1236950581249,X'000002cf0430206120010701032c030170010d01010401020402026372010701033c0202666c010701034902026772010701031c02026f7201090103191d02027265010701030c0202736b0107010322030177010701032e02027461010701033702027768010701034303016901090103072202027965010701031101032c206f010701031803017901070103100103612073010701032d02027070010d0101050102050202727401070103390103637269010701033d0103642c20010701030f02026520010d0101020102020103652061010d01010301020303016601070103480202642c010701030e0202656e010701031f030174010701033102026c6c010701031302026e20010701032002027368010701034c0202742001070103320103666c65010701034a02027275010d0103020104020103677265010701031d0103682061010701032b030172010701030b0202697401070103450103696e20010701032502027370010701033f020274200107010305030165010701034603016801090103092201036b696e010701032401036c6573010701034b02026c6f010701031402026f77010701031501036e20730107010321030177010701032601036f7220010901031a1d0202772c01070103160103706c65010d0101070102070202706c010d0101060102060202792001070103410103722067010701031b030174010701033602026564010701030d030165010701031e02026973010701033e02027420010701033a02027569010d0103030104030103736b69010701032302027079010701034002027765010701032f0103742063010701033b03016f0107010333030177010701030602026172010701033802026520010701034702026820010901030a220103756974010d0103040104040103772c20010701031702026565010701033002026869010701034402026974010901030822010379207701070103420202656c0107010312040a0b0909090a090908090909090a080a0c090a0a0c0d08090908090909090a0c0a0a08090a090908090a0a09090a080b090d0c090a08090809090c0a09090a080809090a0d0a09090a0a'); +INSERT INTO EntrySearchRecord_data VALUES(1374389534721,X'000002e20430206120010701032c030170010d01010401020402026372010701033c0202666c0107010349030172010601040702026772010701031c02026f7201090103191d02027265010701030c0202736b0107010322030177010701032e02027461010701033702027768010701034303016901090103072202027965010701031101032c206f010701031803017901070103100103612073010701032d02027070010d0101050102050202727401070103390103637269010701033d0103642c20010701030f02026520010d0101020102020103652061010d01010301020303016601070103480202642c010701030e0202656e010701031f030174010701033102026c6c010701031302026e20010701032002027368010701034c0202742001070103320103666c65010701034a02027275010d0103020104020103677265010701031d0103682061010701032b030172010701030b0202697401070103450103696e20010701032502027370010701033f02027420010d010305010405030165010701034603016801090103092201036b696e010701032401036c6573010701034b02026c6f010701031402026f77010701031501036e20730107010321030177010701032601036f7220010901031a1d0202772c01070103160103706c65010d0101070102070202706c010d0101060102060202792001070103410103722067010701031b030174010701033602026564010701030d030165010701031e02026973010701033e02027420010701033a02027569010d0103030104030103736b69010701032302027079010701034002027765010701032f0103742063010701033b030166010601040603016f0107010333030177010701030602026172010701033802026520010701034702026820010901030a220103756974010d0103040104040103772c20010701031702026565010701033002026869010701034402026974010901030822010379207701070103420202656c0107010312040a0b090908090a090908090909090a080a0c090a0a0c0d08090908090909090a0c0a0a08090a090c08090a0a09090a080b090d0c090a08090809090c0a09090a08080809090a0d0a09090a0a'); +INSERT INTO EntrySearchRecord_data VALUES(1511828488193,X'000002f60430206120010701032c030170010d01010401020402026372010701033c0202666c0107010349030172010d01034f01040702026772010701031c02026f7201090103191d02027265010701030c0202736b0107010322030177010701032e02027461010701033702027768010701034303016901090103072202027965010701031101032c206f010701031803017901070103100103612073010701032d02027070010d0101050102050202727401070103390103637269010701033d0103642c20010701030f02026520010d0101020102020103652061010d01010301020303016601070103480202642c010701030e0202656e010701031f030174010701033102026c6c010701031302026e20010701032002027368010701034c0202742001070103320103666c65010701034a02027275010d0103020104020103677265010701031d0103682061010701032b030166010601034e030172010701030b0202697401070103450103696e20010701032502027370010701033f02027420010d010305010405030165010701034603016801090103092201036b696e010701032401036c6573010701034b02026c6f010701031402026f77010701031501036e20730107010321030177010701032601036f7220010901031a1d0202772c01070103160103706c65010d0101070102070202706c010d0101060102060202792001070103410103722067010701031b030174010701033602026564010701030d030165010701031e02026973010701033e02027420010701033a02027569010d0103030104030103736820010601034d02026b69010701032302027079010701034002027765010701032f0103742063010701033b030166010701040603016f0107010333030177010701030602026172010701033802026520010701034702026820010901030a220103756974010d0103040104040103772c20010701031702026565010701033002026869010701034402026974010901030822010379207701070103420202656c0107010312040a0b09090b090a090908090909090a080a0c090a0a0c0d08090908090909090a0c0a0a0808090a090c08090a0a09090a080b090d0c090a08090809090c0a0909090a08080809090a0d0a09090a0a'); +INSERT INTO EntrySearchRecord_data VALUES(1649267441665,X'000002f60430206120010701032c030170010d01010401020402026372010701033c0202666c0107010349030172010d01034f01040702026772010701031c02026f7201090103191d02027265010701030c0202736b0107010322030177010701032e02027461010701033702027768010701034303016901090103072202027965010701031101032c206f010701031803017901070103100103612073010701032d02027070010d0101050102050202727401070103390103637269010701033d0103642c20010701030f02026520010d0101020102020103652061010d01010301020303016601070103480202642c010701030e0202656e010701031f030174010701033102026c6c010701031302026e20010701032002027368010701034c0202742001070103320103666c65010701034a02027275010d0103020104020103677265010701031d0103682061010701032b030166010701034e030172010701030b0202697401070103450103696e20010701032502027370010701033f02027420010d010305010405030165010701034603016801090103092201036b696e010701032401036c6573010701034b02026c6f010701031402026f77010701031501036e20730107010321030177010701032601036f7220010901031a1d0202772c01070103160103706c65010d0101070102070202706c010d0101060102060202792001070103410103722067010701031b030174010701033602026564010701030d030165010701031e02026973010701033e02027420010701033a02027569010d0103030104030103736820010701034d02026b69010701032302027079010701034002027765010701032f0103742063010701033b030166010701040603016f0107010333030177010701030602026172010701033802026520010701034702026820010901030a220103756974010d0103040104040103772c20010701031702026565010701033002026869010701034402026974010901030822010379207701070103420202656c0107010312040a0b09090b090a090908090909090a080a0c090a0a0c0d08090908090909090a0c0a0a0808090a090c08090a0a09090a080b090d0c090a08090809090c0a0909090a08080809090a0d0a09090a0a'); +INSERT INTO EntrySearchRecord_data VALUES(1786706395137,X'000002f60430206120010701032c030170010d01010401020402026372010701033c0202666c0107010349030172010d01034f01040702026772010701031c02026f7201090103191d02027265010701030c0202736b0107010322030177010701032e02027461010701033702027768010701034303016901090103072202027965010701031101032c206f010701031803017901070103100103612073010701032d02027070010d0101050102050202727401070103390103637269010701033d0103642c20010701030f02026520010d0101020102020103652061010d01010301020303016601070103480202642c010701030e0202656e010701031f030174010701033102026c6c010701031302026e20010701032002027368010701034c0202742001070103320103666c65010701034a02027275010d0103020104020103677265010701031d0103682061010701032b030166010701034e030172010701030b0202697401070103450103696e20010701032502027370010701033f02027420010d010305010405030165010701034603016801090103092201036b696e010701032401036c6573010701034b02026c6f010701031402026f77010701031501036e20730107010321030177010701032601036f7220010901031a1d0202772c01070103160103706c65010d0101070102070202706c010d0101060102060202792001070103410103722067010701031b030174010701033602026564010701030d030165010701031e02026973010701033e02027420010701033a02027569010d0103030104030103736820010701034d02026b69010701032302027079010701034002027765010701032f0103742063010701033b030166010701040603016f0107010333030177010701030602026172010701033802026520010701034702026820010901030a220103756974010d0103040104040103772c20010701031702026565010701033002026869010701034402026974010901030822010379207701070103420202656c0107010312040a0b09090b090a090908090909090a080a0c090a0a0c0d08090908090909090a0c0a0a0808090a090c08090a0a09090a080b090d0c090a08090809090c0a0909090a08080809090a0d0a09090a0a'); +CREATE TABLE IF NOT EXISTS 'EntrySearchRecord_idx'(segid, term, pgno, PRIMARY KEY(segid, term)) WITHOUT ROWID; +INSERT INTO EntrySearchRecord_idx VALUES(1,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(2,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(3,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(4,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(5,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(6,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(7,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(8,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(9,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(10,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(11,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(12,X'',2); +INSERT INTO EntrySearchRecord_idx VALUES(13,X'',2); +CREATE TABLE IF NOT EXISTS 'EntrySearchRecord_content'(id INTEGER PRIMARY KEY, c0, c1, c2, c3, c4, c5); +INSERT INTO EntrySearchRecord_content VALUES(1,'de','de Apple','de Apple','fruit with red, yellow, or green skin with a sweet or tart crispy white flesh fr','Fruit fr','00EDEFEB-173E-45CD-836C-EEA2BA514429'); +INSERT INTO EntrySearchRecord_content VALUES(2,'','Banana','Banana','long curved fruit with yellow skin and soft sweet flesh','Fruit','D9F70CF9-A479-4141-92E5-44155D063DA2'); +INSERT INTO EntrySearchRecord_content VALUES(3,'','Orange','Orange','round citrus fruit with orange skin and juicy segments inside','Fruit','75050583-70D7-4605-A6E6-872B8F36C482'); +INSERT INTO EntrySearchRecord_content VALUES(4,'','Grape','Grape','small round or oval fruit growing in clusters, used for wine or eating','Fruit','9E84DB09-1885-4BBB-9482-4891A46F6F49'); +CREATE TABLE IF NOT EXISTS 'EntrySearchRecord_docsize'(id INTEGER PRIMARY KEY, sz BLOB); +INSERT INTO EntrySearchRecord_docsize VALUES(1,X'0006064e0600'); +INSERT INTO EntrySearchRecord_docsize VALUES(2,X'000404350300'); +INSERT INTO EntrySearchRecord_docsize VALUES(3,X'0004043b0300'); +INSERT INTO EntrySearchRecord_docsize VALUES(4,X'000303440300'); +CREATE TABLE IF NOT EXISTS 'EntrySearchRecord_config'(k PRIMARY KEY, v) WITHOUT ROWID; +INSERT INTO EntrySearchRecord_config VALUES('rank','bm25(5, 3, 4, 1, 2)'); +INSERT INTO EntrySearchRecord_config VALUES('version',4); +CREATE TABLE IF NOT EXISTS "LocalResource" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_LocalResource" PRIMARY KEY, + + "LocalPath" TEXT NOT NULL + +); +CREATE TABLE IF NOT EXISTS "RemoteResource" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_RemoteResource" PRIMARY KEY, + + "DeletedAt" TEXT NULL, + + "RemoteId" TEXT NULL, + + "SnapshotId" TEXT NULL, + + CONSTRAINT "FK_RemoteResource_Snapshots_SnapshotId" FOREIGN KEY ("SnapshotId") REFERENCES "Snapshots" ("Id") ON DELETE SET NULL + +); +CREATE TABLE IF NOT EXISTS "Sense" ( + + "Id" TEXT NOT NULL CONSTRAINT "PK_Sense" PRIMARY KEY, + + "Definition" jsonb NOT NULL, + + "DeletedAt" TEXT NULL, + + "EntryId" TEXT NOT NULL, + + "Gloss" jsonb NOT NULL, + + "Order" REAL NOT NULL, + + "PartOfSpeechId" TEXT NULL, + + "SemanticDomains" jsonb NOT NULL, + + "SnapshotId" TEXT NULL, + + CONSTRAINT "FK_Sense_Entry_EntryId" FOREIGN KEY ("EntryId") REFERENCES "Entry" ("Id") ON DELETE CASCADE, + + CONSTRAINT "FK_Sense_PartOfSpeech_PartOfSpeechId" FOREIGN KEY ("PartOfSpeechId") REFERENCES "PartOfSpeech" ("Id") ON DELETE SET NULL, + + CONSTRAINT "FK_Sense_Snapshots_SnapshotId" FOREIGN KEY ("SnapshotId") REFERENCES "Snapshots" ("Id") ON DELETE SET NULL + +); +INSERT INTO Sense VALUES('B9440091-A9FC-4769-82B1-2EE8D030808D','{"en":{"Spans":[{"Text":"fruit with red, yellow, or green skin with a sweet or tart crispy white flesh","Ws":"en"}]},"fr":{"Spans":[{"Text":"fr","Ws":"fr"}]}}',NULL,'00EDEFEB-173E-45CD-836C-EEA2BA514429','{"en":"Fruit","fr":"fr"}',1.0,'46E4FE08-FFA0-4C8B-BF98-2C56F38904D9','[{"Id":"63403699-07c1-43f3-a47c-069d6e4316e5","Name":{"en":"Universe, Creation"},"Code":"1","DeletedAt":null,"Predefined":true}]','87F3BBAD-ED5D-4CBE-987C-786746A94C06'); +INSERT INTO Sense VALUES('C77D7553-209D-45BE-A83E-D07E69808873','{"en":{"Spans":[{"Text":"long curved fruit with yellow skin and soft sweet flesh","Ws":"en"}]}}',NULL,'D9F70CF9-A479-4141-92E5-44155D063DA2','{"en":"Fruit"}',1.0,NULL,'[]','DCFD50CE-413B-4D12-B4E7-6EED289D3AB2'); +INSERT INTO Sense VALUES('241D95A7-6D90-411B-8569-5648CC40B42B','{"en":{"Spans":[{"Text":"round citrus fruit with orange skin and juicy segments inside","Ws":"en"}]}}',NULL,'75050583-70D7-4605-A6E6-872B8F36C482','{"en":"Fruit"}',1.0,NULL,'[]','ABC7FA87-8A65-4C55-8243-719DA4372BDB'); +INSERT INTO Sense VALUES('1B423127-DEB2-468D-8100-E1F1BFF20826','{"en":{"Spans":[{"Text":"small round or oval fruit growing in clusters, used for wine or eating","Ws":"en"}]}}',NULL,'9E84DB09-1885-4BBB-9482-4891A46F6F49','{"en":"Fruit"}',1.0,NULL,'[]','45CA39E0-64CD-4EE3-B721-476791CBCFED'); +CREATE UNIQUE INDEX "IX_ComplexFormComponents_ComplexFormEntryId_ComponentEntryId" ON "ComplexFormComponents" ("ComplexFormEntryId", "ComponentEntryId") WHERE ComponentSenseId IS NULL; +CREATE UNIQUE INDEX "IX_ComplexFormComponents_ComplexFormEntryId_ComponentEntryId_ComponentSenseId" ON "ComplexFormComponents" ("ComplexFormEntryId", "ComponentEntryId", "ComponentSenseId") WHERE ComponentSenseId IS NOT NULL; +CREATE INDEX "IX_ComplexFormComponents_ComponentEntryId" ON "ComplexFormComponents" ("ComponentEntryId"); +CREATE INDEX "IX_ComplexFormComponents_ComponentSenseId" ON "ComplexFormComponents" ("ComponentSenseId"); +CREATE UNIQUE INDEX "IX_ComplexFormComponents_SnapshotId" ON "ComplexFormComponents" ("SnapshotId"); +CREATE UNIQUE INDEX "IX_ComplexFormType_SnapshotId" ON "ComplexFormType" ("SnapshotId"); +CREATE UNIQUE INDEX "IX_Entry_SnapshotId" ON "Entry" ("SnapshotId"); +CREATE UNIQUE INDEX "IX_PartOfSpeech_SnapshotId" ON "PartOfSpeech" ("SnapshotId"); +CREATE UNIQUE INDEX "IX_SemanticDomain_SnapshotId" ON "SemanticDomain" ("SnapshotId"); +CREATE UNIQUE INDEX "IX_Snapshots_CommitId_EntityId" ON "Snapshots" ("CommitId", "EntityId"); +CREATE UNIQUE INDEX "IX_WritingSystem_SnapshotId" ON "WritingSystem" ("SnapshotId"); +CREATE UNIQUE INDEX "IX_WritingSystem_WsId_Type" ON "WritingSystem" ("WsId", "Type"); +CREATE UNIQUE INDEX "IX_Publication_SnapshotId" ON "Publication" ("SnapshotId"); +CREATE INDEX "IX_Snapshots_EntityId" ON "Snapshots" ("EntityId"); +CREATE INDEX "IX_ExampleSentence_SenseId" ON "ExampleSentence" ("SenseId"); +CREATE UNIQUE INDEX "IX_ExampleSentence_SnapshotId" ON "ExampleSentence" ("SnapshotId"); +CREATE UNIQUE INDEX "IX_RemoteResource_SnapshotId" ON "RemoteResource" ("SnapshotId"); +CREATE INDEX "IX_Sense_EntryId" ON "Sense" ("EntryId"); +CREATE INDEX "IX_Sense_PartOfSpeechId" ON "Sense" ("PartOfSpeechId"); +CREATE UNIQUE INDEX "IX_Sense_SnapshotId" ON "Sense" ("SnapshotId"); +PRAGMA writable_schema=OFF; +COMMIT; diff --git a/backend/FwLite/LcmCrdt.Tests/Data/RegressionDeserializationData.json b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.ProjectDump.1.json similarity index 100% rename from backend/FwLite/LcmCrdt.Tests/Data/RegressionDeserializationData.json rename to backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.ProjectDump.1.json diff --git a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt new file mode 100644 index 0000000000..73affe5523 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.latest.verified.txt @@ -0,0 +1,1461 @@ +[ + { + "$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 + }, + { + "$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 + }, + { + "$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 + }, + { + "$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 + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "8f403ae3-9859-4a74-a52d-3c0736bb5917", + "DeletedAt": null, + "LexemeForm": { + "en": "Pineapple" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + } + ], + "PublishIn": [] + }, + "Id": "8f403ae3-9859-4a74-a52d-3c0736bb5917", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "691dda9c-b83e-71c6-3638-e66a279c396e", + "DeletedAt": null, + "LexemeForm": { + "luq": "Communications" + }, + "CitationForm": { + "ykl": "Dominican Republic", + "tw": "Unbranded", + "sqh": "hack" + }, + "LiteralMeaning": { + "rpn": { + "Spans": [ + { + "Text": "Home Loan Account", + "Ws": "kmd", + "Bold": "On", + "FontSize": 1210454949, + "ForeColor": "#A52A2A", + "Tags": [ + "7231e128-410a-9cae-4141-997965f4a853" + ] + } + ] + } + }, + "MorphType": "Particle", + "Senses": [], + "Note": { + "ekl": { + "Spans": [ + { + "Text": "Sleek", + "Ws": "akv", + "Bold": "Off", + "FontSize": 2066121125, + "ForeColor": "#ADFF2F", + "Tags": [ + "82408188-7ce4-ba9a-5f35-8ffec5b3b254" + ] + } + ] + }, + "uki": { + "Spans": [ + { + "Text": "Refined Fresh Computer", + "Ws": "uki", + "Tags": [ + "122f575c-140b-4bb1-9c8c-f98e1969951d" + ] + }, + { + "Text": "internet solution", + "Ws": "uki", + "Tags": [ + "a5bd8ab1-99a0-4bcc-baaf-93c7ccc77429" + ] + }, + { + "Text": "wireless", + "Ws": "uki", + "Tags": [ + "005d71cb-4f05-486c-897c-710a7a6b5346" + ] + }, + { + "Text": "navigate", + "Ws": "uki", + "Tags": [ + "f04879c9-1e04-49b5-b4e0-0ce28e77aacd" + ] + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "15a8d32f-5cac-8a71-7b31-cbefa36ad322", + "Name": { + "tgi": "input", + "gnk": "silver", + "suo": "Refined Wooden Chair" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "ec21b4b7-3861-38d4-bc7b-fe77bd2321c2", + "DeletedAt": null, + "Name": { + "nak": "CSS" + } + } + ] + }, + "Id": "691dda9c-b83e-71c6-3638-e66a279c396e", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "82cf7254-3a4f-497a-9e15-7d93fc830356", + "DeletedAt": null, + "LexemeForm": { + "en": "\uD83C\uDF4C", + "th": "\u0E01\u0E25\u0E49\u0E27\u0E22" + }, + "CitationForm": {}, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "yellow fruit that comes in bunches.", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": { + "en": { + "Spans": [ + { + "Text": "often used in cartoon gags for slipping", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "82cf7254-3a4f-497a-9e15-7d93fc830356", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "8dbc0f41-998e-836a-97e1-f05d46d95c92", + "DeletedAt": null, + "LexemeForm": { + "mqs": "maximized" + }, + "CitationForm": { + "nrz": "Portugal" + }, + "LiteralMeaning": { + "juy": { + "Spans": [ + { + "Text": "Kyat", + "Ws": "juy", + "Tags": [ + "bc47798c-6e35-430e-a94a-2d1aa82d9119" + ] + }, + { + "Text": "synthesize", + "Ws": "juy", + "Tags": [ + "75fc659a-ae47-45ec-87a8-2475d5667496" + ] + } + ] + }, + "rer": { + "Spans": [ + { + "Text": "Licensed", + "Ws": "rer", + "Tags": [ + "adf734b1-3abb-4644-a5b7-e712c29a59e6" + ] + }, + { + "Text": "architectures", + "Ws": "dos", + "Bold": "On", + "FontSize": -1392951304, + "ForeColor": "#ADFF2F", + "Tags": [ + "b316a4f4-208a-e75f-13f0-09a91a2b3506" + ] + } + ] + }, + "zpa": { + "Spans": [ + { + "Text": "Concrete", + "Ws": "zpa", + "Tags": [ + "10cb16c2-6f15-4101-8689-7c77e6576f52" + ] + }, + { + "Text": "Shoals", + "Ws": "cjy", + "Bold": "Invert", + "FontSize": -437265941, + "ForeColor": "#ADFF2F", + "Tags": [ + "53cd8e2b-15c6-0490-70d6-738a6708b9ca" + ] + } + ] + } + }, + "MorphType": "BoundStem", + "Senses": [], + "Note": { + "rkw": { + "Spans": [ + { + "Text": "XML", + "Ws": "vot", + "Bold": "On", + "FontSize": -1698959192, + "ForeColor": "#ADFF2F", + "Tags": [ + "9218c79b-f453-0ef3-de05-ea5eeba26367" + ] + }, + { + "Text": "invoice", + "Ws": "rkw", + "Tags": [ + "6ef3cf72-b5a5-488c-9381-fb7a7f6f961e" + ] + }, + { + "Text": "bypass", + "Ws": "rkw", + "Tags": [ + "e615bb12-61d9-452e-bac5-06deb6942851" + ] + } + ] + }, + "kee": { + "Spans": [ + { + "Text": "Money Market Account", + "Ws": "ekp", + "Bold": "On", + "FontSize": -315220510, + "ForeColor": "#A52A2A", + "Tags": [ + "424e0f12-78a7-37c7-8fa5-74dd81ccc8a7" + ] + }, + { + "Text": "Glens", + "Ws": "kee", + "Tags": [ + "a323544c-2b85-4fa7-b3c7-f5321ad75c49" + ] + }, + { + "Text": "Buckinghamshire", + "Ws": "kee", + "Tags": [ + "13a974bf-8b90-4f36-99c6-9f0771f53db0" + ] + }, + { + "Text": "SMTP", + "Ws": "cly", + "Bold": "Invert", + "FontSize": 872689318, + "ForeColor": "#0000FF", + "Tags": [ + "498aea00-217b-9a3e-7fd0-2748edadf3b3" + ] + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "292e9847-8c7c-56e1-87fb-41d200c789e1", + "Name": { + "hup": "THX", + "rsk": "Reduced", + "zmq": "hard drive", + "nnx": "cyan" + }, + "DeletedAt": null + } + ], + "PublishIn": [ + { + "Id": "bd874c92-e063-2a20-d263-bdc6897a1e85", + "DeletedAt": null, + "Name": { + "zrg": "cross-platform", + "bno": "heuristic" + } + } + ] + }, + "Id": "8dbc0f41-998e-836a-97e1-f05d46d95c92", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Pronoun" + }, + "DeletedAt": null, + "Predefined": true + }, + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "45ffe5e6-f986-cfdc-d482-fef9666ac9f7", + "Name": { + "xkr": "Cambridgeshire", + "jao": "Cotton", + "blt": "benchmark", + "tno": "Plains" + }, + "DeletedAt": null, + "Predefined": false + }, + "Id": "45ffe5e6-f986-cfdc-d482-fef9666ac9f7", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormComponent", + "Id": "29ff092d-1e5a-4bc9-95b9-22be9d9143c5", + "MaybeId": "29ff092d-1e5a-4bc9-95b9-22be9d9143c5", + "Order": 0, + "DeletedAt": null, + "ComplexFormEntryId": "82cf7254-3a4f-497a-9e15-7d93fc830356", + "ComplexFormHeadword": "\uD83C\uDF4C", + "ComponentEntryId": "e5dbeb7f-4df4-4fc7-82c2-a1e14f49365a", + "ComponentSenseId": null, + "ComponentHeadword": "Pine apple" + }, + "Id": "29ff092d-1e5a-4bc9-95b9-22be9d9143c5", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormComponent", + "Id": "ac7cd20f-3d9e-ed6b-ce38-ba17d1cce9d2", + "MaybeId": "ac7cd20f-3d9e-ed6b-ce38-ba17d1cce9d2", + "Order": 0, + "DeletedAt": null, + "ComplexFormEntryId": "acb161b4-07a7-b4b8-9f94-d2e6dc2e98ec", + "ComplexFormHeadword": "Swedish Krona", + "ComponentEntryId": "262788b5-18fc-5cac-83ff-79e33b7db28d", + "ComponentSenseId": "fc5773e3-d82e-5475-22e2-b4672dfbd7ae", + "ComponentHeadword": "Soft" + }, + "Id": "ac7cd20f-3d9e-ed6b-ce38-ba17d1cce9d2", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "35cee792-74c8-444e-a9b7-ed0461d4d3b7", + "Name": { + "en": "Phrasal Verb" + }, + "DeletedAt": null + }, + "Id": "35cee792-74c8-444e-a9b7-ed0461d4d3b7", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "6c895a06-1e97-4657-2aa0-dc0bd08c5cb0", + "Name": { + "emg": "Electronics \u0026 Baby", + "lbm": "Associate", + "blv": "cross-platform", + "klr": "syndicate" + }, + "DeletedAt": null + }, + "Id": "6c895a06-1e97-4657-2aa0-dc0bd08c5cb0", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormComponent", + "Id": "925daf31-61de-4330-8b90-23af0f5967f7", + "MaybeId": "925daf31-61de-4330-8b90-23af0f5967f7", + "Order": 0, + "DeletedAt": null, + "ComplexFormEntryId": "8f403ae3-9859-4a74-a52d-3c0736bb5917", + "ComplexFormHeadword": "Pineapple", + "ComponentEntryId": "c06e7e0e-7822-41fa-9347-00f8115d5791", + "ComponentSenseId": null, + "ComponentHeadword": "Pine" + }, + "Id": "925daf31-61de-4330-8b90-23af0f5967f7", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormComponent", + "Id": "e5f725a5-fc2b-ff4b-98d4-21b30360028b", + "MaybeId": "e5f725a5-fc2b-ff4b-98d4-21b30360028b", + "Order": 0, + "DeletedAt": null, + "ComplexFormEntryId": "566b22cd-12c2-eeca-3252-5e853a919e77", + "ComplexFormHeadword": "copying", + "ComponentEntryId": "2378252c-6c0c-c286-25c7-cc9f037d5cc8", + "ComponentSenseId": "63356fab-b0de-1634-098f-a495295f8ae0", + "ComponentHeadword": "Kip" + }, + "Id": "e5f725a5-fc2b-ff4b-98d4-21b30360028b", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb" + }, + "DeletedAt": null, + "Predefined": true + }, + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "66625a51-cfbb-78e4-fd8f-d192a3219147", + "Name": { + "tit": "Graphic Interface", + "iu": "Gibraltar", + "byh": "Burg", + "pcg": "Harbors" + }, + "DeletedAt": null, + "Predefined": false + }, + "Id": "66625a51-cfbb-78e4-fd8f-d192a3219147", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "fec038ed-6a8c-4fa5-bc96-a4f515a98c50", + "Name": { + "en": "Unspecified Complex Form" + }, + "DeletedAt": null + }, + "Id": "fec038ed-6a8c-4fa5-bc96-a4f515a98c50", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "e7e8d07d-277e-9033-e369-cf08cef383f5", + "Name": { + "xai": "database", + "nbc": "national", + "tab": "deposit", + "mhg": "grey" + }, + "DeletedAt": null + }, + "Id": "e7e8d07d-277e-9033-e369-cf08cef383f5", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "88422849-e6e0-4137-8817-8b66eac419b8", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "My kids love unwrapping gooseberries", + "Ws": "en" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "they think it\u0027s fun", + "Ws": "en" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Scott\u0027s head", + "Ws": "default" + } + ] + }, + "SenseId": "413d9f9b-d389-42a1-822f-9d9dea06ba9e", + "DeletedAt": null + }, + "Id": "88422849-e6e0-4137-8817-8b66eac419b8", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "803d70e9-7ca6-5a14-5776-955ea413f003", + "Order": 0, + "Sentence": { + "tql": { + "Spans": [ + { + "Text": "pixel", + "Ws": "tql", + "Tags": [ + "1df469ef-5f08-424f-a9ce-72cd2c51e5c1" + ] + }, + { + "Text": "South Carolina", + "Ws": "tql", + "Tags": [ + "26a80018-8c73-42e0-a5b1-d27c386c60ee" + ] + }, + { + "Text": "Borders", + "Ws": "puw", + "Bold": "On", + "FontSize": 872537563, + "ForeColor": "#A52A2A", + "Tags": [ + "4020754c-d80d-3f46-89fb-900673d18692" + ] + } + ] + } + }, + "Translation": { + "dby": { + "Spans": [ + { + "Text": "Personal Loan Account", + "Ws": "dby", + "Tags": [ + "879aa5eb-48ac-475c-9382-947b51d70ec8" + ] + }, + { + "Text": "non-volatile", + "Ws": "dby", + "Tags": [ + "07d5e757-afd2-4021-8654-1c8122c454f1" + ] + }, + { + "Text": "Awesome Granite Ball", + "Ws": "ymi", + "Bold": "Off", + "FontSize": 1665030974, + "ForeColor": "#00FFFF", + "Tags": [ + "11e5b769-68c5-53bb-b7a2-6d9046df8be5" + ] + } + ] + }, + "bvp": { + "Spans": [ + { + "Text": "withdrawal", + "Ws": "bpp", + "Bold": "Off", + "FontSize": -1191594913, + "ForeColor": "#00FFFF", + "Tags": [ + "54977e53-520a-da03-23ba-78918705632b" + ] + }, + { + "Text": "Indiana", + "Ws": "shd", + "Bold": "On", + "FontSize": 181106855, + "ForeColor": "#FF0000", + "Tags": [ + "011ec8e3-68ff-149e-54c7-c751b5eb4389" + ] + }, + { + "Text": "Kwanza", + "Ws": "lle", + "Bold": "On", + "FontSize": -1968726792, + "ForeColor": "#0000FF", + "Tags": [ + "c8ee48e1-281b-085b-ebfa-e2fc03624198" + ] + } + ] + }, + "ysl": { + "Spans": [ + { + "Text": "Legacy", + "Ws": "mvn", + "Bold": "Invert", + "FontSize": -645076025, + "ForeColor": "#FF0000", + "Tags": [ + "e818e92a-429b-1ce3-cd59-f6323fa43dcb" + ] + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "ADP", + "Ws": "csb", + "Bold": "Off", + "FontSize": 1972808377, + "ForeColor": "#00000000", + "Tags": [ + "8d6d49c7-37e3-923b-1704-308c455312d9" + ] + }, + { + "Text": "payment", + "Ws": "btw", + "Bold": "On", + "FontSize": -1230510158, + "ForeColor": "#00FFFF", + "Tags": [ + "77493ed8-d1fd-7ccc-9e11-e056942297c6" + ] + } + ] + }, + "SenseId": "44edb1ce-488b-3b73-1ee1-fa8340ce2b53", + "DeletedAt": null + }, + "Id": "803d70e9-7ca6-5a14-5776-955ea413f003", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "468b3fd0-3d9e-4cae-9e4f-842dec5fa74d", + "Order": 0, + "DeletedAt": null, + "EntryId": "70855b06-0b28-4d36-9175-3d57200dd29d", + "Definition": {}, + "Gloss": { + "en": "the sweet and fleshy product of a tree or other plant that contains seed and can be eaten as food" + }, + "PartOfSpeech": null, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "468b3fd0-3d9e-4cae-9e4f-842dec5fa74d", + "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" + }, + "Code": "synthesize", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [] + }, + "Id": "11c4d394-1e03-603c-95a0-86a482d278c5", + "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": [] + }, + "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", + "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" + }, + "Code": "Frozen", + "DeletedAt": null, + "Predefined": false + } + ], + "ExampleSentences": [] + }, + "Id": "2a23a9ba-a548-a602-29c0-954512e3912b", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", + "Order": 2, + "DeletedAt": null, + "EntryId": "89c8b1e8-de9c-46cf-ba55-833b62f7a579", + "Definition": { + "en": { + "Spans": [ + { + "Text": "may or may not lay golden eggs", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "brid" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", + "DeletedAt": null + }, + { + "$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": [] + }, + "Id": "ff45c347-1da5-f492-d4e6-f65a04d6ad79", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "3ce0d5a6-5af0-4a08-8086-d0e827dfe2dd", + "MaybeId": "3ce0d5a6-5af0-4a08-8086-d0e827dfe2dd", + "WsId": "en", + "IsAudio": false, + "Name": "en", + "Abbreviation": "Eng", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + }, + "Id": "3ce0d5a6-5af0-4a08-8086-d0e827dfe2dd", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "7cd09869-ce02-61b2-2dea-d3ed6e505109", + "MaybeId": "7cd09869-ce02-61b2-2dea-d3ed6e505109", + "WsId": "lli", + "IsAudio": false, + "Name": "Granite", + "Abbreviation": "withdrawal", + "Font": "Handmade", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "Planner" + ], + "Order": 0.4320924489200455 + }, + "Id": "7cd09869-ce02-61b2-2dea-d3ed6e505109", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "073c37cd-24cf-4d3d-ab33-19dfc94c96b7", + "MaybeId": "073c37cd-24cf-4d3d-ab33-19dfc94c96b7", + "WsId": "en", + "IsAudio": false, + "Name": "en", + "Abbreviation": "Eng", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + }, + "Id": "073c37cd-24cf-4d3d-ab33-19dfc94c96b7", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "19023cf0-de25-9b0c-d5ad-94df308267c4", + "MaybeId": "19023cf0-de25-9b0c-d5ad-94df308267c4", + "WsId": "taw", + "IsAudio": false, + "Name": "bluetooth", + "Abbreviation": "Credit Card Account", + "Font": "Intelligent Concrete Sausages", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "blockchains" + ], + "Order": 0.14806393624996905 + }, + "Id": "19023cf0-de25-9b0c-d5ad-94df308267c4", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "00000000-0000-0000-0000-6038aa8174c3", + "Order": 0, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "I \uD83D\uDC95 bananas", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "00000000-0000-0000-0000-e3e012824c86", + "DeletedAt": null + }, + "Id": "00000000-0000-0000-0000-6038aa8174c3", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "22365a16-4766-423e-58be-aa8cc941cb54", + "Order": 0, + "Sentence": { + "mrx": { + "Spans": [ + { + "Text": "Delaware", + "Ws": "xlb", + "Bold": "On", + "FontSize": 1748906228, + "ForeColor": "#0000FF", + "Tags": [ + "1941f5c2-799f-0ce0-bca7-58bb65f21d73" + ] + } + ] + }, + "amw": { + "Spans": [ + { + "Text": "Triple-buffered", + "Ws": "mdf", + "Bold": "On", + "FontSize": -568584253, + "ForeColor": "#FF0000", + "Tags": [ + "de01147d-c98f-2d8a-a830-5d23b1a27218" + ] + }, + { + "Text": "navigating", + "Ws": "amw", + "Tags": [ + "b120a366-1502-4f51-870d-29101117c45a" + ] + } + ] + }, + "dng": { + "Spans": [ + { + "Text": "Frozen", + "Ws": "mul", + "Bold": "Off", + "FontSize": 2121728509, + "ForeColor": "#00FFFF", + "Tags": [ + "70a17c80-6dcd-aff2-9103-8af42c840b9a" + ] + }, + { + "Text": "Personal Loan Account", + "Ws": "bcn", + "Bold": "Off", + "FontSize": -2006464735, + "ForeColor": "#A52A2A", + "Tags": [ + "eed71b05-fcf7-5232-5d66-95373cbfd5be" + ] + } + ] + } + }, + "Translation": { + "mzs": { + "Spans": [ + { + "Text": "Small", + "Ws": "mzs", + "Tags": [ + "9f8d3fbd-79cd-4650-a45d-e37b3a813715" + ] + }, + { + "Text": "Field", + "Ws": "mzs", + "Tags": [ + "f68dc993-4800-437b-a1f9-6de730dc71a1" + ] + }, + { + "Text": "Cambridgeshire", + "Ws": "zgm", + "Bold": "Invert", + "FontSize": 881605744, + "ForeColor": "#A52A2A", + "Tags": [ + "26493a82-c598-72aa-d0c3-75220e1ac470" + ] + } + ] + }, + "kgk": { + "Spans": [ + { + "Text": "National", + "Ws": "oav", + "Bold": "Invert", + "FontSize": 2061172555, + "ForeColor": "#0000FF", + "Tags": [ + "c22898e5-903a-bef3-737f-efbb33145be1" + ] + }, + { + "Text": "Harbors", + "Ws": "kgk", + "Tags": [ + "9b240525-1ccb-4189-92d8-2b242938d393" + ] + } + ] + }, + "xyb": { + "Spans": [ + { + "Text": "capability", + "Ws": "sqr", + "Bold": "Off", + "FontSize": -792440808, + "ForeColor": "#0000FF", + "Tags": [ + "b91636e3-0b60-dad5-6f71-446752fb7ff7" + ] + }, + { + "Text": "Saint Helena", + "Ws": "zro", + "Bold": "Invert", + "FontSize": -112975738, + "ForeColor": "#00FFFF", + "Tags": [ + "7918e5d5-5b2f-f46c-5426-fa8c057581ef" + ] + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Kids", + "Ws": "khk", + "Bold": "On", + "FontSize": 959381480, + "ForeColor": "#00000000", + "Tags": [ + "f8102456-1315-360e-8dbd-f43e214058c7" + ] + }, + { + "Text": "vortals", + "Ws": "bco", + "Bold": "Off", + "FontSize": -92347376, + "ForeColor": "#A52A2A", + "Tags": [ + "13590a24-9df3-c56d-0840-959080e7c732" + ] + } + ] + }, + "SenseId": "f82fca1a-d3fa-14f5-e07e-3eef03c2fb7f", + "DeletedAt": null + }, + "Id": "22365a16-4766-423e-58be-aa8cc941cb54", + "DeletedAt": null + }, + { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Publication", + "Id": "78f9bd83-8dcb-6972-7e0b-5863ef2ea0a8", + "DeletedAt": null, + "Name": { + "zun": "Creative", + "km": "overriding", + "nzu": "client-server", + "pbz": "users" + } + }, + "Id": "78f9bd83-8dcb-6972-7e0b-5863ef2ea0a8", + "DeletedAt": null + }, + { + "$type": "RemoteResource", + "Id": "fce4cb31-93bd-f380-fd73-3fb0d09c0fa5", + "DeletedAt": "2025-09-17T23:53:03.6147633+02:00", + "RemoteId": "end-to-end" + } +] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.legacy.verified.txt b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.legacy.verified.txt new file mode 100644 index 0000000000..4c490591f9 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationRegressionData.legacy.verified.txt @@ -0,0 +1,1057 @@ +[ + { + "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, + "DbObject": { + "Id": "a4627ca8-f27b-44ce-91f5-cc992332bc86", + "Name": { + "en": "Husband, wife" + }, + "Code": "4.1.9.2.1", + "DeletedAt": null, + "Predefined": false + } + }, + "Output": { + "$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 + } + }, + { + "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, + "DbObject": { + "Id": "962941b2-66bd-437f-aadc-b1921bcae5b4", + "Name": { + "en": "Poison" + }, + "Code": "2.5.3.2", + "DeletedAt": null, + "Predefined": false + } + }, + "Output": { + "$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 + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "8f403ae3-9859-4a74-a52d-3c0736bb5917", + "DeletedAt": null, + "LexemeForm": { + "en": "Pineapple" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + } + ] + }, + "Id": "8f403ae3-9859-4a74-a52d-3c0736bb5917", + "DeletedAt": null, + "DbObject": { + "Id": "8f403ae3-9859-4a74-a52d-3c0736bb5917", + "DeletedAt": null, + "LexemeForm": { + "en": "Pineapple" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + } + ] + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "8f403ae3-9859-4a74-a52d-3c0736bb5917", + "DeletedAt": null, + "LexemeForm": { + "en": "Pineapple" + }, + "CitationForm": {}, + "LiteralMeaning": {}, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "1f6ae209-141a-40db-983c-bee93af0ca3c", + "Name": { + "en": "Compound" + }, + "DeletedAt": null + } + ], + "PublishIn": [] + }, + "Id": "8f403ae3-9859-4a74-a52d-3c0736bb5917", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "82cf7254-3a4f-497a-9e15-7d93fc830356", + "DeletedAt": null, + "LexemeForm": { + "en": "\uD83C\uDF4C", + "th": "\u0E01\u0E25\u0E49\u0E27\u0E22" + }, + "CitationForm": {}, + "LiteralMeaning": { + "en": "yellow fruit that comes in bunches." + }, + "Senses": [], + "Note": { + "en": "often used in cartoon gags for slipping" + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [] + }, + "Id": "82cf7254-3a4f-497a-9e15-7d93fc830356", + "DeletedAt": null, + "DbObject": { + "Id": "82cf7254-3a4f-497a-9e15-7d93fc830356", + "DeletedAt": null, + "LexemeForm": { + "en": "\uD83C\uDF4C", + "th": "\u0E01\u0E25\u0E49\u0E27\u0E22" + }, + "CitationForm": {}, + "LiteralMeaning": { + "en": "yellow fruit that comes in bunches." + }, + "Senses": [], + "Note": { + "en": "often used in cartoon gags for slipping" + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [] + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "82cf7254-3a4f-497a-9e15-7d93fc830356", + "DeletedAt": null, + "LexemeForm": { + "en": "\uD83C\uDF4C", + "th": "\u0E01\u0E25\u0E49\u0E27\u0E22" + }, + "CitationForm": {}, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "yellow fruit that comes in bunches.", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": { + "en": { + "Spans": [ + { + "Text": "often used in cartoon gags for slipping", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "82cf7254-3a4f-497a-9e15-7d93fc830356", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Pronoun" + }, + "DeletedAt": null, + "Predefined": true + }, + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "DeletedAt": null, + "DbObject": { + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Pronoun" + }, + "DeletedAt": null, + "Predefined": true + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "Name": { + "en": "Pronoun" + }, + "DeletedAt": null, + "Predefined": true + }, + "Id": "a3274cfd-225f-45fd-8851-a7b1a1e1037a", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormComponent", + "Id": "29ff092d-1e5a-4bc9-95b9-22be9d9143c5", + "DeletedAt": null, + "ComplexFormEntryId": "82cf7254-3a4f-497a-9e15-7d93fc830356", + "ComplexFormHeadword": "\uD83C\uDF4C", + "ComponentEntryId": "e5dbeb7f-4df4-4fc7-82c2-a1e14f49365a", + "ComponentSenseId": null, + "ComponentHeadword": "Pine apple" + }, + "Id": "29ff092d-1e5a-4bc9-95b9-22be9d9143c5", + "DeletedAt": null, + "DbObject": { + "Id": "29ff092d-1e5a-4bc9-95b9-22be9d9143c5", + "DeletedAt": null, + "ComplexFormEntryId": "82cf7254-3a4f-497a-9e15-7d93fc830356", + "ComplexFormHeadword": "\uD83C\uDF4C", + "ComponentEntryId": "e5dbeb7f-4df4-4fc7-82c2-a1e14f49365a", + "ComponentSenseId": null, + "ComponentHeadword": "Pine apple" + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormComponent", + "Id": "29ff092d-1e5a-4bc9-95b9-22be9d9143c5", + "MaybeId": "29ff092d-1e5a-4bc9-95b9-22be9d9143c5", + "Order": 0, + "DeletedAt": null, + "ComplexFormEntryId": "82cf7254-3a4f-497a-9e15-7d93fc830356", + "ComplexFormHeadword": "\uD83C\uDF4C", + "ComponentEntryId": "e5dbeb7f-4df4-4fc7-82c2-a1e14f49365a", + "ComponentSenseId": null, + "ComponentHeadword": "Pine apple" + }, + "Id": "29ff092d-1e5a-4bc9-95b9-22be9d9143c5", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "35cee792-74c8-444e-a9b7-ed0461d4d3b7", + "Name": { + "en": "Phrasal Verb" + }, + "DeletedAt": null + }, + "Id": "35cee792-74c8-444e-a9b7-ed0461d4d3b7", + "DeletedAt": null, + "DbObject": { + "Id": "35cee792-74c8-444e-a9b7-ed0461d4d3b7", + "Name": { + "en": "Phrasal Verb" + }, + "DeletedAt": null + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "35cee792-74c8-444e-a9b7-ed0461d4d3b7", + "Name": { + "en": "Phrasal Verb" + }, + "DeletedAt": null + }, + "Id": "35cee792-74c8-444e-a9b7-ed0461d4d3b7", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormComponent", + "Id": "925daf31-61de-4330-8b90-23af0f5967f7", + "DeletedAt": null, + "ComplexFormEntryId": "8f403ae3-9859-4a74-a52d-3c0736bb5917", + "ComplexFormHeadword": "Pineapple", + "ComponentEntryId": "c06e7e0e-7822-41fa-9347-00f8115d5791", + "ComponentSenseId": null, + "ComponentHeadword": "Pine" + }, + "Id": "925daf31-61de-4330-8b90-23af0f5967f7", + "DeletedAt": null, + "DbObject": { + "Id": "925daf31-61de-4330-8b90-23af0f5967f7", + "DeletedAt": null, + "ComplexFormEntryId": "8f403ae3-9859-4a74-a52d-3c0736bb5917", + "ComplexFormHeadword": "Pineapple", + "ComponentEntryId": "c06e7e0e-7822-41fa-9347-00f8115d5791", + "ComponentSenseId": null, + "ComponentHeadword": "Pine" + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormComponent", + "Id": "925daf31-61de-4330-8b90-23af0f5967f7", + "MaybeId": "925daf31-61de-4330-8b90-23af0f5967f7", + "Order": 0, + "DeletedAt": null, + "ComplexFormEntryId": "8f403ae3-9859-4a74-a52d-3c0736bb5917", + "ComplexFormHeadword": "Pineapple", + "ComponentEntryId": "c06e7e0e-7822-41fa-9347-00f8115d5791", + "ComponentSenseId": null, + "ComponentHeadword": "Pine" + }, + "Id": "925daf31-61de-4330-8b90-23af0f5967f7", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb" + }, + "DeletedAt": null, + "Predefined": true + }, + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "DeletedAt": null, + "DbObject": { + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb" + }, + "DeletedAt": null, + "Predefined": true + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "Name": { + "en": "Verb" + }, + "DeletedAt": null, + "Predefined": true + }, + "Id": "86ff66f6-0774-407a-a0dc-3eeaf873daf7", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "fec038ed-6a8c-4fa5-bc96-a4f515a98c50", + "Name": { + "en": "Unspecified Complex Form" + }, + "DeletedAt": null + }, + "Id": "fec038ed-6a8c-4fa5-bc96-a4f515a98c50", + "DeletedAt": null, + "DbObject": { + "Id": "fec038ed-6a8c-4fa5-bc96-a4f515a98c50", + "Name": { + "en": "Unspecified Complex Form" + }, + "DeletedAt": null + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "fec038ed-6a8c-4fa5-bc96-a4f515a98c50", + "Name": { + "en": "Unspecified Complex Form" + }, + "DeletedAt": null + }, + "Id": "fec038ed-6a8c-4fa5-bc96-a4f515a98c50", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "88422849-e6e0-4137-8817-8b66eac419b8", + "Order": 1, + "Sentence": { + "en": "My kids love unwrapping gooseberries" + }, + "Translation": { + "en": "they think it\u0027s fun" + }, + "Reference": "Scott\u0027s head", + "SenseId": "413d9f9b-d389-42a1-822f-9d9dea06ba9e", + "DeletedAt": null + }, + "Id": "88422849-e6e0-4137-8817-8b66eac419b8", + "DeletedAt": null, + "DbObject": { + "Id": "88422849-e6e0-4137-8817-8b66eac419b8", + "Order": 1, + "Sentence": { + "en": "My kids love unwrapping gooseberries" + }, + "Translation": { + "en": "they think it\u0027s fun" + }, + "Reference": "Scott\u0027s head", + "SenseId": "413d9f9b-d389-42a1-822f-9d9dea06ba9e", + "DeletedAt": null + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "88422849-e6e0-4137-8817-8b66eac419b8", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "My kids love unwrapping gooseberries", + "Ws": "en" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "they think it\u0027s fun", + "Ws": "en" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "Scott\u0027s head", + "Ws": "default" + } + ] + }, + "SenseId": "413d9f9b-d389-42a1-822f-9d9dea06ba9e", + "DeletedAt": null + }, + "Id": "88422849-e6e0-4137-8817-8b66eac419b8", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "468b3fd0-3d9e-4cae-9e4f-842dec5fa74d", + "Order": 0, + "DeletedAt": null, + "EntryId": "70855b06-0b28-4d36-9175-3d57200dd29d", + "Definition": {}, + "Gloss": { + "en": "the sweet and fleshy product of a tree or other plant that contains seed and can be eaten as food" + }, + "PartOfSpeech": "Noun", + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "468b3fd0-3d9e-4cae-9e4f-842dec5fa74d", + "DeletedAt": null, + "DbObject": { + "Id": "468b3fd0-3d9e-4cae-9e4f-842dec5fa74d", + "Order": 0, + "DeletedAt": null, + "EntryId": "70855b06-0b28-4d36-9175-3d57200dd29d", + "Definition": {}, + "Gloss": { + "en": "the sweet and fleshy product of a tree or other plant that contains seed and can be eaten as food" + }, + "PartOfSpeech": "Noun", + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "468b3fd0-3d9e-4cae-9e4f-842dec5fa74d", + "Order": 0, + "DeletedAt": null, + "EntryId": "70855b06-0b28-4d36-9175-3d57200dd29d", + "Definition": {}, + "Gloss": { + "en": "the sweet and fleshy product of a tree or other plant that contains seed and can be eaten as food" + }, + "PartOfSpeech": null, + "PartOfSpeechId": "a8e41fd3-e343-4c7c-aa05-01ea3dd5cfb5", + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "468b3fd0-3d9e-4cae-9e4f-842dec5fa74d", + "DeletedAt": null + } + }, + { + "Input": { + "$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" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", + "DeletedAt": null + }, + "Output": { + "$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": [] + }, + "Id": "ac8c3b6f-9487-4949-ab7a-1ed078cadffe", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", + "Order": 2, + "DeletedAt": null, + "EntryId": "89c8b1e8-de9c-46cf-ba55-833b62f7a579", + "Definition": { + "en": "may or may not lay golden eggs" + }, + "Gloss": { + "en": "brid" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", + "DeletedAt": null, + "DbObject": { + "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", + "Order": 2, + "DeletedAt": null, + "EntryId": "89c8b1e8-de9c-46cf-ba55-833b62f7a579", + "Definition": { + "en": "may or may not lay golden eggs" + }, + "Gloss": { + "en": "brid" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", + "Order": 2, + "DeletedAt": null, + "EntryId": "89c8b1e8-de9c-46cf-ba55-833b62f7a579", + "Definition": { + "en": { + "Spans": [ + { + "Text": "may or may not lay golden eggs", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "brid" + }, + "PartOfSpeech": null, + "PartOfSpeechId": null, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "ff2f6647-0ff2-4d67-845b-c43baf851d93", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "3ce0d5a6-5af0-4a08-8086-d0e827dfe2dd", + "WsId": "en", + "Name": "en", + "Abbreviation": "Eng", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + }, + "Id": "3ce0d5a6-5af0-4a08-8086-d0e827dfe2dd", + "DeletedAt": null, + "DbObject": { + "Id": "3ce0d5a6-5af0-4a08-8086-d0e827dfe2dd", + "WsId": "en", + "Name": "en", + "Abbreviation": "Eng", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "3ce0d5a6-5af0-4a08-8086-d0e827dfe2dd", + "MaybeId": "3ce0d5a6-5af0-4a08-8086-d0e827dfe2dd", + "WsId": "en", + "IsAudio": false, + "Name": "en", + "Abbreviation": "Eng", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + }, + "Id": "3ce0d5a6-5af0-4a08-8086-d0e827dfe2dd", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "073c37cd-24cf-4d3d-ab33-19dfc94c96b7", + "WsId": "en", + "Name": "en", + "Abbreviation": "Eng", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + }, + "Id": "073c37cd-24cf-4d3d-ab33-19dfc94c96b7", + "DeletedAt": null, + "DbObject": { + "Id": "073c37cd-24cf-4d3d-ab33-19dfc94c96b7", + "WsId": "en", + "Name": "en", + "Abbreviation": "Eng", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "073c37cd-24cf-4d3d-ab33-19dfc94c96b7", + "MaybeId": "073c37cd-24cf-4d3d-ab33-19dfc94c96b7", + "WsId": "en", + "IsAudio": false, + "Name": "en", + "Abbreviation": "Eng", + "Font": "Charis SIL", + "DeletedAt": null, + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + }, + "Id": "073c37cd-24cf-4d3d-ab33-19dfc94c96b7", + "DeletedAt": null + } + }, + { + "Input": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "00000000-0000-0000-0000-6038aa8174c3", + "Order": 0, + "Sentence": { + "en": "I \uD83D\uDC95 bananas" + }, + "Translation": {}, + "Reference": "", + "SenseId": "00000000-0000-0000-0000-e3e012824c86", + "DeletedAt": null + }, + "Id": "00000000-0000-0000-0000-6038aa8174c3", + "DeletedAt": null, + "DbObject": { + "Id": "00000000-0000-0000-0000-6038aa8174c3", + "Order": 0, + "Sentence": { + "en": "I \uD83D\uDC95 bananas" + }, + "Translation": {}, + "Reference": "", + "SenseId": "00000000-0000-0000-0000-e3e012824c86", + "DeletedAt": null + } + }, + "Output": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "00000000-0000-0000-0000-6038aa8174c3", + "Order": 0, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "I \uD83D\uDC95 bananas", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "Reference": null, + "SenseId": "00000000-0000-0000-0000-e3e012824c86", + "DeletedAt": null + }, + "Id": "00000000-0000-0000-0000-6038aa8174c3", + "DeletedAt": null + } + } +] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationTests.cs b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationTests.cs index 0cf7e8afbe..b27a7e0041 100644 --- a/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/Data/SnapshotDeserializationTests.cs @@ -1,37 +1,174 @@ -using System.Runtime.CompilerServices; using System.Text.Json; +using System.Text.Json.Nodes; +using FluentAssertions.Execution; +using LcmCrdt.Objects; using SIL.Harmony.Core; namespace LcmCrdt.Tests.Data; -public class SnapshotDeserializationTests +public class SnapshotDeserializationTests : BaseSerializationTest { - private static readonly Lazy LazyOptions = new(() => + private static IObjectBase GenerateSnapshotForType(Type type) { - var config = new CrdtConfig(); - LcmCrdtKernel.ConfigureCrdt(config); - config.JsonSerializerOptions.ReadCommentHandling = JsonCommentHandling.Skip; - return config.JsonSerializerOptions; - }); + try + { + if (typeof(IObjectWithId).IsAssignableFrom(type)) + { + var snapshot = Faker.Generate(type) as IObjectWithId; + snapshot.Should().NotBeNull($"Could not generate {nameof(IObjectWithId)} snapshot for type {type.Name}"); + return new MiniLcmCrdtAdapter(snapshot); + } + else if (typeof(IObjectBase).IsAssignableFrom(type)) + { + var snapshot = Faker.Generate(type) as IObjectBase; + snapshot.Should().NotBeNull($"Could not generate {nameof(IObjectBase)} snapshot for type {type.Name}"); + return snapshot; + } + else + { + throw new Exception($"Type {type.Name} does not implement IObjectBase or IObjectWithId"); + } + + } + catch (Exception e) + { + throw new Exception($"Failed to generate snapshot of type {type.Name}", e); + } + } - private static readonly JsonSerializerOptions Options = LazyOptions.Value; [Fact] - public void CanDeserializeRegressionData() + public void CanDeserializeProjectDumpRegressionData() { - //this file represents projects which already have changes applied, we want to ensure that we don't break anything. //nothing should ever be removed from this file - //if a new property is added then a new json object should be added with that property - using var jsonFile = File.OpenRead(GetJsonFilePath("RegressionDeserializationData.json")); - var changes = JsonSerializer.Deserialize>(jsonFile, Options); - changes.Should().NotBeNullOrEmpty().And.NotContainNulls(); + //this file represents projects which already have snapshots and changes applied, we want to ensure that we don't break anything. + using var jsonFile = File.OpenRead(GetJsonFilePath("SnapshotDeserializationRegressionData.ProjectDump.1.json")); + var snapshots = JsonSerializer.Deserialize>(jsonFile, Options); + snapshots.Should().NotBeNullOrEmpty().And.NotContainNulls(); + } + + [Fact] + public void CanDeserializeLatestRegressionData() + { + //nothing should ever be removed from this file! + //it represents snapshots that could be out in the wild and we need to support + //snapshots are updated and appended by RegressionDataUpToDate() whenever it finds a "latest" snapshot that doesn't stably round-trip + //or when it finds a snapshot type that isn't represented + //this file was initialized with a small selection of snapshots from a project dump + using var jsonFile = File.OpenRead(GetJsonFilePath("SnapshotDeserializationRegressionData.latest.verified.txt")); + var snapshots = JsonSerializer.Deserialize>(jsonFile, Options); + snapshots.Should().NotBeNullOrEmpty().And.NotContainNulls(); + + //ensure that all snapshot types are represented and none should be removed from AllObjectTypes + using (new AssertionScope()) + { + var snapshotTypes = snapshots.Select(c => c.DbObject.GetType()).Distinct().ToHashSet(); + foreach (var objectType in LcmCrdtKernel.AllObjectTypes()) + { + snapshotTypes.Should().Contain(objectType); + } + } + } + + private record LegacySnapshotRecord(IObjectBase Input, IObjectBase Output); + + [Fact] + public void CanDeserializeLegacyRegressionData() + { + //nothing should ever be removed from this file! + //the input fields represent snapshots that could be out in the wild and we need to support + //the output fields represent what these legacy snapshots currently "reserialize" to + //RegressionDataUpToDate() + // (1) moves snapshots here from RegressionDeserializationData.latest.verified.txt + // when it detects that they don't stably round-trip and + // (2) keeps the round-trip output of the snapshots up to date + using var jsonFile = File.OpenRead(GetJsonFilePath("SnapshotDeserializationRegressionData.legacy.verified.txt")); + var snapshots = JsonSerializer.Deserialize>(jsonFile, Options); + snapshots.Should().NotBeNullOrEmpty().And.NotContainNulls(); + snapshots.SelectMany(c => new[] { c.Input, c.Output }) + .Should().NotContainNulls() + .And.HaveCount(snapshots.Count * 2); } - private static string GetJsonFilePath(string name, [CallerFilePath] string sourceFile = "") + [Fact] + public async Task RegressionDataUpToDate() { - return Path.Combine( - Path.GetDirectoryName(sourceFile) ?? - throw new InvalidOperationException("Could not get directory of source file"), - name); + var legacyJsonArray = ReadJsonArrayFromFile(GetJsonFilePath("SnapshotDeserializationRegressionData.legacy.verified.txt")); + var latestJsonArray = ReadJsonArrayFromFile(GetJsonFilePath("SnapshotDeserializationRegressionData.latest.verified.txt")); + var newLatestJsonArray = new JsonArray(); + + // step 1: validate the round-tripping/output of legacy snapshots + foreach (var legacyJsonNode in legacyJsonArray) + { + legacyJsonNode.Should().NotBeNull(); + var legacyJson = ToNormalizedIndentedJsonString(legacyJsonNode[nameof(LegacySnapshotRecord.Input)]!); + legacyJson.Should().NotBeNullOrWhiteSpace(); + var legacyOutputJson = ToNormalizedIndentedJsonString(legacyJsonNode[nameof(LegacySnapshotRecord.Output)]!); + legacyOutputJson.Should().NotBeNullOrWhiteSpace(); + var snapshot = JsonSerializer.Deserialize(legacyJson, Options); + snapshot.Should().NotBeNull(); + var newLegacyOutputJson = JsonSerializer.Serialize(snapshot, OptionsIndented); + if (legacyOutputJson != newLegacyOutputJson) + { + //the legacy snapshot no longer round-trips to the same output, so we should verify the new output + legacyJsonNode[nameof(LegacySnapshotRecord.Output)] = JsonNode.Parse(newLegacyOutputJson); + } + } + + // step 2: validate the round-tripping/output of latest snapshots, moving any that don't to legacy + var seenObjectTypes = new HashSet(); + foreach (var latestJsonNode in latestJsonArray) + { + latestJsonNode.Should().NotBeNull(); + var latestJson = ToNormalizedIndentedJsonString(latestJsonNode); + latestJson.Should().NotBeNullOrWhiteSpace(); + var snapshot = JsonSerializer.Deserialize(latestJsonNode, Options); + snapshot.Should().NotBeNull(); + seenObjectTypes.Add(snapshot.DbObject.GetType()); + var newLatestJson = JsonSerializer.Serialize(snapshot, OptionsIndented); + + if (latestJson != newLatestJson) + { + // The current "latest" json doesn't match it's reserialized form. + // I.e. it's no longer the latest. It's now legacy + legacyJsonArray.Add(new JsonObject + { + [nameof(LegacySnapshotRecord.Input)] = latestJsonNode.DeepClone(), + [nameof(LegacySnapshotRecord.Output)] = JsonNode.Parse(newLatestJson) + }); + newLatestJsonArray.Add(JsonNode.Parse(newLatestJson)); + // Additionally we add a brand new generated snapshot. + // If the new model only removes data or changes the representation of the same data then this probably isn't helpful. + // However, we typically change the model in order to add new data, so the generated snapshot will exercise that new data. + // Anyhow, it's much easier for a dev to remove unwanted snapshots than + // to generate and insert them manually. We can remove this if it's too noisy. + var generatedSnapshot = GenerateSnapshotForType(snapshot.DbObject.GetType()); + var serialized = JsonSerializer.Serialize(generatedSnapshot, OptionsIndented); + newLatestJsonArray.Add(JsonNode.Parse(serialized)); + } + else + { + // it's still the latest + newLatestJsonArray.Add(latestJsonNode.DeepClone()); + } + } + + // step 3: add snapshots for any snapshot types not already represented + foreach (var snapshotType in LcmCrdtKernel.AllObjectTypes() + .Where(snapshotType => !seenObjectTypes.Contains(snapshotType))) + { + var generatedSnapshot = GenerateSnapshotForType(snapshotType); + var serialized = JsonSerializer.Serialize(generatedSnapshot, OptionsIndented); + newLatestJsonArray.Add(JsonNode.Parse(serialized)); + } + + await Task.WhenAll( + Verify(SerializeRegressionData(legacyJsonArray)) + .UseStrictJson() + .UseFileName("SnapshotDeserializationRegressionData.legacy"), + Verify(SerializeRegressionData(newLatestJsonArray)) + .UseStrictJson() + .UseFileName("SnapshotDeserializationRegressionData.latest") + ); } } diff --git a/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v1.verified.json b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v1.verified.json new file mode 100644 index 0000000000..ad286e59d5 --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v1.verified.json @@ -0,0 +1,431 @@ +[ + { + "Id": "Guid_1", + "TypeName": "ComplexFormType", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "Guid_2", + "Name": { + "en": "Compound" + } + }, + "Id": "Guid_2" + }, + "References": [], + "EntityId": "Guid_2", + "EntityIsDeleted": false, + "CommitId": "Guid_3", + "IsRoot": true + }, + { + "Id": "Guid_4", + "TypeName": "ComplexFormType", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "Guid_5", + "Name": { + "en": "Unspecified" + } + }, + "Id": "Guid_5" + }, + "References": [], + "EntityId": "Guid_5", + "EntityIsDeleted": false, + "CommitId": "Guid_3", + "IsRoot": true + }, + { + "Id": "Guid_6", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "Guid_7", + "LexemeForm": { + "en": "Apple" + }, + "CitationForm": { + "en": "Apple" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "Guid_7" + }, + "References": [], + "EntityId": "Guid_7", + "EntityIsDeleted": false, + "CommitId": "Guid_8", + "IsRoot": true + }, + { + "Id": "Guid_9", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "Guid_10", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "We ate an apple", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "SenseId": "Guid_11" + }, + "Id": "Guid_10" + }, + "References": [ + "Guid_11" + ], + "EntityId": "Guid_10", + "EntityIsDeleted": false, + "CommitId": "Guid_8", + "IsRoot": true + }, + { + "Id": "Guid_12", + "TypeName": "PartOfSpeech", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "Guid_13", + "Name": { + "en": "Adverb" + }, + "Predefined": true + }, + "Id": "Guid_13" + }, + "References": [], + "EntityId": "Guid_13", + "EntityIsDeleted": false, + "CommitId": "Guid_14", + "IsRoot": true + }, + { + "Id": "Guid_15", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_16", + "Name": { + "en": "Universe, Creation" + }, + "Code": "1", + "Predefined": true + }, + "Id": "Guid_16" + }, + "References": [], + "EntityId": "Guid_16", + "EntityIsDeleted": false, + "CommitId": "Guid_17", + "IsRoot": true + }, + { + "Id": "Guid_18", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_19", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "Predefined": true + }, + "Id": "Guid_19" + }, + "References": [], + "EntityId": "Guid_19", + "EntityIsDeleted": false, + "CommitId": "Guid_17", + "IsRoot": true + }, + { + "Id": "Guid_20", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_21", + "Name": { + "en": "World" + }, + "Code": "1.2", + "Predefined": true + }, + "Id": "Guid_21" + }, + "References": [], + "EntityId": "Guid_21", + "EntityIsDeleted": false, + "CommitId": "Guid_17", + "IsRoot": true + }, + { + "Id": "Guid_22", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_23", + "Name": { + "en": "Person" + }, + "Code": "2", + "Predefined": true + }, + "Id": "Guid_23" + }, + "References": [], + "EntityId": "Guid_23", + "EntityIsDeleted": false, + "CommitId": "Guid_17", + "IsRoot": true + }, + { + "Id": "Guid_24", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_25", + "Name": { + "en": "Body" + }, + "Code": "2.1", + "Predefined": true + }, + "Id": "Guid_25" + }, + "References": [], + "EntityId": "Guid_25", + "EntityIsDeleted": false, + "CommitId": "Guid_17", + "IsRoot": true + }, + { + "Id": "Guid_26", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_27", + "Name": { + "en": "Head" + }, + "Code": "2.1.1", + "Predefined": true + }, + "Id": "Guid_27" + }, + "References": [], + "EntityId": "Guid_27", + "EntityIsDeleted": false, + "CommitId": "Guid_17", + "IsRoot": true + }, + { + "Id": "Guid_28", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_29", + "Name": { + "en": "Eye" + }, + "Code": "2.1.1.1", + "Predefined": true + }, + "Id": "Guid_29" + }, + "References": [], + "EntityId": "Guid_29", + "EntityIsDeleted": false, + "CommitId": "Guid_17", + "IsRoot": true + }, + { + "Id": "Guid_30", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "Guid_11", + "Order": 1, + "EntryId": "Guid_7", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "Guid_11" + }, + "References": [ + "Guid_7" + ], + "EntityId": "Guid_11", + "EntityIsDeleted": false, + "CommitId": "Guid_8", + "IsRoot": true + }, + { + "Id": "Guid_31", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "Guid_32", + "MaybeId": "Guid_32", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + }, + "Id": "Guid_32" + }, + "References": [], + "EntityId": "Guid_32", + "EntityIsDeleted": false, + "CommitId": "Guid_33", + "IsRoot": true + }, + { + "Id": "Guid_34", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "Guid_35", + "MaybeId": "Guid_35", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 0 + }, + "Id": "Guid_35" + }, + "References": [], + "EntityId": "Guid_35", + "EntityIsDeleted": false, + "CommitId": "Guid_36", + "IsRoot": true + } +] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v2.verified.json b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v2.verified.json new file mode 100644 index 0000000000..1a3fe7e03b --- /dev/null +++ b/backend/FwLite/LcmCrdt.Tests/Data/VerifyRegeneratedSnapshotsAfterMigrationFromScriptedDb.v2.verified.json @@ -0,0 +1,1065 @@ +[ + { + "Id": "Guid_1", + "TypeName": "ComplexFormComponent", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormComponent", + "Id": "Guid_2", + "MaybeId": "Guid_2", + "Order": 1, + "ComplexFormEntryId": "Guid_3", + "ComplexFormHeadword": "Orange", + "ComponentEntryId": "Guid_4", + "ComponentHeadword": "de" + }, + "Id": "Guid_2" + }, + "References": [ + "Guid_3", + "Guid_4" + ], + "EntityId": "Guid_2", + "EntityIsDeleted": false, + "CommitId": "Guid_5", + "IsRoot": true + }, + { + "Id": "Guid_6", + "TypeName": "ComplexFormType", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "Guid_7", + "Name": { + "en": "Compound" + } + }, + "Id": "Guid_7" + }, + "References": [], + "EntityId": "Guid_7", + "EntityIsDeleted": false, + "CommitId": "Guid_8", + "IsRoot": true + }, + { + "Id": "Guid_9", + "TypeName": "ComplexFormType", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ComplexFormType", + "Id": "Guid_10", + "Name": { + "en": "Unspecified" + } + }, + "Id": "Guid_10" + }, + "References": [], + "EntityId": "Guid_10", + "EntityIsDeleted": false, + "CommitId": "Guid_8", + "IsRoot": true + }, + { + "Id": "Guid_11", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "Guid_4", + "LexemeForm": { + "en": "Apple", + "de": "de" + }, + "CitationForm": { + "en": "Apple", + "de": "de" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + }, + "fr": { + "Spans": [ + { + "Text": "fr", + "Ws": "fr" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": { + "en": { + "Spans": [ + { + "Text": "note", + "Ws": "en" + } + ] + } + }, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [ + { + "Id": "Guid_7", + "Name": { + "en": "Compound" + } + } + ], + "PublishIn": [] + }, + "Id": "Guid_4" + }, + "References": [], + "EntityId": "Guid_4", + "EntityIsDeleted": false, + "CommitId": "Guid_12", + "IsRoot": false + }, + { + "Id": "Guid_13", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "Guid_3", + "LexemeForm": { + "en": "Orange" + }, + "CitationForm": { + "en": "Orange" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "Guid_3" + }, + "References": [], + "EntityId": "Guid_3", + "EntityIsDeleted": false, + "CommitId": "Guid_14", + "IsRoot": true + }, + { + "Id": "Guid_15", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "Guid_16", + "LexemeForm": { + "en": "Grape" + }, + "CitationForm": { + "en": "Grape" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "Guid_16" + }, + "References": [], + "EntityId": "Guid_16", + "EntityIsDeleted": false, + "CommitId": "Guid_17", + "IsRoot": true + }, + { + "Id": "Guid_18", + "TypeName": "Entry", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Entry", + "Id": "Guid_19", + "LexemeForm": { + "en": "Banana" + }, + "CitationForm": { + "en": "Banana" + }, + "LiteralMeaning": { + "en": { + "Spans": [ + { + "Text": "Fruit", + "Ws": "en" + } + ] + } + }, + "MorphType": "Stem", + "Senses": [], + "Note": {}, + "Components": [], + "ComplexForms": [], + "ComplexFormTypes": [], + "PublishIn": [] + }, + "Id": "Guid_19" + }, + "References": [], + "EntityId": "Guid_19", + "EntityIsDeleted": false, + "CommitId": "Guid_20", + "IsRoot": true + }, + { + "Id": "Guid_21", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "Guid_22", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "We ate an apple", + "Ws": "en" + } + ] + }, + "de": { + "Spans": [ + { + "Text": "de", + "Ws": "de" + } + ] + } + }, + "Translation": { + "en": { + "Spans": [ + { + "Text": "en", + "Ws": "en" + } + ] + } + }, + "Reference": { + "Spans": [ + { + "Text": "ref", + "Ws": "en" + } + ] + }, + "SenseId": "Guid_23" + }, + "Id": "Guid_22" + }, + "References": [ + "Guid_23" + ], + "EntityId": "Guid_22", + "EntityIsDeleted": false, + "CommitId": "Guid_24", + "IsRoot": false + }, + { + "Id": "Guid_25", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "Guid_26", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "The vineyard was full of ripe grapes", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "SenseId": "Guid_27" + }, + "Id": "Guid_26" + }, + "References": [ + "Guid_27" + ], + "EntityId": "Guid_26", + "EntityIsDeleted": false, + "CommitId": "Guid_17", + "IsRoot": true + }, + { + "Id": "Guid_28", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "Guid_29", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "I squeezed the orange for juice", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "SenseId": "Guid_30" + }, + "Id": "Guid_29" + }, + "References": [ + "Guid_30" + ], + "EntityId": "Guid_29", + "EntityIsDeleted": false, + "CommitId": "Guid_14", + "IsRoot": true + }, + { + "Id": "Guid_31", + "TypeName": "ExampleSentence", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "ExampleSentence", + "Id": "Guid_32", + "Order": 1, + "Sentence": { + "en": { + "Spans": [ + { + "Text": "The monkey peeled a banana", + "Ws": "en" + } + ] + } + }, + "Translation": {}, + "SenseId": "Guid_33" + }, + "Id": "Guid_32" + }, + "References": [ + "Guid_33" + ], + "EntityId": "Guid_32", + "EntityIsDeleted": false, + "CommitId": "Guid_20", + "IsRoot": true + }, + { + "Id": "Guid_34", + "TypeName": "PartOfSpeech", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "PartOfSpeech", + "Id": "Guid_35", + "Name": { + "en": "Adverb" + }, + "Predefined": true + }, + "Id": "Guid_35" + }, + "References": [], + "EntityId": "Guid_35", + "EntityIsDeleted": false, + "CommitId": "Guid_36", + "IsRoot": true + }, + { + "Id": "Guid_37", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_38", + "Name": { + "en": "Person" + }, + "Code": "2", + "Predefined": true + }, + "Id": "Guid_38" + }, + "References": [], + "EntityId": "Guid_38", + "EntityIsDeleted": false, + "CommitId": "Guid_39", + "IsRoot": true + }, + { + "Id": "Guid_40", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_41", + "Name": { + "en": "Body" + }, + "Code": "2.1", + "Predefined": false + }, + "Id": "Guid_41" + }, + "References": [], + "EntityId": "Guid_41", + "EntityIsDeleted": false, + "CommitId": "Guid_39", + "IsRoot": true + }, + { + "Id": "Guid_42", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_43", + "Name": { + "en": "Head" + }, + "Code": "2.1.1", + "Predefined": false + }, + "Id": "Guid_43" + }, + "References": [], + "EntityId": "Guid_43", + "EntityIsDeleted": false, + "CommitId": "Guid_39", + "IsRoot": true + }, + { + "Id": "Guid_44", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_45", + "Name": { + "en": "Eye" + }, + "Code": "2.1.1.1", + "Predefined": false + }, + "Id": "Guid_45" + }, + "References": [], + "EntityId": "Guid_45", + "EntityIsDeleted": false, + "CommitId": "Guid_39", + "IsRoot": true + }, + { + "Id": "Guid_46", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_47", + "Name": { + "en": "Universe, Creation" + }, + "Code": "1", + "Predefined": true + }, + "Id": "Guid_47" + }, + "References": [], + "EntityId": "Guid_47", + "EntityIsDeleted": false, + "CommitId": "Guid_39", + "IsRoot": true + }, + { + "Id": "Guid_48", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_49", + "Name": { + "en": "Sky" + }, + "Code": "1.1", + "Predefined": true + }, + "Id": "Guid_49" + }, + "References": [], + "EntityId": "Guid_49", + "EntityIsDeleted": false, + "CommitId": "Guid_39", + "IsRoot": true + }, + { + "Id": "Guid_50", + "TypeName": "SemanticDomain", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "SemanticDomain", + "Id": "Guid_51", + "Name": { + "en": "World" + }, + "Code": "1.2", + "Predefined": true + }, + "Id": "Guid_51" + }, + "References": [], + "EntityId": "Guid_51", + "EntityIsDeleted": false, + "CommitId": "Guid_39", + "IsRoot": true + }, + { + "Id": "Guid_52", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "Guid_27", + "Order": 1, + "EntryId": "Guid_16", + "Definition": { + "en": { + "Spans": [ + { + "Text": "small round or oval fruit growing in clusters, used for wine or eating", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "Guid_27" + }, + "References": [ + "Guid_16" + ], + "EntityId": "Guid_27", + "EntityIsDeleted": false, + "CommitId": "Guid_17", + "IsRoot": true + }, + { + "Id": "Guid_53", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "Guid_30", + "Order": 1, + "EntryId": "Guid_3", + "Definition": { + "en": { + "Spans": [ + { + "Text": "round citrus fruit with orange skin and juicy segments inside", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "Guid_30" + }, + "References": [ + "Guid_3" + ], + "EntityId": "Guid_30", + "EntityIsDeleted": false, + "CommitId": "Guid_14", + "IsRoot": true + }, + { + "Id": "Guid_54", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "Guid_23", + "Order": 1, + "EntryId": "Guid_4", + "Definition": { + "en": { + "Spans": [ + { + "Text": "fruit with red, yellow, or green skin with a sweet or tart crispy white flesh", + "Ws": "en" + } + ] + }, + "fr": { + "Spans": [ + { + "Text": "fr", + "Ws": "fr" + } + ] + } + }, + "Gloss": { + "en": "Fruit", + "fr": "fr" + }, + "PartOfSpeechId": "Guid_35", + "SemanticDomains": [ + { + "Id": "Guid_47", + "Name": { + "en": "Universe, Creation" + }, + "Code": "1", + "Predefined": true + } + ], + "ExampleSentences": [] + }, + "Id": "Guid_23" + }, + "References": [ + "Guid_4", + "Guid_35", + "Guid_47" + ], + "EntityId": "Guid_23", + "EntityIsDeleted": false, + "CommitId": "Guid_55", + "IsRoot": false + }, + { + "Id": "Guid_56", + "TypeName": "Sense", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "Sense", + "Id": "Guid_33", + "Order": 1, + "EntryId": "Guid_19", + "Definition": { + "en": { + "Spans": [ + { + "Text": "long curved fruit with yellow skin and soft sweet flesh", + "Ws": "en" + } + ] + } + }, + "Gloss": { + "en": "Fruit" + }, + "SemanticDomains": [], + "ExampleSentences": [] + }, + "Id": "Guid_33" + }, + "References": [ + "Guid_19" + ], + "EntityId": "Guid_33", + "EntityIsDeleted": false, + "CommitId": "Guid_20", + "IsRoot": true + }, + { + "Id": "Guid_57", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "Guid_58", + "MaybeId": "Guid_58", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 1 + }, + "Id": "Guid_58" + }, + "References": [], + "EntityId": "Guid_58", + "EntityIsDeleted": false, + "CommitId": "Guid_59", + "IsRoot": true + }, + { + "Id": "Guid_60", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "Guid_61", + "MaybeId": "Guid_61", + "WsId": "de", + "IsAudio": false, + "Name": "German", + "Abbreviation": "de", + "Font": "Arial", + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 1 + }, + "Id": "Guid_61" + }, + "References": [], + "EntityId": "Guid_61", + "EntityIsDeleted": false, + "CommitId": "Guid_62", + "IsRoot": true + }, + { + "Id": "Guid_63", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "Guid_64", + "MaybeId": "Guid_64", + "WsId": "en-Zxxx-x-audio", + "IsAudio": true, + "Name": "English (A)", + "Abbreviation": "Eng 🔊", + "Font": "Arial", + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 3 + }, + "Id": "Guid_64" + }, + "References": [], + "EntityId": "Guid_64", + "EntityIsDeleted": false, + "CommitId": "Guid_65", + "IsRoot": true + }, + { + "Id": "Guid_66", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "Guid_67", + "MaybeId": "Guid_67", + "WsId": "en", + "IsAudio": false, + "Name": "English", + "Abbreviation": "en", + "Font": "Arial", + "Type": 0, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 2 + }, + "Id": "Guid_67" + }, + "References": [], + "EntityId": "Guid_67", + "EntityIsDeleted": false, + "CommitId": "Guid_68", + "IsRoot": true + }, + { + "Id": "Guid_69", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "Guid_70", + "MaybeId": "Guid_70", + "WsId": "en-Zxxx-x-audio", + "IsAudio": true, + "Name": "English (A)", + "Abbreviation": "Eng 🔊", + "Font": "Arial", + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 3 + }, + "Id": "Guid_70" + }, + "References": [], + "EntityId": "Guid_70", + "EntityIsDeleted": false, + "CommitId": "Guid_71", + "IsRoot": true + }, + { + "Id": "Guid_72", + "TypeName": "WritingSystem", + "Entity": { + "$type": "MiniLcmCrdtAdapter", + "Obj": { + "$type": "WritingSystem", + "Id": "Guid_73", + "MaybeId": "Guid_73", + "WsId": "fr", + "IsAudio": false, + "Name": "French", + "Abbreviation": "fr", + "Font": "Arial", + "Type": 1, + "Exemplars": [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z" + ], + "Order": 2 + }, + "Id": "Guid_73" + }, + "References": [], + "EntityId": "Guid_73", + "EntityIsDeleted": false, + "CommitId": "Guid_74", + "IsRoot": true + } +] \ No newline at end of file diff --git a/backend/FwLite/LcmCrdt.Tests/LcmCrdt.Tests.csproj b/backend/FwLite/LcmCrdt.Tests/LcmCrdt.Tests.csproj index 62c3d7681c..a28516ebc9 100644 --- a/backend/FwLite/LcmCrdt.Tests/LcmCrdt.Tests.csproj +++ b/backend/FwLite/LcmCrdt.Tests/LcmCrdt.Tests.csproj @@ -12,6 +12,7 @@ + diff --git a/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs b/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs index 05896d7929..9490e5141c 100644 --- a/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs +++ b/backend/FwLite/LcmCrdt/LcmCrdtKernel.cs @@ -277,6 +277,12 @@ public static IEnumerable AllChangeTypes() return crdtConfig.ChangeTypes; } + public static IEnumerable AllObjectTypes() + { + var crdtConfig = new CrdtConfig(); + ConfigureCrdt(crdtConfig); + return crdtConfig.ObjectTypes; + } public static async Task OpenCrdtProject(this IServiceProvider services, CrdtProject project) { diff --git a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs index db85553c09..5650cee7b8 100644 --- a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs +++ b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/AutoFakerDefault.cs @@ -8,7 +8,7 @@ public static class AutoFakerDefault { public static readonly AutoFakerConfig Config = MakeConfig(); - public static AutoFakerConfig MakeConfig(string[]? validWs = null, int repeatCount = 5) + public static AutoFakerConfig MakeConfig(string[]? validWs = null, int repeatCount = 5, bool minimalRichSpans = false) { return new AutoFakerConfig() { @@ -17,6 +17,7 @@ public static AutoFakerConfig MakeConfig(string[]? validWs = null, int repeatCou [ new MultiStringOverride(validWs), new RichMultiStringOverride(validWs), + new RichSpanOverride(minimalRichSpans), new WritingSystemIdOverride(validWs), new ObjectWithIdOverride(), new OrderableOverride(), @@ -46,16 +47,6 @@ public static AutoFakerConfig MakeConfig(string[]? validWs = null, int repeatCou }; } - private class SimpleOverride(Action execute, bool preInit = false) : AutoFakerOverride - { - public override bool Preinitialize { get; } = preInit; - - public override void Generate(AutoFakerOverrideContext context) - { - execute(context); - } - } - private class PredicateOverride(Func predicate, bool preInit = false) : AutoFakerOverride { public override bool Preinitialize { get; } = preInit; @@ -71,3 +62,13 @@ public override void Generate(AutoFakerOverrideContext context) } } } + +public class SimpleOverride(Action execute, bool preInit = false) : AutoFakerOverride +{ + public override bool Preinitialize { get; } = preInit; + + public override void Generate(AutoFakerOverrideContext context) + { + execute(context); + } +} diff --git a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/MultiStringOverride.cs b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/MultiStringOverride.cs index 67b91019bd..469fe09be5 100644 --- a/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/MultiStringOverride.cs +++ b/backend/FwLite/MiniLcm.Tests/AutoFakerHelpers/MultiStringOverride.cs @@ -61,3 +61,27 @@ public override void Generate(AutoFakerOverrideContext context) } } } + +public class RichSpanOverride(bool minimal = false) : AutoFakerOverride +{ + public override bool Preinitialize => true; + + public override void Generate(AutoFakerOverrideContext context) + { + if (!minimal || context.Instance is not RichSpan existing) return; + + // A much less noisy representation that covers all the data types + var minimalSpan = new RichSpan + { + Text = existing.Text, + Ws = existing.Ws, + Tags = existing.Tags, + Bold = existing.Bold, + FontSize = existing.FontSize, + ForeColor = existing.ForeColor, + ObjData = existing.ObjData, + }; + + context.Instance = minimalSpan; + } +} diff --git a/backend/FwLite/MiniLcm/MiniLcm.csproj b/backend/FwLite/MiniLcm/MiniLcm.csproj index 5f8c4054ca..4ce44abf1f 100644 --- a/backend/FwLite/MiniLcm/MiniLcm.csproj +++ b/backend/FwLite/MiniLcm/MiniLcm.csproj @@ -12,6 +12,7 @@ + diff --git a/backend/FwLite/FwLiteProjectSync/MiniLcmExtensions.cs b/backend/FwLite/MiniLcm/MiniLcmApiExtensions.cs similarity index 94% rename from backend/FwLite/FwLiteProjectSync/MiniLcmExtensions.cs rename to backend/FwLite/MiniLcm/MiniLcmApiExtensions.cs index f2545e9b88..cad0f83326 100644 --- a/backend/FwLite/FwLiteProjectSync/MiniLcmExtensions.cs +++ b/backend/FwLite/MiniLcm/MiniLcmApiExtensions.cs @@ -1,7 +1,6 @@ -using MiniLcm; using MiniLcm.Models; -namespace FwLiteProjectSync; +namespace MiniLcm; public static class MiniLcmExtensions { diff --git a/backend/FwLite/FwLiteProjectSync/ProjectSnapshot.cs b/backend/FwLite/MiniLcm/ProjectSnapshot.cs similarity index 66% rename from backend/FwLite/FwLiteProjectSync/ProjectSnapshot.cs rename to backend/FwLite/MiniLcm/ProjectSnapshot.cs index a2d4fc91f1..93715a71ff 100644 --- a/backend/FwLite/FwLiteProjectSync/ProjectSnapshot.cs +++ b/backend/FwLite/MiniLcm/ProjectSnapshot.cs @@ -1,6 +1,6 @@ using MiniLcm.Models; -namespace FwLiteProjectSync; +namespace MiniLcm; public record ProjectSnapshot( Entry[] Entries, @@ -10,5 +10,5 @@ public record ProjectSnapshot( ComplexFormType[] ComplexFormTypes, WritingSystems WritingSystems) { - internal static ProjectSnapshot Empty { get; } = new([], [], [], [], [], new WritingSystems()); + public static ProjectSnapshot Empty { get; } = new([], [], [], [], [], new WritingSystems()); } diff --git a/backend/harmony b/backend/harmony index 17334b30f2..4c7dc0ae28 160000 --- a/backend/harmony +++ b/backend/harmony @@ -1 +1 @@ -Subproject commit 17334b30f2fd311bb551fb79e2cf740eac397c25 +Subproject commit 4c7dc0ae28a5ee08594a5ce3053f3067342d21a7